-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
72 lines (56 loc) · 1.02 KB
/
index.css
File metadata and controls
72 lines (56 loc) · 1.02 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
@import url('https://fonts.googleapis.com/css?family=Libre+Franklin');
body {
background-color: #292631;
}
.links{
text-align: center;
}
.linksAway{
text-align: center;
position: relative;
animation-name: slideAway;
animation-duration: 0.75s;
animation-fill-mode: forwards;
}
.linksBack{
text-align: center;
position: relative;
animation-name: slideBack;
animation-duration: 0.75s;
animation-fill-mode: forwards;
}
@keyframes slideAway{
0% {left:0px; top:0px;}
100% {left:-100vw; top:0px;}
}
@keyframes slideBack{
0% {left:-100vw; top:0px;}
100% {left:0px; top:0px;}
}
@keyframes slideUp{
0% {top: 0px;}
100% {top: -90vh;}
}
@keyframes slideDown{
0% {top:-90vh;}
100% {top:0px;}
}
.link{
display: inline-block;
padding: 40px;
}
.searchItem{
text-align: center;
color: white;
font-family: Libre Franklin;
font-size: 7em;
position: relative;
top: 100vh;
}
.searchUp{
text-align: center;
position: relative;
animation-name: slideUp;
animation-duration: 1s;
animation-fill-mode: forwards;
}