-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
82 lines (68 loc) · 1.09 KB
/
styles.css
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
html {
color-scheme: light dark;
font-family: monospace;
scroll-behavior: smooth;
scroll-padding-top: 20px;
}
body {
padding-block: 20px;
padding-inline: 20px;
}
@media (min-width: 1024px) {
body {
padding-inline: calc((100dvw - 1000px) / 2);
}
}
mark {
background: none;
color: unset;
text-decoration: underline;
padding-inline: 0;
text-decoration-color: skyblue;
text-decoration-thickness: 3px;
text-underline-offset: 8px;
}
h1 {
font-size: 300%;
mark {
background-color: darksalmon;
padding-inline: 10px;
text-decoration: none;
color: initial;
}
}
h2 {
font-size: 200%;
mark {
background-color: skyblue;
padding-inline: 10px;
text-decoration: none;
color: initial;
}
}
h3 {
font-size: 150%;
text-decoration: underline;
}
p,
.section-link {
font-size: 150%;
text-wrap: pretty;
line-height: 1.6em;
}
p {
opacity: 0.7;
}
button {
width: fit-content;
height: fit-content;
aspect-ratio: 1 / 1;
padding: 0;
}
header {
display: flex;
justify-content: space-between;
}
.mb-50 {
margin-bottom: 50px;
}