-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (93 loc) · 2.21 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
html, body {
height: 100%;
width: 100%;
overflow: hidden;
}
body {
background-color: #1a1a1a;
margin: 0;
padding: 0;
text-align: left;
}
h1, h2, h3, h4, h5, p {
color: white;
font-family: Console, sans-serif;
margin-left: 1em;
margin-top: 1em;
padding: 0;
}
h1 {
font-family: Console, monospace;
font-size: 5vmax;
}
h2 {
font-size: 2.5vmax;
padding-left: .25em;
padding-bottom: -.5em;
}
h3 {
font-size: 1.75vmax;
}
h4 {
font-size: 1.25vmax;
}
ul {
margin-left: 1em;
margin-top: -.75em;
color: white;
font-size: 1.75vmax;
list-style: none;
display: inline-block;
}
li::before {
color: white;
content: "\27A4";
width: 2em;
}
li {
color: white;
content: "\27A4";
display: list-item;
transition: transform 0.3s ease-out;
}
a {
font-family: Console, monospace;
font-size: 1.75vmax;
width: auto;
font-weight: bold;
color: white;
margin: 0em .1em;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
li:hover {
transform: scale(1.2) translateX(.5em);
}
@keyframes enter_left {
0% {
transform: translateX(-100vw);
}
100% {
transform: initial;
}
}
#title {
position: relative;
transform: translateX(-100vw);
animation-name: enter_left;
animation-delay: 0s;
animation-duration: 1s;
animation-fill-mode: forwards;
animation-timing-function: ease-out;
}
#list {
position: relative;
transform: translateX(-100vw);
animation-name: enter_left;
animation-delay: .8s;
animation-duration: 1.2s;
animation-fill-mode: forwards;
animation-timing-function: ease-out;
}