whycq
2022-05-23 50ffa64f877246c13e8abd824719b4a047e9fe0c
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
* {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
}
#main {
    height: 100%;
    width: 100%;
    background-color: rgb(108,167,168);
}
.mapName {
    overflow: hidden;
    width: 20%;
    height: 10%;
    text-align: center;
    line-height: 100px;
    font-size: 40px;
    color: white;
}
.rack {
    position: absolute;
    display: inline-block;
}
.racks {
    border: 1px solid rgb(194,76,65);
    color: rgb(194,76,65);
}
.stn {
    text-align: center;
    background-color: rgb(120,255,129);
    position: absolute;
}
.crn {
    position: absolute;
    display: inline-block;
    background-color: #00ff90;
    z-index: 999;
}
.track {
    position: absolute;
    display: inline-block;
    background-color: #000000;
}