-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
43 lines (36 loc) · 805 Bytes
/
main.css
File metadata and controls
43 lines (36 loc) · 805 Bytes
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
@keyframes scroll {
from {
background-position: 0px;
}
to {
background-position: 128px;
}
}
body {
background-color: #000000;
background-image: url(/assets/loop.svg);
animation-name: scroll;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
margin: 0px;
padding: 0px;
}
a {
color: #ffffff;
text-decoration: none;
font-weight: 600;
transition: filter 0.5s cubic-bezier(0, 0.55, 0.45, 1);
filter: drop-shadow(0 0 8px #ffffff00) drop-shadow(0 0 16x #ffffff00);
}
a:hover {
filter: drop-shadow(0 0 8px #ffffffff) drop-shadow(0 0 16px #ffffff80);
}
.frame {
width: 48px;
height: 48px;
box-sizing: border-box;
border-width: 16px;
border-style: solid;
border-image: url(/assets/frame.svg) 16 16 fill;
}