-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (40 loc) · 777 Bytes
/
Copy pathstyle.css
File metadata and controls
46 lines (40 loc) · 777 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
:root{
--color-dark: #000;
--color-white: #fff;
--color-light: #ababab;
--color-purple: #5d15a5;
}
*{
background-color: var(--color-dark);
color: var(--color-white);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
margin: 0;
padding: 0;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
flex-direction: column;
gap: 16px;
}
.clock{
display: flex;
gap: 50px;
flex-wrap: wrap;
}
.clock span{
font-size: 150px;
display: flex;
align-items: center;
gap: 50px;
}
.clock span:not(:last-child)::after{
content: ':';
margin-bottom: 25px;
color: var(--color-light);
}
h2 strong{
color: var(--color-purple);
}