-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (91 loc) · 1.57 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
body {
font-family: 'Roboto', sans-serif;
background: #1a2026;
display: flex;
align-items: center;
justify-content: center;
color: white;
-webkit-font-smoothing: antialiased;
-moz-osx-fonr-smoothing: grayscale;
min-height: 100vh;
}
:root {
--primary:#24424a;
--anti-accent: #44535f;
}
* {
box-sizing: border-box;
}
.wrapper {
background: #7f888b;
border-radius: 8px;
padding: 30px 200px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 50px;
}
.timer {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 30px;
}
.info {
font-weight: 700;
font-size: 18px;
line-height: 160%;
}
.info input {
width: 40px;
background: none;
border: none;
text-align: center;
font-weight: 700;
color: var(--anti-accent);
font-size: 18px;
padding: 5px 10px;
}
.info input::-webkit-outer-spin-button,
.info input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.info input[type="number"] {
-moz-appearance: textfield;
}
.countdown {
display: flex;
gap: 16px;
align-items: center;
}
.num {
font-family: 'Roboto Mono', monospace;
font-size: 160px;
line-height: 1;
background: #55636a;
padding: 40px 16px;
border-radius: 8px;
}
.dots {
font-family: 'Roboto Mono', monospace;
font-size: 160px;
color: var(--primary);
}
.button {
background: var(--primary);
border: none;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 700;
color: white;
gap: 10px;
padding: 17px;
width: 100%;
cursor: pointer;
}