-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
86 lines (77 loc) · 1.38 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
* {
margin: 0px;
padding: 0px;
}
html, body {
padding: 0px;
margin: 0px;
width: 100%;
height: 100%;
overflow: hidden;
}
.map {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
margin: 0;
z-index: -1;
}
.scaffold {
height: 7%;
background-color:rgb(49, 49, 49);
border-radius: 8px;
margin: 8px;
}
.map-text {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
margin: 0;
z-index: 0;
}
.sidebar {
color: white;
font-family: Arial, Helvetica, sans-serif;
position: relative;
z-index: 10;
margin: 8px;
padding: 8px;;
width: 325px;
height: calc(100% - 32px);
background-color: rgb(36, 36, 36);
border-radius: 8px;
}
.seperator {
height: 2px;
background-color: rgb(66, 66, 66);
margin-top: 8px;
margin-bottom: 8px;
border-radius: 1px;
}
.sidebar .ready-indicator {
position: absolute;
display: flex;
bottom: 0px;
height: 20px;
width: 100%;
margin-left: -8px;
margin-right: -8px;
background-color: rgb(0, 190, 32);
color: white;
font-size: 12px;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
.ready-indicator-text {
margin-top: 3px;
margin-left: 8px;
}
.ready-indicator-timer {
margin-top: 3px;
margin-right: 8px;
margin-left: auto;
}