-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
168 lines (145 loc) · 2.54 KB
/
Copy pathstyle.css
File metadata and controls
168 lines (145 loc) · 2.54 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
* {
font-family: Roboto;
}
body {
margin: 0;
}
#window {
position: absolute;
margin: 0 auto;
left: 0;
right: 0;
top: 30px;
width: 50%;
padding: 50px 0;
background: rgba(255,255,255, 0.8);
border: 3px solid grey;
border-radius: 30px;
box-shadow: 0 0 20px grey;
text-align: center;
}
#window div {
margin-bottom: 20px;
}
#serverlist {
width: 90%;
margin: auto;
border: 1px solid black;
border-collapse: collapse;
}
#serverlist thead {
border-bottom: 3px solid black;
}
#serverlist th, td {
border: 1px solid black;
}
#serverlist tbody tr:hover {
background: rgb(230,230,230);
}
#gameConfig {
position: absolute;
margin: 0 auto;
left: 0;
right: 0;
top: -30px;
padding: 50px 0;
width: 50%;
background: rgba(255,255,255, 0.8);
border: 3px solid grey;
border-radius: 30px;
box-shadow: 0 0 20px grey;
text-align: center;
z-index: 1000;
}
#gameConfig div {
margin-bottom: 20px;
}
#gameConfig input[type=range] {
width: 40%;
}
#gameConfig input[type=submit] {
margin-top: 20px;
}
#displayText {
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
width: 800px;
height: 300px;
text-align: center;
text-shadow: white 1px 1px, white -1px 1px, white -1px -1px, white 1px -1px;
font-size: 80px;
z-index: 999;
}
#map{
padding: 0;
margin: 0;
list-style-type: none;
width: 90vw;
height: 90vw;
max-height: 90vh;
max-width: 90vh;
margin: auto;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
flex-direction: column;
justify-content: center;
}
#map li {
display: flex;
justify-content: center;
flex: 1;
max-height: 100px;
}
#map li div {
flex: 1;
max-width: 100px;
box-sizing: border-box;
border: 1px solid rgb(220,220,220);
}
#map div[class*='obstacle'] {
background-image: url(img/obstacle.png);
background-size: 100% 100%;
}
#map div[class*='medpack'] {
background-image: url(img/medpack.png);
background-size: 100% 100%;
}
#map .movementsquare {
box-shadow: inset 0px 0px 10px grey;
border-radius: 10%;
z-index: 999;
}
#map .movementsquare:hover {
box-shadow: inset 0px 0px 20px grey;
}
div[id*='headerplayer'] {
position: absolute;
display: inline;
z-index: 999;
}
div[id*='headerplayer'] > p {
text-align: center;
margin: 0 0 5px 0;
font-size: 1vw;
text-shadow: white 1px 1px, white -1px 1px, white -1px -1px, white 1px -1px;
}
div[id*='hpbarplayer'] {
height: 5px;
background: green;
}
#battleMenu {
position: absolute;
padding: 0.5%;
background: rgba(200,200,200,0.5);
border-radius: 10px;
border: 1px solid black;
opacity: 0;
z-index: 999;
}