Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_list.scss « pages « sass « assets - github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f676f8ad6e3a1d986cd1421077e334dc86dcacba (plain)
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
#list-main {
  position: relative;
  
  @include flexbox();
  @include flex-direction(column);
  @include themify($themes) {
    background-color: themed('body-background-color');

    &[data-dir="ltr"] {
      border-right: 1px solid themed('border-line-color');
      border-left: 1px solid themed('border-line-color');
    }

    &[data-dir="rtl"] {
      border-left: 1px solid themed('border-line-color');
      border-right: 1px solid themed('border-line-color');
    }
  }
}

#list-menu {
  position: relative;
}

#list-side {
  position: relative;
}

.list-section {
  &__item {
    margin: auto;
    padding: 0.25rem 0;
    width: 95%;
    border-radius: 0.2rem;

    &--link {
      display: inline-block;
      font-size: 1rem;
      font-family: $title-font;
      margin-top: 0.5rem;
      margin-bottom: 0.125rem;
    }

    &--desc {
      font-size: 1rem;
      margin: 0.25rem 0;
    }
  }
}