-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauroras.css
58 lines (53 loc) · 852 Bytes
/
auroras.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
html {
font-size: 12px;
}
body {
margin: 0;
padding: 0;
position: fixed;
overflow-y: scroll;
width: 100%;
background: black;
}
#auroratable {
border: 0 solid black;
border-collapse: collapse;
width: 100%;
height: 100%;
overflow: none;
}
#auroradiv {
background: black;
width: 100%;
height: 100%;
}
.hideclass {
animation: fadeout 2s 4s forwards ease-out;
}
.hideclass:hover {
animation: fadein 1s 0s forwards ease-in;
}
#info {
position: absolute;
top: 0;
left: 10rem;
background: rgba(255,255,255,0.2);
}
.tablerow {
height: 1rem;
}
.center {
margin-right: auto;
margin-left: auto;
text-align: center;
}
@keyframes fadeout {
0% { opacity: 1; }
50% { opacity: 0.75; }
100% { opacity: 0.2; background: rgba(255,255,255,0);}
}
@keyframes fadein {
0% {opacity: 0.3; }
50% { opacity: 0.75; }
100% { opacity: 1; }
}