-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (53 loc) · 1.02 KB
/
Copy pathstyles.css
File metadata and controls
60 lines (53 loc) · 1.02 KB
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
body {
margin: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #f5f5f7;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.timer-container {
background: white;
padding: 2rem;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.12);
text-align: center;
}
.timer {
font-size: 4rem;
font-weight: 300;
color: #1d1d1f;
margin-bottom: 1.5rem;
font-variant-numeric: tabular-nums;
}
.buttons {
display: flex;
gap: 1rem;
justify-content: center;
}
.btn {
border: none;
background: #0071e3;
color: white;
padding: 0.8rem 1.5rem;
border-radius: 980px;
font-size: 1rem;
cursor: pointer;
display: flex;
align-items: center;
gap: 0.5rem;
transition: all 0.2s;
}
.btn:hover {
background: #0077ED;
}
.btn:disabled {
background: #999;
cursor: not-allowed;
}
.icon {
width: 20px;
height: 20px;
fill: currentColor;
}