-
Notifications
You must be signed in to change notification settings - Fork 0
/
standard.css
110 lines (93 loc) · 1.55 KB
/
standard.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
103
104
105
106
107
108
109
110
@import 'https://fonts.googleapis.com/css?family=Open+Sans';
body {
font-family: 'Open Sans', sans-serif;
line-height: 1.75em;
font-size: 14px;
background-color: #222;
color: #cccccc;
}
.float-container {
display: flex;
align-items: stretch;
margin-bottom: 10px;
width: 1280px
}
.float-child {
float: left;
margin-right: 10px;
padding: 10px;
border-radius: 20px;
background-color: #333333;
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
button {
font-family: 'Open Sans', sans-serif;
font-weight: bold;
background-color: #b88728;
color: white;
padding: 10px;
margin-right: 5px;
width: 150px;
border: 0px;
border-radius: 20px;
}
.lightblue {
background-color: #1e8ad6;
}
.red {
background-color: #a02f21;
}
.blue {
background-color: #30429c;
}
.leaflet-tooltip {
background-color: white;
font-size: x-large;
font-weight: bold;
padding-top: 0;
padding-bottom: 0;
}
.color1 {
background-color: #264653;
color: #fff;
border: 2px solid #fff;
}
.color2 {
background-color: #287271;
color: #fff;
border: 2px solid #fff;
}
.color3 {
background-color: #2A9D8F;
color: #fff;
border: 2px solid #fff;
}
.color4 {
background-color: #8AB17D;
color: #fff;
border: 2px solid #fff;
}
.color5 {
background-color: #C6A75A;
color: #fff;
border: 2px solid #fff;
}
.color6 {
background-color: #F4A261;
color: #fff;
border: 2px solid #fff;
}
.color7 {
background-color: #E76F51;
color: #fff;
border: 2px solid #fff;
}
.colorDefult {
background-color: gray;
color: #fff;
border: 2px solid #fff;
}