summaryrefslogtreecommitdiff
path: root/assets/css/vars.css
blob: 417e6c24da83d3fa90967de992197e71a269a1c7 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
:root {
    --main-width: 900px;
    --main-padding: 1rem;
    --main-padding-bottom: 3rem;

    /* header settings */
    --header-top-gap: 2rem;
    --header-bottom-gap: 2rem;
    --header-menu-side-gap: .5rem;
    --header-menu-top-gap: 1rem;

    /* Typography */
    --h1-margin-top: 2rem;
    --h1-margin-bottom: 1.5rem;
    --h2-margin-top: 2rem;
    --h2-margin-bottom: 1.5rem;
    --hx-margin-top: 1.5rem;
    --hx-margin-bottom: 1rem;
    --p-margin-top: 1rem;
    --p-margin-bottom: 1rem;
    --code-margin-top: 2rem;
    --code-margin-bottom: 2rem;

    /* List indentation */
    --li-indent: 1.5rem;
    --ul-margin-top: 1rem;
    --ul-margin-bottom: 1rem;

    --toc-margin-top: 2rem;
    --toc-margin-bottom: 3rem;

    /* Code */
    --code-padding: 1.5rem;
    --code-border-radius: 10px;

    /* Social section */
    --social-icons-bottom-margin: 3rem;

    /* Footer */
    --footer-height: 3rem;

    /* Content */
    --content-height: calc(100vh - var(--footer-height));

    /* Theme */
    --content: rgb(30, 30, 30);
    --background: rgb(255, 255, 255);
    --code-background: rgb(249, 249, 249);
    --code-border: rgb(229, 229, 229);
}

.dark {
    --content: rgb(218, 218, 218);
    --background: rgb(30, 30, 30);
    --code-background: rgb(40, 40, 40);
    --code-border: rgb(60, 60, 60);
}

@media screen and (max-width: 1024px) {
    :root {
        --main-width: 750px;
        --header-top-gap: 1rem;
    }
}

@media screen and (max-width: 640px) {
    :root {
        --header-top-gap: 1rem;
        --social-icons-bottom-margin: 0rem;
    }
}