-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
70 lines (61 loc) · 968 Bytes
/
Copy pathindex.css
File metadata and controls
70 lines (61 loc) · 968 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
60
61
62
63
64
65
66
67
68
69
70
body, canvas {
margin: 0 auto;
background: black;
}
canvas {
display: block;
}
/* UI */
#turnbox-container {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
height: 50px;
display: flex;
justify-content: center;
}
#turnbox {
position: relative;
}
.entityBox {
position: absolute;
top: 0;
bottom: 0;
height: 50px;
color: white;
transition: 'left';
transition-duration: 200ms;
}
.healthBar {
position: absolute;
left: 0px;
bottom: 0px;
height: 5px;
background: red;
width: 100%;
}
.skeletonThumbnail {
background: url('/thumbnails/skele.png');
background-size: cover;
background-repeat: no-repeat;
}
.heroThumbnail {
background: url('/thumbnails/hero.png');
background-size: cover;
background-repeat: no-repeat;
}
/* Animations */
.fadeOut {
animation-name: fade-out;
animation-duration: 2s;
animation-fill-mode: forwards;
}
@keyframes fade-out {
from {
opacity: 1;
}
to {
opacity: 0;
}
}