-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (42 loc) · 702 Bytes
/
style.css
File metadata and controls
49 lines (42 loc) · 702 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
body{
background-color: #00aeff;
color: black;
display: flex;
justify-content: center;
align-items: center;
font-family: sans-serif;
height: 100vh;
margin: 0px;
padding: 0px;
}
.stopwatch{
text-align: center;
padding: 30px;
background-color: #151515;
color: white;
border-radius: 20px;
}
#display{
font-size: 3rem;
margin-bottom: 30px;
}
button{
border: none;
font-size: 2rem;
padding: 10px 15px;
margin: 0px 10px;
border-radius: 10px;
color: white;
}
button:hover{
cursor: pointer;
}
#start{
background-color: forestgreen;
}
#stop{
background-color: red;
}
#reset{
background-color: gray;
}