-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (62 loc) · 1.07 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
* {
margin: 0;
padding: 0;
}
.main-container {
background-color: rgb(19, 19, 19);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
color: white;
font-size: 3rem;
}
button {
padding: 1rem;
border-radius: 1rem;
font-size: 1rem;
font-weight: bold;
}
#start-btn {
background-color: rgb(47, 189, 137);
}
#pause-btn {
background-color: rgb(189, 47, 47);
color: white;
}
#reset-btn {
background-color: rgb(152, 162, 43);
}
#lap {
margin-top: 1rem;
font-size: 2rem;
}
.laps {
margin-top: 2rem;
font-size: 1.3rem;
background-color: aliceblue;
color: black;
width: 10rem;
height: 10rem;
padding: 1rem;
border-radius: 1rem;
overflow: auto;
}
.lap {
color: black;
font-size: 1.5rem;
}
#lapssting {
height: 8rem;
width: 10rem;
background-color: aliceblue;
padding: 1rem;
border-radius: 1rem;
overflow: auto;
}
.no-laps-heading {
color: black;
font-size: 2rem;
text-align: center;
}