-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (51 loc) · 939 Bytes
/
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
html {
font-family: "Irish Grover", cursive;
font-family: "Raleway", sans-serif;
font-family: "Roboto", sans-serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #24527a;
}
h1 {
font-size: 100px;
}
.container-timer {
flex-direction: row;
width: 33%;
}
.container-buttons {
display: flex;
flex-direction: row;
justify-content: space-around;
width: 33%;
gap: 120px;
}
.btn {
flex-grow: 0;
background-color: #4caf50;
border: none;
border-radius: 20px;
background-color: #e0ebeb;
padding: 15px 45px;
text-align: center;
text-decoration: none;
font-size: 30px;
font-weight: bolder;
cursor: pointer;
margin-top: 100px;
}
.btn:hover {
background-color: #a7bcb9;
}
.time {
text-align: center;
font-size: 100px;
border: solid 10px #5dacbd;
border-radius: 20px;
background-color: #e0ebeb;
}