mirror of https://github.com/lxndrblz/anatole.git

Andreas Deininger
07.57.2025 acb0c1788976af1601ac300b9206e1c898a29d5b
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
75
76
77
78
79
80
81
@use 'modules/color_theme' as color;
@use 'modules/config' as conf;
 
.sidebar {
  margin-top: 40px;
 
  @include conf.desktop {
    z-index: 2;
    position: fixed;
    height: 100%;
    margin-top: 0;
    width: inherit;
    display: flex;
    flex-direction: column;
 
    @include color.themed() {
      @include conf.ltr {
        margin-right: 4px;
        border-right: color.t('border');
      }
 
      @include conf.rtl {
        margin-left: 4px;
        border-left: color.t('border');
      }
    }
  }
 
  &__content {
    @include conf.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;
      }
 
      h1 {
        margin: 0;
      }
    }
  }
}