-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (75 loc) · 1.47 KB
/
style.css
File metadata and controls
95 lines (75 loc) · 1.47 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* Google fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Ubuntu:wght@300&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
align-items: center;
background-image: url(./images/background.png);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
font-family: "Poppins", sans-serif;
}
.container {
background-color: rgba(255, 255, 255, 0.1);
box-shadow: rgba(25, 25, 26, 0.2) 0px 7px 29px 0px;
backdrop-filter: blur(2px);
height: 80vh;
width: 180vh;
padding: 40px;
margin-top: 60px;
text-align: center;
display: flex;
justify-content: center;
}
.timer{
padding: 10px;
width: 60%;
height: 100%;
display: flex;
justify-content: center;
gap: 50px;
flex-direction: column;
align-content: center;
flex-wrap: wrap;
}
.cards-row {
display: flex;
justify-content: space-between;
margin-top: -20px;
}
.timer-info{
color: #ccc;
}
.timer-info h1{
font-size: 36px;
}
.timer-info p{
font-size: 100px;
font-weight: bolder;
}
.card{
display: flex;
flex-direction: column;
justify-content: space-between;
}
.card h1{
background-color: rgb(77, 77, 77);
height: 90px;
width: 90px;
display: flex;
justify-content: center;
align-items: center;
color: white;
}
.card p{
background-color: yellow;
}
.cards-row .card h1 {
transition: opacity 0.5s ease;
}