-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (41 loc) · 960 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (41 loc) · 960 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
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700&display=swap');
* {
font-family: 'Nunito', sans-serif;
}
body {
width: 100vw;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #2959c3;
}
.cont {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.timer {
display: flex;
justify-content: space-evenly;
align-items: center;
width: 220px;
height: 50px;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(40px);
box-shadow: rgba(255, 255, 255, 0.24) 0px 3px 8px;
margin-bottom: 15px;
border-radius: 3px;
color: white;
font-size: 19px;
}
button {
border: none;
background: #e2c967;
margin: 5px;
padding: 5px 10px;
border-radius: 15px;
box-shadow: #495eaa 0px 5px 29px 0px;
color: white;
}