-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (45 loc) · 901 Bytes
/
style.css
File metadata and controls
48 lines (45 loc) · 901 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
45
46
47
48
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
display: flex;
width: 100vw;
height: 100vh;
align-items: center;
justify-content: center;
background-color: #222222;
}
.timerBtn{
width: 80px;
height: 30px;
border: 3px solid;
border-radius: 12px;
background-color: #333333;
color: white;
cursor: pointer;
font-family: consola, monospace;
margin: 15px 5px;
}
#timeContainer{
display: flex;
flex-direction: column;
align-items: center;
margin: 5px 5px;
text-align: center;
border: 3px solid;
border-radius: 25px;
width: 75vw;
height: 30vh;
background-color: #0303039d;
}
#timeDisplay{
display: flex;
font-size: 4.5rem;
color: #40c437;
font-family: consola, monospace;
}
.timerBtn:hover{
transform: scale(1.2);
}