-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (51 loc) · 852 Bytes
/
style.css
File metadata and controls
59 lines (51 loc) · 852 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
body {
max-width: 801px;
margin: auto;
font-family: sans-serif;
text-align: center;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(50px);
color: white;
margin-top: 0;
height: 100%;
}
html {
background: url(icon.gif) fixed;
animation: scroll 10000s linear infinite;
background-size: 200px 200px;
height: 100%
}
@media(min-width:801px) {
body {
height: max-content;
border-radius: 10px;
margin-top: 1em;
padding: 2em;
border: 4px solid #5c5c5c
}
}
p, h2 {
text-align: left
}
title {
font-size: xx-large;
display: block;
font-weight: 700
}
.center {
text-align: center
}
.center * {
text-align: center
}
.i {
filter: invert(100%);
}
@keyframes scroll {
from {
background-position: 0 0;
}
90% {
background-position: calc(200px * 10000) calc(200px * 10000);
}
}