-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathstylesheet.css
89 lines (74 loc) · 1.79 KB
/
stylesheet.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
/* Need Help? Join my discord @ discord.gg/yWddFpQ */
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed|Lato');
* {
font-family: 'Lato', sans-serif;
text-align: center;
}
body {
margin: 0px;
padding: 0px;
background-color: var(--fadeTo-Color);
}
.blur {
-webkit-filter: blur(var(--background-blur)) contrast(var(--background-contrast));
filter: blur(var(--background-blur)) contrast(var(--background-contrast));
}
.logo {
width: 320px;
width: 320px;
}
.loadbar {
border-radius: 25px;
width: 98%;
background-color: var(--loadbar-color);
height: var(--loadbar-height);
box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.2), 0 6px 12px 0 rgba(0, 0, 0, 0.19);
margin-left: 2px;
margin-right: 3px;
margin-top: 10px;
margin-bottom: 5px;
overflow: hidden;
position: relative;
text-align: center;
display: block;
}
.yeet {
width: 10%;
border-radius: 25px;
background-color: var(--loadbar-progress-color);
height: var(--loadbar-height);
position: absolute;
left: 10%;
}
#container {
text-shadow: 2px 2px 5px #424242;
position: absolute;
color: rgb(241, 235, 235);
top: 47%;
left: 50%;
transform: translate(-50%,-50%);
font-size: 75px;
text-align: center;
}
#bg {
-webkit-background-size: cover;
background-size: cover;
}
#link {
color: var(--footer-font-color);
position: fixed;
left: 0;
bottom: 0;
font-size: var(--footer-font-size);
width: 100%;
text-align: center;
padding-bottom: 29px;
}
#bottom_nav {
width: 90%;
vertical-align: text-bottom;
position: fixed;
bottom:0px;
text-align: center;
z-index:9999;
}