summaryrefslogtreecommitdiffstats
path: root/sass/styles.scss
blob: 9b7141de3ced4c4734f1357ed07ba2befef76c16 (plain) (blame)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
body {
    background: #232227;
    color: #aaa;
    line-height: 1.5;

    a {
        color: #7e8ea6; //#566171;//#8f8f8f;
    }

    h1, h2, h3 {
        color: #566171; //#3e4753;// #828282;
    }
}

img {
    max-width: 80%;
}

pre {
    padding: 0.3em;
}

.site-header {
    font-family: sans-serif;
    .site-title {
        background-color: #3e4753;
        color: #ccc;
        font-size: 200%;
    }
    .site-bar {
        display: flex;
        justify-content: space-between;
        background-color: #000;
        color: #ccc;
        font-size: x-small;
    }

}

.page-content,
.site-title,
.site-bar {
    @media(min-width: 960px) {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
.figure {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 0.5em;
}

.license {
    display: flex;
    border-top: 1px solid #aaa;
    padding-top: 0.5em;
    .cc-by-sa-logo {
        width: 8rem;
    }
    .license-text {
        font-size: x-small;
        p {
            margin-top: 0;
        }
    }
}

.post-list {
    h2 {
        font-size: larger;
    }
}

.post-title {
    margin-bottom: 0;
}

.post-meta {
    font-size: x-small;
    .meta-tags {
        display: flex;
        * + * {
            &::before {
                content: ", "
            }
        }
    }
}

.footnote-reference {
    font-size: x-small;
}

.footnote-definition {
    display: flex;
    font-size: small;
    border-top: 1px solid gray;
}