-
Notifications
You must be signed in to change notification settings - Fork 0
/
reset.css
51 lines (43 loc) · 1.99 KB
/
reset.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
/*******************************************************************
██████╗░███████╗░██████╗███████╗████████╗░░░░█████╗░░██████╗░██████╗
██╔══██╗██╔════╝██╔════╝██╔════╝╚══██╔══╝░░░██╔══██╗██╔════╝██╔════╝
██████╔╝█████╗░░╚█████╗░█████╗░░░░░██║░░░░░░██║░░╚═╝╚█████╗░╚█████╗░
██╔══██╗██╔══╝░░░╚═══██╗██╔══╝░░░░░██║░░░░░░██║░░██╗░╚═══██╗░╚═══██╗
██║░░██║███████╗██████╔╝███████╗░░░██║░░░██╗╚█████╔╝██████╔╝██████╔╝
╚═╝░░╚═╝╚══════╝╚═════╝░╚══════╝░░░╚═╝░░░╚═╝░╚════╝░╚═════╝░╚═════╝░
*******************************************************************/
:where(*) {
margin: 0px;
padding: 0px;
font-family: "Klee One";
}
:where(html) {
font-size: 16px;
}
:where(header, footer, main, nav, article, aside, section) {
display: block;
}
:where(h2) {
font-size: 30px;
}
:where(ul) {
padding-left: 1.5em;
list-style-type: circle;
}
:where(hr) {
border-image: linear-gradient(to right, transparent, #989898, transparent);
border-image-slice: 1;
}
:where(a) {
text-decoration: none !important;
}
:where(code) {
display: inline-block;
padding: 0.1em 0.2em;
background-color: #e7edf3;
border-radius: 3px;
font-family: monospace;
}
::marker {
color: #223222;
}