-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (71 loc) · 1.23 KB
/
style.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
83
84
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
* {
font-family: 'Oswald', sans-serif;
font-weight: 300;
margin: 0;
padding: 0;
scrollbar-width: none;
scrollbar-color: rgba(255, 255, 255, .1) #191d21;
}
body {
overflow: hidden;
}
*::-webkit-scrollbar {
width: 0;
}
html,
body,
.container {
height: 100%;
width: 100%;
}
body {
background-color: #121212;
font-size: 100%;
}
.container {
display: flex;
justify-content: center;
}
.medium {
font-weight: 500;
}
.bold {
font-weight: 700;
}
.hour {
line-height: 90%;
font-size: 120%;
}
.nut {
color: brown;
}
.innerContainer {
color: white;
align-self: center;
line-height: 88%;
font-size: 475%;
}
.nnn_stats {
position: absolute;
bottom: 0;
left: 0;
line-height: 100%;
font-size: 20%;
}
.clock {
position: absolute;
top: 0;
right: 0;
line-height: 100%;
font-size: 20%;
}
@media only screen and (max-width: 600px) {
body {
font-size: 80%;
}
.nnn_stats {
line-height: 100%;
font-size: 30%;
}
}