-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.css
104 lines (93 loc) · 1.36 KB
/
layout.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
body {
margin: 0;
padding: 0;
background: #161512;
color: #bababa;
font-family: Helvetica, sans-serif;
overflow: hidden;
}
a {
color: #bababa;
cursor: pointer;
text-decoration: underline;
}
p {
margin: 0;
}
#overlay {
position: absolute;
top: 10px;
left: 10px;
width: 340px;
max-height: calc(100% - 20px);
background: #161512cc;
overflow-y: auto;
overflow-x: hidden;
}
.replay button {
padding: 0;
line-height: 1.5em;
width: 19%;
}
.replay {
word-wrap: anywhere;
}
#overlay canvas {
margin: 0.8em auto;
display: block;
}
span.no_action,
span.unknown {
color: red;
}
.team {
padding: 4px;
}
#monitor > canvas,
#monitor > .maps {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
}
#monitor > .maps {
padding-top: 10px;
padding-left: 350px;
overflow-y: auto;
width: calc(100% - 350px);
}
.box,
.map {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
background-color: #252422;
margin: 0.5em;
padding: 0.5em;
}
ul {
margin: 0.4em 0;
padding-left: 1.5em;
}
.map {
width: 250px;
float: left;
}
.map.no_action,
.map.unknown {
background: #901717;
}
.map a {
display: block;
}
.map a.team {
text-decoration: none;
}
.map .meta {
height: 5em;
font-size: 0.8em;
}
canvas {
cursor: crosshair;
}