-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (88 loc) · 1.31 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
html, body {
height: 100%;
padding: 0;
margin: 0;
}
#map {
width: 100%;
height: 100%;
z-index: 5;
}
button{
font-size: 2rem;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.909);
z-index: 10;
font-family: monospace;
font-size: 1.4rem;
color: aliceblue;
display: grid;
grid-template-columns: 10% 80% 10%;
grid-template-rows: 1fr 2fr 1fr 2fr 20fr 2fr;
}
.tooltip-text{
grid-row: 2;
grid-column: 2;
}
.scenery-folder-input{
grid-row: 4;
grid-column: 2;
font-size: 100%;
}
.generate-btn{
grid-row: 6;
grid-column: 2;
}
.text-field {
height: 100%;
width: 100%;
grid-row: 5;
grid-column: 2;
padding: 0;
}
.close-btn{
grid-row: 1;
grid-column: 3;
}
.input-tooltip{
grid-row: 3;
grid-column: 2;
}
.to-clipboard-button{
grid-row: 5;
grid-column: 2;
z-index: 10;
margin-left: auto;
margin-bottom: auto;
font-size: 1rem;
}
.open-overlay-btn{
z-index: 7;
position: fixed;
top: 0;
right: 0;
}
.legend-container{
z-index: 7;
position: fixed;
bottom: 50px;
left: 5px;
background-color: rgba(255, 255, 255, 0.5);
padding: 5px;
}
.legend{
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.legend-color{
margin-right: 5px;
width: 3rem;
opacity: 0.8;
}