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

Alexander Bilz
21.21.2021 b99cf69567b8f32dc8431deed0bf75b240c3e3c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@mixin content_dark {
    .content {
        background-color: $bg-color-dark;
    }
    .page-top {
        background-color: $bg-color-dark;
        border-bottom: 1px solid $border-color-dark;
    }
 
    .page-top .nav a {
        color: $nav-text-color-dark;
    }
 
    .page-top .nav a.current {
        color: $nav-text-color-dark;
        border-bottom: 1px solid $nav-text-color-dark;
    }
}
 
html[data-theme='dark']  {
    @include content_dark()
}