-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (41 loc) · 892 Bytes
/
style.css
File metadata and controls
45 lines (41 loc) · 892 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
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300&display=swap');
*{
margin: 0;
padding: 0;
}
body {
display: flex;
margin: 0px 300px auto;
align-items: center;
min-height: 100vh;
background: #222;
}
.clock{
width: auto;
}
span .flip-clock-dot{
background: #ccc;
}
.flip-clock-meridium a {
color: #ccc !important;
}
span .flip-clock-label {
color: #ccc !important;
font-size: 14px;
font-family: 'Prompt', sans-serif;
text-transform: uppercase;
line-height: 1em;
letter-spacing: 2px;
}
.flip-clock-divider.days .flip-clock-label {
right: -95px !important;
}
.flip-clock-divider.hours .flip-clock-label {
right: -100px !important;
}
.flip-clock-divider.minutes .flip-clock-label {
right: -100px !important;
}
.flip-clock-divider.seconds .flip-clock-label {
right: -100px !important;
}