-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (101 loc) · 1.98 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@font-face {
font-family: "Delirium";
src: url(fonts/Delirium.ttf);
}
@font-face {
font-family: "Old London";
src: url(fonts/OldLondon.ttf);
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
padding: 0% 10%;
background-color: #121212;
color: #ccc;
}
header {
height: 100dvh;
display: flex;
flex-direction: column;
align-items: center;
background-color: #121212;
padding: 5rem;
box-sizing: border-box;
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}
.header-text {
font-size: 5rem;
font-family: "Old London", sans-serif;
}
.header-tagline {
font-family: "Montserrat", sans-serif;
font-weight: 100;
font-size: 1.25rem;
}
.header-progress {
margin-top: 2rem;
display: flex;
align-items: center;
}
#header-progress-value {
padding-right: 1rem;
font-size: 2rem;
font-family: "Montserrat", sans-serif;
font-weight: 100;
}
.progress-container {
width: 400px;
height: 6px;
background-color: #999;
border-radius: 50px;
display: flex;
align-items: center;
}
.progress-fill {
background-color: #121212;
height: 4px;
margin-left: 1px;
border-radius: 10px 0 0px 10px;
}
#countdown {
font-family: "Delirium", sans-serif;
font-size: 20rem;
display: flex;
width: 100%;
height: 100%;
justify-content: space-between;
}
.countdown-child {
min-width: 175px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex-grow: 0;
}
.countdown-child-text {
font-family: "Montserrat", sans-serif;
font-weight: 300;
font-size: 1.5rem;
}
.countdown-seconds {
color: red;
}
.quote-container {
font-family: "Montserrat", sans-serif;
font-weight: 300;
width: 80%;
line-height: 1.125;
text-align: center;
}
#quote-author {
margin-top: 1rem;
color: red;
font-weight: 500;
}