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: 0fd30497ae13ebec975f8614fec2132b32cba91e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#list-main {
  position: relative;
  
  @include flexbox();
  @include flex-direction(column);
  @include themify($themes) {
    background-color: themed('body-background-color');
  }
}

#list-menu {
  @include themify($themes) {
    border-right: 1px solid themed('border-line-color');
  }
}

#list-side {
  @include themify($themes) {
    border-left: 1px solid themed('border-line-color');
  }
}