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

alexanderdavide
12.01.2022 eac53f66f73ced5c1320fc0862102ae88c925007
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
.sidebar {
  -webkit-background-size: cover;
  background-size: cover;
  background-color: var(--bg-color);
 
  @include desktop_and_print {
    border-right: 1px solid $primary-lighter;
    z-index: 3;
    height: 100vh;
    position: fixed;
    width: $sidebar-width;
    display: flex;
    flex-direction: column;
  }
 
  @include widescreen {
    padding-left: 17%;
    padding-right: 3%;
    width: calc(var(--sidebar-width) - 20%);
  }
 
  &__content {
    @include desktop_and_print {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: center;
    }
  }
 
  &__list {
    list-style: none;
    padding: 0;
    font-size: 1.4rem;
    text-align: center;
 
    &-item {
      display: inline;
      padding: 0 4px;
      line-height: 0;
 
      i {
        margin-right: 3px;
      }
 
      li {
        display: inline;
        padding: 0 4px;
        line-height: 0;
      }
    }
  }
 
  &__title {
    top: 40%;
    text-align: center;
 
    &-description {
      font-size: 1.4rem;
      margin: 0 1em;
    }
 
    img {
      width: 127px;
      height: 127px;
      border-radius: 50%;
    }
 
    h3 {
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 2px;
      line-height: 1;
      margin: 1em;
    }
  }
}