-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtimer.css
More file actions
87 lines (75 loc) · 1.49 KB
/
Copy pathtimer.css
File metadata and controls
87 lines (75 loc) · 1.49 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
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
* {
box-sizing: border-box
}
body {
margin: 0;
background-color: rgb(212, 201, 201);
font-family: sans-serif;
}
.set {
text-align: center;
font-size: 50px;
text-shadow: 0 3px 5px red;
}
.countdown {
display: flex;
justify-content: space-evenly;
max-width: 400px;
margin: auto;
}
.countdown>div {
border: 10px;
border-radius: 5px;
box-shadow: 3px 3px 5px #888888;
width: 90px;
text-align: center;
font-size: 50px;
font-weight: bolder;
}
.buttons {
display: flex;
flex-direction: row;
justify-content: center;
gap: 1rem;
margin: 25px;
}
.onclick_button {
border-radius: 5px;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border: 2px solid transparent;
transition: all 0.3s ease-in-out;
}
#start-btn {
background-color: #4CAF50;
}
#start-btn:hover {
border-color: #4CAF50;
background-color: transparent;
color: #4CAF50;
}
#pause-btn {
background-color: red;
display: none;
opacity: 0;
visibility: hidden;
}
#pause-btn:hover {
border-color: red;
background-color: transparent;
color: red;
}
#reset-btn {
background-color: blueviolet;
}
#reset-btn:hover {
border-color: blueviolet;
background-color: transparent;
color: blueviolet;
}