-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (38 loc) · 757 Bytes
/
style.css
File metadata and controls
38 lines (38 loc) · 757 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body{
background-color: rgba(0,0,0,0.7);
color: #ffffff;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
flex-direction: column;
}
.stopwatch{
background-color: rgba(0,0,0,0.9);
padding: 20px 24px;
border-radius: 10px;
}
.timerDisplay{
font-size: 50px;
font-weight: bold;
}
.buttons{
margin-top: 20px;
}
.btn{
font-size: 20px;
background: none;
border: none;
color: white;
background-color: var(--clr);
padding: 12px 24px;
margin-inline: 12px;
border-radius: 8px;
cursor: pointer;
}