-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclock.css
More file actions
39 lines (33 loc) · 682 Bytes
/
Copy pathclock.css
File metadata and controls
39 lines (33 loc) · 682 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
/* imports */
@import url('https://fonts.googleapis.com/css2?family=Gemunu+Libre:wght@400;500;700&display=swap');
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.container {
/* margin: 0 auto;
text-align: center; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 12em;
font-family: 'Gemunu Libre', sans-serif;
}
.time {
font-size: 8em;
font-weight: 500;
text-align: center;
letter-spacing: .1em;
}
.date {
font-size: 3em;
font-weight: normal;
margin-top: 2em;
letter-spacing: .08em;
}
body {
color: #708090;
background-color: #121212;
}