-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstopwatch.css
More file actions
65 lines (62 loc) · 1.18 KB
/
stopwatch.css
File metadata and controls
65 lines (62 loc) · 1.18 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
body{
font-family: 'Arial';
}
.container{
height:400px;
width:400px;
/* background-color: aqua; */
margin:0 auto;
position: relative;
top:100px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.time{
position: relative;
left:5px;
height:60px;
width:280px;
/* background-color: brown; */
display: flex;
align-items: center;
justify-content: center;
font-size: 60px;
}
.text{
position: relative;
left:12px;
height:50px;
width:260px;
/* background-color: rgb(233, 81, 238); */
font-size: 18px;
display: flex;
align-items: center;
justify-content: center;
justify-content: space-around;
}
.button{
position: relative;
left:7px;
height:50px;
width:270px;
/* background-color: rgb(87, 245, 95); */
display: flex;
align-items: center;
justify-content: center;
justify-content: space-around;
}
button{
height:25px;
width:50px;
border-radius: 4px;
background-color: rgb(51, 49, 49);
color:white;
font-weight: 600;
font-size: 14px;
}
.disabled{
cursor: not-allowed;
opacity: 0.5;
}