forked from enarx-archive/enarx.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
76 lines (64 loc) · 1.25 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
@charset "UTF-8";
* {
color: inherit;
padding: 0px;
margin: 0px;
}
body {
background-image: url('white.svg');
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center;
background-color: black;
font-size: 1.5vw;
color: white;
}
@media only screen and (max-height: 800px) and (orientation: landscape) {
body {
background-size: auto 50vh;
font-size: 4vh;
}
}
@media only screen and (max-width: 800px) and (orientation: portrait) {
body {
background-size: 50vw auto;
font-size: 4vw;
}
}
a {
text-transform: lowercase;
font-variant: small-caps;
text-decoration: none;
padding: 0.125em;
margin: 0.125em;
}
a:hover {
transition-timing-function: ease-in-out;
transition-duration: 0.25s;
background-color: white;
border-radius: 2px;
color: black;
}
.footer {
margin: 2em 0px 2em 0px;
text-align: center;
position: fixed;
display: block;
bottom: 0px;
width: 100%;
animation: footerin 1s ease-in-out 0.5s;
animation-fill-mode: backwards;
}
@keyframes footerin {
from { opacity: 0; transform: translate(0, 3em); }
}
.linklist {
list-style: none;
}
.linklist li {
display: inline-block;
}
.linklist li:not(:last-child):after {
position: absolute;
content: "·";
}