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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@mixin  post_dark {
    .post {
        background-color: $bg-color-dark;
    }
    
    .post .post-title h2 {
        color: $heading-color-dark;
    }
    
    .post .post-title h3 {
        color: $heading-color-dark;
    }
    
    .post .post-title a {
        color: $heading-color-dark;
    }
    
    
    .post .post-footer {
        border-bottom: 1px solid $border-color-dark;
    }
    
    .post .post-footer .meta .info {
        color: $body-color-dark;
    }
    
    .post .post-footer .meta a {
        color: $body-color-dark;
    }
    
    .post .post-footer .tags a {
        color: $post-color-dark;
    }
    
    .post .post-thumbnail img {
        border: 1px solid $border-color-dark;
    }
}
 
html[data-theme='dark']  {
    @include post_dark()
}