-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstopwatch.css
More file actions
65 lines (63 loc) · 1.2 KB
/
stopwatch.css
File metadata and controls
65 lines (63 loc) · 1.2 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
body{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: gray;
flex-direction: column;
}
.stopwatch{
color: white;
font-size: 60px;
font-weight: 900;
height:150px;
width:600px;
background-color: black;
border-radius: 30px;
border: 2px solid black;
display: flex;
justify-content: center;
align-items: center;
}
.m2{
height:120px;
width:600px;
border: none;
display: flex;
justify-content: center;
align-items: center;
}
#stop{
cursor: pointer;
border-radius: 20px;
height:80px;
width:200px;
font-size: 40px;
font-weight: 400;
background-color: red;
border: 30px;
color: white;
}
#start{
cursor: pointer;
border-radius: 20px;
height:80px;
width:200px;
font-size: 40px;
font-weight: 400;
background-color: green;
border: 30px;
color: white;
}
#reset{
cursor: pointer;
border-radius: 20px;
height:80px;
width:200px;
font-size: 40px;
font-weight: 400;
background-color:blue;
border: 30px;
color: white;
}