-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
127 lines (111 loc) · 1.63 KB
/
style.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
html,
body {
background: #222222;
margin: 0;
color: #eee;
position: relative;
}
a{
color: #eee;
}
a:hover{
color: #00ffff;
}
header {
position: absolute;
width: 100vw;
height: 10vh;
padding: 2vw;
top: 0;
left: 0;
box-sizing: border-box;
}
main {
position: absolute;
width: 78vw;
height: 78vw;
max-height: 75vh;
max-width: 75vh;
top: 15vh;
left: 39vw;
box-sizing: border-box;
margin-left: 2vw;
transform: translateX(-50%);
}
aside {
position: absolute;
width: 18vw;
top: 15vh;
right:0;
box-sizing: border-box;
margin-right: 2vw;
padding-left: 1vw;
}
#container-alerts
{
position: absolute;
width: 100%;
top: 50%;
left: 0;
transform: translateY(-50%);
text-align: center;
}
#container-alerts .alert
{
margin-bottom: 15px;
border-top: 2px solid #00ffff;
border-bottom: 2px solid #00ffff;
padding-top: 10px;
background: rgba(51, 51, 51, 0.75);
}
#container-alerts .alert span
{
display: block;
padding-bottom: 10px;
}
#container-alerts .alert span.title
{
font-weight: bold;
}
#container-stats > p {
margin-top: 0;
margin-bottom: 3px;
}
canvas {
background: #555555;
width: 100%;
height: 100%;
}
.playercard {
border: 2px solid #555;
padding: 15px;
margin-bottom: 15px;
}
.truncate
{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
footer
{
position: absolute;
width: 100vw;
height: 10vh;
padding: 2vw;
bottom: -100vh;
left: 0;
box-sizing: border-box;
font-size: 0.6rem;
}
footer:before
{
content: " ";
display: block;
width: 100%;
border-top: 1px solid #777;
}
.center
{
text-align: center;
}