-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (44 loc) · 739 Bytes
/
Copy pathstyle.css
File metadata and controls
49 lines (44 loc) · 739 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
body {
margin: 0;
padding: 0;
background: #000;
color: #fff;
font-family: 'Montserrat', sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
overflow: hidden;
}
.clock-container {
flex-grow: 1;
display: flex;
justify-content: center;
align-items: center;
}
#clock-wrapper {
position: relative;
height: 30vh;
line-height: 1;
}
#clock-shadow {
font-size: 30vh;
color: transparent;
visibility: hidden;
user-select: none;
}
#clock {
font-size: 30vh;
font-variant-numeric: tabular-nums;
position: absolute;
top: 0;
left: 0;
right: 0;
}
#date {
font-size: 3vh;
margin-bottom: 2vh;
opacity: 0.8;
}