summaryrefslogtreecommitdiff
path: root/www/css/base.css
blob: 49111bc08b45b62a14f38ca1a51398de915db458 (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
:root {
    /* Colors */
    --primary: #333333;
    --text: #ffffff;
    --accent: #4682b4;
    --link: #87cefa;
    --no: #ff5c5c;
    /* Timings */
    --high-speed: 0.3s;
    --med-speed: 0.5s;
    --low-speed: 1.0s;
}

code {
    font-family: 'Hack', sans-serif;
}

body {
    font-family: 'Jost*', sans-serif;
    font-size: 12px;
    margin: 3em;
    background-color: var(--primary);
    color: var(--text);
}

.outline-2 {
    bottom: 0;
    left: 0;
    filter: blur(4px);
    transition: var(--high-speed);
    max-width: 60vw;
}
.outline-2:hover {
    filter: blur(0px);
    transition: var(--med-speed);
    font-size: 14px;
}

p {
    font-family: 'Public Sans', sans-serif;
}

a {
    color: var(--link);
}
Copyright 2019--2024 Marius PETER