-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (36 loc) · 723 Bytes
/
style.css
File metadata and controls
41 lines (36 loc) · 723 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
body {
margin: 0;
padding: 0;
font-family: '.SFNSDisplay-Thin', -apple-system, 'HelveticaNeue-Light', 'Helvetica Neue Light', Helvetica, Arial, sans-serif;
}
.gradient {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
background: linear-gradient(0deg, #eaceea, #4990b7);
}
#overlay {
animation-iteration-count: 1;
animation-fill-mode: forwards;
-webkit-animation-fill-mode: forwards;
animation: fade 8s ease-in-out;
position: absolute;
top: 30%;
width: 50%;
left: 0;
right: 0;
margin: 0 auto;
text-align: center;
font-size: 30px;
color: white;
z-index: 999;
opacity: 0;
}
@keyframes fade {
0% { opacity: 0.9; }
100% { opacity: 0; display: none; }
}