-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
130 lines (127 loc) · 2.03 KB
/
styles.css
File metadata and controls
130 lines (127 loc) · 2.03 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
html,
body {
font-family: Arial, sans-serif;
height: 100%;
margin: 0;
padding: 0;
}
.sidebar h1 {
font-weight: 535;
font-size: 23px;
color: #878786;
margin-left: 45px;
margin-bottom: 30px;
}
.sidebar p {
margin-left: 16px;
color: #878786;
cursor: pointer;
}
.sidebar p:hover {
color: white;
}
body{
font-family:"Arial", Serif;
background-color:#f4f4f4;
overflow-x:hidden;
}
* {
box-sizing: border-box;
}
.navbar{
background-color:#212121;
overflow:hidden;
height: 65px;
}
.navbar a{
float:left;
display:block;
text-align:center;
padding:14px 16px;
text-decoration:none;
font-size:17px;
}
.side-nav{
height:100%;
width:0;
position:fixed;
z-index:1;
top:0;
left:0;
background-color: black;
overflow-x:hidden;
}
.side-nav a{
padding:10px 10px 10px 30px;
text-decoration:none;
font-size:22px;
color:#ccc;
display:block;
}
.side-nav a:hover{
color:#fff;
}
.side-nav .btn-close{
position:absolute;
top:0;
right:22px;
font-size:36px;
}
#main {
height: -moz-calc(100% - 65px);
height: -webkit-calc(100% - 65px);
height: calc(100% - 65px);
overflow:hidden;
width:100%;
}
#map {
height: 100%;
width:100%;
}
.custom-select {
width:100%;
position: relative;
font-family: Arial;
}
.custom-select select {
display: none;
}
.select-selected {
background-color: #4574A9;
}
.select-selected:after {
position: absolute;
content: "";
top: 14px;
right: 10px;
width: 0;
height: 0;
border: 6px solid transparent;
border-color: #fff transparent transparent transparent;
}
.select-selected.select-arrow-active:after {
border-color: transparent transparent #fff transparent;
top: 7px;
}
.select-items div,.select-selected {
color: #ffffff;
padding: 8px 16px;
border: 1px solid transparent;
border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
cursor: pointer;
user-select: none;
}
.select-items {
position: absolute;
background-color: #4574A9;
top: 100%;
left: 0;
right: 0;
z-index: 99;
}
.select-hide {
display: none;
}
.select-items div:hover, .same-as-selected {
background-color: rgba(0, 0, 0, 0.1);
}