2017-10-26 19:40:55 +00:00
|
|
|
// Overwrite normal style (colors)
|
2016-07-23 12:52:19 +00:00
|
|
|
@import 'modules/variables';
|
|
|
|
@import 'custom/variables';
|
|
|
|
|
|
|
|
$color-white: #111;
|
|
|
|
$color-black: #fefefe;
|
2017-02-11 16:26:57 +00:00
|
|
|
$color-map-background: #0d151c;
|
2016-07-23 12:52:19 +00:00
|
|
|
|
2017-01-31 03:45:27 +00:00
|
|
|
html {
|
2016-07-23 12:52:19 +00:00
|
|
|
//@import 'modules/base';
|
|
|
|
body {
|
|
|
|
background: $color-white;
|
|
|
|
color: lighten($color-black, 100);
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
background: transparentize($color-black, .98);
|
2017-04-14 12:43:46 +00:00
|
|
|
border-bottom-color: lighten($color-white, 10%);
|
2016-07-23 12:52:19 +00:00
|
|
|
}
|
|
|
|
|
2017-02-26 15:09:23 +00:00
|
|
|
//@import 'modules/leaflet';
|
2016-07-23 12:52:19 +00:00
|
|
|
.leaflet-container {
|
2017-02-11 16:26:57 +00:00
|
|
|
background: $color-map-background;
|
2016-07-23 12:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.leaflet-label {
|
|
|
|
&.leaflet-label-right {
|
|
|
|
background-color: $color-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-28 03:21:55 +00:00
|
|
|
.leaflet-control-container {
|
|
|
|
.leaflet-control-layers-toggle {
|
|
|
|
background: lighten($color-white, 10);
|
|
|
|
color: $color-black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-26 15:09:23 +00:00
|
|
|
.leaflet-control-zoom {
|
|
|
|
a {
|
|
|
|
background: lighten($color-white, 10);
|
|
|
|
color: $color-black;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $color-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-23 12:52:19 +00:00
|
|
|
.leaflet-control-layers {
|
|
|
|
&.leaflet-control {
|
|
|
|
opacity: .9;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-12 00:29:37 +00:00
|
|
|
.language-switch {
|
|
|
|
color: $color-black;
|
|
|
|
|
|
|
|
option {
|
|
|
|
background: $color-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-01 21:13:06 +00:00
|
|
|
//@import 'modules/filter';
|
|
|
|
.filter-node {
|
|
|
|
input {
|
|
|
|
color: $color-black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-23 12:52:19 +00:00
|
|
|
//@import 'modules/sidebar';
|
|
|
|
.sidebar {
|
2017-02-04 02:01:17 +00:00
|
|
|
.infobox,
|
|
|
|
.container {
|
2016-07-23 12:52:19 +00:00
|
|
|
background: transparentize($color-white, .03);
|
|
|
|
border-right: 1px solid darken($color-white, 10%);
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
filter: invert(100%);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: map-get($grid-breakpoints, xl) - 1) {
|
|
|
|
background: $color-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//@import 'modules/tabs';
|
|
|
|
.tabs {
|
|
|
|
background: transparentize($color-black, .98);
|
2017-04-14 12:43:46 +00:00
|
|
|
border-bottom-color: lighten($color-white, 10%);
|
2016-07-23 12:52:19 +00:00
|
|
|
|
|
|
|
li {
|
|
|
|
color: transparentize($color-black, .5);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: $color-black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//@import 'modules/node';
|
|
|
|
.bar {
|
|
|
|
background: mix($color-new, $color-white, 60);
|
|
|
|
|
|
|
|
&.warning {
|
|
|
|
background: mix($color-offline, $color-white, 60);
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
color: $color-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//@import 'modules/button';
|
|
|
|
button {
|
|
|
|
background: lighten($color-white, 10);
|
|
|
|
color: $color-black;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: $color-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.close {
|
2017-01-14 00:08:41 +00:00
|
|
|
background: transparent;
|
2016-07-23 12:52:19 +00:00
|
|
|
color: transparentize($color-black, .5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|