forked from dissimulate/jelly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (51 loc) · 767 Bytes
/
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
* {
margin: 0;
}
body {
font-family: Helvetica, sans-serif;
background: #f8f8f8;
}
#info {
font-size: 22px;
color: #ccc;
position: absolute;
z-index: -1;
display: flex;
flex-direction: column;
width: 100vw;
height: 100vh;
justify-content: center;
align-items: center;
animation: fadeOut 1s forwards 3s;
}
#info > div {
margin-top: -10em;
}
#info > div > div {
margin-bottom: 0.4em;
}
code {
color: #bbb;
background: rgba(0, 0, 0, 0.07);
padding: 0em 0.2em;
}
#github {
position: absolute;
top: 1em;
left: 0;
right: 0;
margin: auto;
width: 13em;
text-align: center;
text-decoration: none;
color: #9999EE;
font-size: 18px;
}
@keyframes fadeOut {
from {
opacity: 1
}
to {
opacity: 0.4
}
}