1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
| .sidebar {
| margin-top: 40px;
|
| @include desktop {
| z-index: 2;
| position: fixed;
| height: 100%;
| margin-top: 0;
| width: inherit;
| display: flex;
| flex-direction: column;
|
| @include themed() {
| @include ltr {
| margin-right: 4px;
| border-right: t('border');
| }
|
| @include rtl {
| margin-left: 4px;
| border-left: t('border');
| }
| }
| }
|
| &__content {
| @include desktop {
| display: flex;
| flex-direction: column;
| flex-grow: 1;
| justify-content: center;
| }
| }
|
| &__list {
| list-style: none;
| padding: 0;
|
| text-align: center;
|
| &-item {
| display: inline;
| padding: 0 4px;
| line-height: 0;
| }
| }
|
| &__introduction {
| top: 40%;
| text-align: center;
|
| &-description {
| margin: 0 1em;
| }
|
| &-profileimage {
| width: 127px;
| height: 127px;
| border-radius: 50%;
| }
|
| &-title {
| text-transform: uppercase;
| font-weight: bold;
| letter-spacing: 2px;
| line-height: 1;
| margin: 1em;
|
| a {
| font-size: 3.2rem;
| }
| }
| }
| }
|
|