-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (45 loc) · 1 KB
/
styles.css
File metadata and controls
55 lines (45 loc) · 1 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
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');
body {
font-family: "Geist", Arial, Helvetica, sans-serif;
background-color: #0a0a0a;
text-align: center;
overflow: hidden;
color: white;
margin: 0;
}
::selection, ::-moz-selection {
color: #0a0a0a;
background: white;
text-shadow: none;
}
a {
text-decoration: none;
color: #999;
}
h2 {
color: #444;
margin: 0.3em;
}
.content {
transform: translate(-50%, -50%);
position: absolute;
left: 50%;
top: 20%;
}
@keyframes hype {
0% { background-position: 0% 50%; }
100% { background-position: 400% 50%; }
}
.hype {
background-image: linear-gradient(90deg, #555, #999, #555);
animation: hype 5s ease-in-out infinite;
transition: filter 0.3s ease-out;
background-size: 400% auto;
background-clip: text;
color: transparent;
}
.hype:hover {
filter: brightness(200%);
}
a:hover { text-decoration: underline; }
.sub { color: #777; }