-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (44 loc) · 844 Bytes
/
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
html, body {
height: 100%;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
background-color:antiquewhite;
}
.container {
text-align: center;
padding: 20px;
border: 2px solid #000000;
border-radius: 20px;
background-color: white;
}
.timer-display {
font-size: 2em;
margin-bottom: 20px;
}
/* buttons */
.buttons button {
margin: 5px;
padding: 10px 20px;
font-size: 1em;
cursor: pointer;
border-radius: 20px;
}
#reset:hover{
color: white;
background-color: red;
}
#pause:hover{
color:white;
background-color: blueviolet;
}
#start:hover{
color: white;
background-color: green;
}
#lap:hover{
color: white;
background-color:maroon;
}