-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (45 loc) · 726 Bytes
/
style.css
File metadata and controls
49 lines (45 loc) · 726 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
49
@import url("https://fonts.googleapis.com/css2?family=Comic+Neue:wght@700&display=swap");
html,
body,
.container {
height: 100%;
}
body {
font-family: "Comic Neue", cursive;
color: white;
background-color: #ff3cac;
background-image: linear-gradient(
225deg,
#ff3cac 0%,
#784ba0 50%,
#2b86c5 100%
);
}
.container {
display: table;
vertical-align: middle;
}
.vertical-center-row {
display: table-cell;
vertical-align: middle;
}
#text {
font-size: 1.5rem;
}
#countdown {
font-size: 4rem;
}
#particles-js {
position: absolute;
width: 100%;
height: 100%;
z-index: -1;
}
.card {
background-color: rgba(245, 245, 245, 0.1);
}
@media (min-width: 768px) {
.card {
width:50%;
}
}