-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
65 lines (65 loc) · 1.29 KB
/
index.css
File metadata and controls
65 lines (65 loc) · 1.29 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
56
57
58
59
60
61
62
63
64
65
@import url("./warownia.css");
#scrollbanner {
/* fuck you */
background-image: url("./assets/arsentical.png");
background-size: 400px;
height: 100px;
animation-name: bannerscroll;
animation-duration: 4s;
animation-timing-function: linear;
animation-iteration-count: infinite;
margin: 10px;
}
@keyframes bannerscroll {
0% {
background-position: calc(1000px * 100 / 250) 0;
}
100% {
background-position: 0 0;
}
}
#video {
min-width: 100%;
min-height: 100%;
}
#videobox {
height: calc(100vh - 240px);
overflow: hidden;
}
body {
margin: 0;
overflow: hidden;
font-family: "Warownia", "Helvetica", sans-serif;
}
#linkbanner {
list-style: none;
display: flex;
justify-content: space-around;
align-items: center;
padding: 0;
margin: 0;
font-size: 32px;
flex-wrap: wrap;
position: fixed;
bottom: 0;
left: 0;
width: 100vw;
min-height: 120px;
background-color: white;
}
#linkbanner > li > a {
padding: 0 8px;
padding-top: 8px;
color: black;
text-decoration: overline;
width: 200px;
display: inline-block;
text-align: center;
}
#slogan {
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-size: 24px;
}