-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (39 loc) · 618 Bytes
/
style.css
File metadata and controls
47 lines (39 loc) · 618 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
.container {
margin: 0 auto;
max-width: 400px;
text-align: center;
padding: 20px;
font-family: "Roboto", sans-serif;
}
.title {
font-size: 36px;
margin-bottom: 10px;
color: #2c3e50;
}
.timer {
font-size: 72px;
color: #2c3e50;
}
button {
font-size: 18px;
padding: 10px 20px;
margin: 10px;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
text-transform: uppercase;
transition: opacity 0.3s ease-in-out;
}
button:hover {
opacity: 0.7;
}
#start {
background-color: #27ae60;
}
#stop {
background-color: #c0392b;
}
#reset {
background-color: #7f8c8d;
}