-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
102 lines (102 loc) · 1.57 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
99
100
101
102
*{
margin:0;
padding:0;
font-family: Arial, Helvetica, sans-serif;
}
html, body{
height: 100%;
}
body{
display: flex;
}
h2{
text-align: center;
margin-bottom: 20px;
}
h3{
text-align: center;
font-weight: 400;
margin-bottom: 5px;
}
hr{
margin: 15px 0px 15px 0px;
}
a{
color: black;
text-decoration: underline;
}
input[type=range]{
width: 100%;
}
canvas{
border: 1px solid red;
}
button{
width: 100%;
padding: 5px;
}
select{
padding:3px;
}
#userDate{
margin-bottom: 15px;
}
#map{
flex-grow: 1;
/*display: inline-block;
height: 800px;
width: 800px;*/
}
#panelLeft{
width: 200px;
padding: 15px;
border-right: 1px solid black;
overflow-y: scroll;
}
#panelLeft > button{
width:100%;
margin-top:10px;
}
#brightness, #contrast, #gamma,
#shadow_dilation, #laplacian_dilation,
#hillshade_dilation, #hillshade_color, #hillshade_color_power,
#laplacian, #slope, #occlusion_power{
display:none;
}
#mapControls > div{
margin-bottom:20px;
}
#mapControls > div label {
display:block;
text-align: center;
}
#mapControls > div > div {
width:100%;
display: grid;
grid-template-columns: auto 50px;
}
#mapControls #model div{
grid-template-columns: 30px auto;
padding: 4px;
}
#mapControls > div > div > div{
padding-left: 5px;
}
#modesSelect{
width:100%;
margin-top: 5px;
}
#copyrights{
margin:30px;
text-align: center;
}
#copyrights img{
width: 20px;
padding: 5px;
}
#wmtsSelect select{
width: 100%;
}
#wmtsSelect{
margin-bottom: 20px;
}