-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
50 lines (43 loc) · 916 Bytes
/
stylesheet.css
File metadata and controls
50 lines (43 loc) · 916 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
48
49
50
.main-container {
background-color: rgba(0, 0, 0, 0.363);
border-radius: 25px;
border-color: 1px solid black;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
padding: 10px;
}
.timer_container {
padding: 20px;
border-radius: 20px;
text-align: center;
spacing: 10px;
}
.time_label {
font-size: 40px;
color: white;
text-align: center;
}
.state_label {
font-size: 20px;
color: white;
text-align: center;
}
.controls_container {
padding: 10px;
spacing: 10px;
justify-content: center;
}
.button {
min-width: 70px;
padding: 5px 15px;
border-radius: 25px;
border: 1px solid black;
background-color: rgba(255, 255, 255, 0.2);
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
text-align: center;
}
.button:hover {
background-color: rgba(255, 255, 255, 0.3);
}
.button:active {
background-color: rgba(255, 255, 255, 0.4);
}