-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
79 lines (68 loc) · 1.3 KB
/
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');
body {
background-color: #1b1b1e;
color: white;
font-family: Roboto;
margin: 0;
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
.center {
animation: fadeIn 1.5s;
animation-fill-mode: forwards;
margin: 10;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
padding: 10px;
display: inline-block;
border: 4px solid white;
border-radius: 25px;
background: rgba(14, 14, 18, 0.8);
box-shadow: 0px 0px 20px white;
padding: 25px;
}
footer {
width: 100%;
height: 80px;
text-align: center;
position: fixed;
bottom: 0px;
}
a {
text-decoration: none;
color: #0084ff;
}
.buttons {
cursor: pointer;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 20px;
}
.link {
width: 50px;
height: 50px;
}
/* ---- reset ---- */
canvas {
display: block;
}
/* ---- particles.js container ---- */
#particles-js {
position: absolute;
width: 100%;
height: 100%;
background-color: #1b1b1e;
background-repeat: no-repeat;
background-size: cover;
background-position: 50% 50%;
}