blob: 8089392ced758a0eab503635bb4819210e35ea86 (
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
|
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');
@import url('https://fonts.googleapis.com/css?family=Fira+Sans&display=swap');
@import url('https://fonts.googleapis.com/css?family=Google+Sans&display=swap');
/* Color variables */
:root{
--background-color: #202124;
--text-color: #ff80a4;
--link-color: #94216a;
}
html, body{
scroll-behavior: smooth;
background-color: var(--background-color);
}
.header{
font-family: 'fira sans', serif;
color: var(--text-color);
text-align: center;
}
.notheader{
font-family: 'fira sans', serif;
color: var(--text-color);
text-align: center;
font-size: small;
}
.center{
margin: auto;
width: 60%;
padding: 10px;
text-align: center;
}
b{
font-size: 140%;
color: #7f0622;
}
h3{
margin-top: 0%;
font-family: 'fira sans', serif;
color: var(--text-color);
/*text-align: center;*/
font-size: small;
}
.desktop{
width: 100%;
height: auto;
}
.font{
color: #10d275;
font-size: xx-large;
text-decoration: none;
font-family: 'google sans';
}
.link{
color: var(--link-color);
text-decoration: none;
font-family: 'google sans';
font-size: larger;
}
|