-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (39 loc) · 829 Bytes
/
style.css
File metadata and controls
40 lines (39 loc) · 829 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: rgb(147, 214, 214);
}
.timer {
font-size: 40px;
text-align: center;
margin-bottom: 20px;
background-color: rgb(223, 239, 253);
padding: 50px;
width: 50%;
align-items: center;
justify-content: center;
margin-left:350px;
border-radius: 700px;
margin-top: 160px;
}
.timer h2{
font-family: sans-serif;
color: rgb(67, 23, 22);
margin-bottom: 30px;
}
button {
font-weight: 400;
border-radius: 5px;
border: 1px solid gray;
background-color: rgb(40, 147, 40);
color: white;
cursor: pointer;
font-size: 16px;
padding: 8px 16px;
justify-content: center;
align-items: center;
margin-top: 50px;
}