-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (46 loc) · 793 Bytes
/
style.css
File metadata and controls
56 lines (46 loc) · 793 Bytes
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
:root {
--spacing: 10px;
--blur: 0px;
--radius: 2px;
--base: #F8333C;
}
/* made custom scrollbar*/
::-webkit-scrollbar {
width: 15px;
}
::-webkit-scrollbar-track {
background: #36ade0;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #012a3e8d;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #13293D;
}
html {
font-size: 10px;
}
body {
background-color: #08415C;
font-family:Tahoma, sans-serif;
text-align: center;
color: white;
font-size: 3rem;
}
img {
padding: var(--spacing);
filter: blur(var(--blur));
border-radius: var(--radius);
background-color: var(--base);
}
.hl {
color: var(--base);
}
.controls {
margin-bottom: 4rem;
}
h2 {
font-size: 5rem;
}