-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
44 lines (39 loc) · 687 Bytes
/
index.css
File metadata and controls
44 lines (39 loc) · 687 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: blueviolet;
}
h1 {
color: aliceblue;
display: flex;
justify-content: center;
}
h2 {
color: rgba(127, 255, 212, 0.671);
}
.stopwatch {
width: 200px;
height: 100px;
top: 50%;
left: 50%;
position: absolute;
margin-top: -50px;
margin-left: -100px;
text-align: center;
}
button {
display: inline-block;
width: 32px;
height: 32px;
position: relative;
}
#start {
background: url("./img/play-circle-solid.svg") 0 0 no-repeat;
}
#stop {
background: url("./img/circle-pause-solid.svg") 0 0 no-repeat;
}
#reset {
background: url("./img/times-circle-solid.svg") 0 0 no-repeat;
}