-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuni.css
179 lines (141 loc) · 2.6 KB
/
uni.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
@import url(http://fonts.googleapis.com/css?family=Comfortaa:700|Open+Sans|Roboto:300);
body{
padding:0;
margin:0;
font-family: 'Open Sans', sans-serif;
}
header{
width:80%;
text-align:center;
font-family: 'Comfortaa', cursive;
position:fixed;
top:50%;
left:50%;
transform:translate(-50%, -50%);
margin:0;
transform-origin: top left;
}
h1{
font-size:1000%;
margin:0;
color:#f39c12;
}
h2, h3, h4, h5, h6{
font-family:"Roboto", sans-serif;
}
a{
color:black;
text-decoration:underline;
}
a:hover{
text-decoration:none;
}
a:visited{
color:black;
}
button{
border-radius:5px;
background:rgba(0, 0, 0, 0.7);
color:white;
border-style:none;
padding:10px;
transition:all 0.2s ease;
cursor:pointer;
z-index:5;
}
button:hover{
background:white;
color:black;
}
table{
margin:0 10px 0 0;
text-align:center;
border-collapse:collapse;
}
table td:nth-child(odd){
background-color:rgba(235, 235, 235, 1);
padding:10px;
}
table td:nth-child(even){
background-color:rgba(44, 62, 80, 1);
padding:10px;
color:white;
}
table th{
padding:10px;
background-color:black;
color:white;
}
table .RRow{
border-left:solid 1px black;
}
img{
max-height:100%;
max-width:100%;
position:absolute;
top:50%;
transform:translateY(-50%);
}
@media (max-width: 900px), (max-height: 650px){
body{
font-size:75%;
}
table th{
padding:0;
}
table td{
padding:0;
}
}
@media (max-width: 800px), (max-height: 600px){
body{
font-size:50%;
}
}
@media (min-width: 800px) and (max-width: 1200px) and (max-height: 900px) and (min-height:650px){
body{
font-size:80%;
}
}
@media (max-width: 1300px) and (min-height: 400px){
#Assem{
bottom:0 !important;
}
}
@media screen and (max-aspect-ratio: 5/7){
#Crap{
top:20vh;
}
#Landfill{
transform:translateY(-3vh);
}
}
@media screen and (max-aspect-ratio: 5/10){
#Crap{
top:15vh;
}
}
body {
overflow: hidden;
}
/* Preloader */
#preloader {
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
background-color:#fff; /* change if the mask should have another color then white */
z-index:99; /* makes sure it stays on top */
}
#status {
width:200px;
height:200px;
position:absolute;
left:50%; /* centers the loading animation horizontally one the screen */
top:50%; /* centers the loading animation vertically one the screen */
background-image:url(/JSDep/preload/img/status.gif); /* path to your loading animation */
background-repeat:no-repeat;
background-position:center;
margin:-100px 0 0 -100px; /* is width and height divided by two */
}