2020-11-14 02:54:33 +01:00
|
|
|
:root {
|
|
|
|
--subtle-detail-color: #e5f5ff;
|
|
|
|
--subtle-detail-color-contrast: black;
|
2020-12-07 03:02:50 +01:00
|
|
|
--subtle-detail-color-light-contrast: lightgrey;
|
|
|
|
|
2020-11-14 02:54:33 +01:00
|
|
|
--catch-detail-color: #3a3aeb;
|
|
|
|
--catch-detail-color-contrast: white;
|
|
|
|
--alert-color: #fee4d1;
|
|
|
|
--background-color: white;
|
|
|
|
--foreground-color: black;
|
|
|
|
--popup-border: white;
|
2020-11-16 01:59:30 +01:00
|
|
|
--shadow-color: #00000066;
|
|
|
|
|
|
|
|
--return-to-the-map-height: 5em;
|
2020-11-23 02:55:18 +01:00
|
|
|
--variable-title-height: 0px; /*Set by javascript dynamically*/
|
2020-11-14 02:54:33 +01:00
|
|
|
}
|
|
|
|
|
2020-09-13 03:29:44 +02:00
|
|
|
html, body {
|
|
|
|
height: 100%;
|
2020-12-18 02:10:26 +01:00
|
|
|
min-height: 100vh;
|
|
|
|
min-height: -webkit-fill-available;
|
2020-09-13 03:29:44 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2020-11-14 02:54:33 +01:00
|
|
|
background-color: var(--background-color);
|
|
|
|
color: var(--foreground-color);
|
|
|
|
font-family: 'Helvetica Neue', Arial, sans-serif;
|
2020-09-13 03:29:44 +02:00
|
|
|
}
|
2020-06-24 00:35:19 +02:00
|
|
|
|
2020-11-15 00:27:55 +01:00
|
|
|
a {
|
|
|
|
color: var(--foreground-color)
|
|
|
|
}
|
2020-11-14 02:54:33 +01:00
|
|
|
|
2020-11-16 02:33:44 +01:00
|
|
|
#topleft-tools svg {
|
2020-11-14 02:54:33 +01:00
|
|
|
fill: var(--foreground-color) !important;
|
|
|
|
stroke: var(--foreground-color) !important;
|
|
|
|
}
|
|
|
|
|
2020-11-16 02:33:44 +01:00
|
|
|
#topleft-tools svg path {
|
2020-11-14 02:54:33 +01:00
|
|
|
fill: var(--foreground-color) !important;
|
|
|
|
stroke: var(--foreground-color) !important;
|
2020-09-13 03:29:44 +02:00
|
|
|
}
|
2020-06-24 00:35:19 +02:00
|
|
|
|
2020-11-15 03:10:44 +01:00
|
|
|
.direction-svg svg path{
|
|
|
|
fill: var(--catch-detail-color) !important;
|
|
|
|
}
|
|
|
|
|
2020-07-27 15:40:55 +02:00
|
|
|
|
2020-09-13 03:29:44 +02:00
|
|
|
#leafletDiv {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2020-06-24 00:35:19 +02:00
|
|
|
|
2020-11-14 02:54:33 +01:00
|
|
|
.leaflet-popup-content-wrapper {
|
|
|
|
background-color: var(--background-color);
|
|
|
|
color: var(--foreground-color);
|
2020-11-14 03:26:09 +01:00
|
|
|
border: 2px solid var(--popup-border);
|
|
|
|
box-shadow: 0 3px 14px var(--shadow-color) !important;
|
2020-11-14 02:54:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.leaflet-container {
|
|
|
|
background-color: var(--background-color) !important;
|
|
|
|
}
|
|
|
|
|
2020-11-15 00:27:55 +01:00
|
|
|
.leaflet-popup-tip {
|
|
|
|
background-color: var(--popup-border) !important;
|
|
|
|
color: var(--popup-border) !important;
|
|
|
|
box-shadow: 0 3px 14px var(--shadow-color) !important;
|
|
|
|
}
|
|
|
|
|
2020-09-13 03:29:44 +02:00
|
|
|
#geolocate-button {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 25px;
|
|
|
|
right: 50px;
|
|
|
|
}
|
2020-06-28 02:42:22 +02:00
|
|
|
|
2020-09-13 03:29:44 +02:00
|
|
|
#geolocate-button img {
|
|
|
|
width: 31px;
|
|
|
|
height: 31px;
|
|
|
|
margin: 6px;
|
|
|
|
}
|
2020-06-28 02:42:22 +02:00
|
|
|
|
2020-09-13 03:29:44 +02:00
|
|
|
#geolocate-button > .uielement {
|
|
|
|
display: block;
|
|
|
|
}
|
2020-07-27 13:04:38 +02:00
|
|
|
|
2020-09-03 19:05:18 +02:00
|
|
|
|
2020-09-13 03:29:44 +02:00
|
|
|
#help-button-mobile {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-07-30 16:34:06 +02:00
|
|
|
|
2020-09-13 03:29:44 +02:00
|
|
|
#layer-selection {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 1em;
|
|
|
|
left: 1em;
|
2020-10-01 01:23:45 +02:00
|
|
|
z-index: 9000;
|
2020-11-14 02:54:33 +01:00
|
|
|
background-color: var(--background-color);
|
|
|
|
color: var(--foreground-color);
|
|
|
|
|
2020-09-13 03:29:44 +02:00
|
|
|
border-radius: 1em;
|
|
|
|
cursor: pointer;
|
2020-11-14 02:54:33 +01:00
|
|
|
box-shadow: 0 0 10px var(--shadow-color);
|
2020-11-06 01:58:26 +01:00
|
|
|
}
|
|
|
|
|
2020-11-27 03:05:29 +01:00
|
|
|
.single-layer-selection-toggle{
|
|
|
|
position: relative;
|
2020-11-27 13:39:00 +01:00
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
2020-11-27 03:05:29 +01:00
|
|
|
}
|
|
|
|
.single-layer-selection-toggle img{
|
2020-11-27 13:39:00 +01:00
|
|
|
max-height: 2em !important;
|
|
|
|
max-width: 2em !important;
|
2020-11-27 03:05:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.single-layer-selection-toggle svg{
|
2020-11-27 13:39:00 +01:00
|
|
|
max-height:2em !important;
|
|
|
|
max-width: 2em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.simple-add-ui-icon{
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
width: 3.5em;
|
|
|
|
height: 3.5em;
|
|
|
|
padding-right: 0.3em;
|
|
|
|
padding-left: 0.3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.simple-add-ui-icon img{
|
|
|
|
max-height:3.5em !important;
|
|
|
|
max-width: 3.5em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.simple-add-ui-icon svg{
|
|
|
|
max-height:3.5em !important;
|
|
|
|
max-width: 3.5em !important;
|
2020-11-27 03:05:29 +01:00
|
|
|
}
|
|
|
|
|
2020-11-06 01:58:26 +01:00
|
|
|
.layer-selection-toggle {
|
2020-11-14 02:54:33 +01:00
|
|
|
border-radius: 1em;
|
2020-11-06 01:58:26 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column-reverse;
|
2020-11-14 02:54:33 +01:00
|
|
|
background: var(--subtle-detail-color);
|
2020-11-06 01:58:26 +01:00
|
|
|
}
|
|
|
|
|
2020-11-14 02:54:33 +01:00
|
|
|
.layer-selection-toggle svg {
|
2020-11-06 01:58:26 +01:00
|
|
|
display: block;
|
|
|
|
width: 2em;
|
2020-11-14 02:54:33 +01:00
|
|
|
height: 2em;
|
2020-11-15 00:27:55 +01:00
|
|
|
padding: 0.75em;
|
2020-09-13 03:29:44 +02:00
|
|
|
}
|
2020-06-27 03:06:51 +02:00
|
|
|
|
2020-09-13 03:29:44 +02:00
|
|
|
/**************** GENERIC ****************/
|
2020-06-27 03:06:51 +02:00
|
|
|
|
2020-09-13 03:29:44 +02:00
|
|
|
|
|
|
|
.alert {
|
2020-11-14 02:54:33 +01:00
|
|
|
background-color: var(--alert-color);
|
2020-09-13 03:29:44 +02:00
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 1em;
|
|
|
|
margin: 0.25em;
|
2020-10-01 01:23:45 +02:00
|
|
|
text-align: center;
|
2020-09-14 20:16:03 +02:00
|
|
|
padding: 0.15em 0.3em;
|
|
|
|
}
|
2020-06-27 03:06:51 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.question form {
|
|
|
|
display: inline-block;
|
|
|
|
max-width: 90vw;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-09-03 19:05:18 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.invalid {
|
|
|
|
box-shadow: 0 0 10px #ff5353;
|
|
|
|
height: min-content;
|
|
|
|
}
|
2020-09-03 19:05:18 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.shadow {
|
2020-11-14 02:54:33 +01:00
|
|
|
box-shadow: 0 0 10px var(--shadow-color);
|
2020-10-01 01:23:45 +02:00
|
|
|
}
|
2020-08-25 00:10:48 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.title-font span {
|
|
|
|
font-size: xx-large !important;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2020-08-25 00:10:48 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.soft {
|
2020-11-14 02:54:33 +01:00
|
|
|
background-color: var(--subtle-detail-color);
|
|
|
|
color: var(--subtle-detail-color-contrast);
|
2020-10-01 01:23:45 +02:00
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 1em;
|
|
|
|
margin: 0.25em;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0.15em 0.3em;
|
|
|
|
}
|
2020-08-22 02:12:46 +02:00
|
|
|
|
2020-08-27 01:03:58 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.subtle {
|
|
|
|
color: #999;
|
|
|
|
}
|
2020-09-13 00:53:24 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.bold {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2020-07-30 11:30:04 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.thanks {
|
|
|
|
background-color: #43d904;
|
|
|
|
font-weight: bold;
|
|
|
|
border-radius: 1em;
|
|
|
|
margin: 0.25em;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0.15em 0.3em;
|
|
|
|
}
|
2020-08-27 18:44:16 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.clickable {
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
2020-06-27 03:06:51 +02:00
|
|
|
|
2020-11-17 16:29:51 +01:00
|
|
|
.unclickable {
|
|
|
|
pointer-events: none !important;
|
|
|
|
}
|
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.page-split {
|
|
|
|
display: flex;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2020-09-02 11:37:34 +02:00
|
|
|
|
2020-06-27 03:06:51 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.activate-osm-authentication {
|
|
|
|
cursor: pointer;
|
|
|
|
color: blue;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2020-06-27 03:06:51 +02:00
|
|
|
|
2020-07-01 02:12:33 +02:00
|
|
|
|
|
|
|
#searchbox {
|
|
|
|
display: inline-block;
|
|
|
|
text-align: left;
|
2020-11-14 02:54:33 +01:00
|
|
|
background-color: var(--background-color);
|
|
|
|
color: var(--foreground-color);
|
|
|
|
|
2020-07-01 02:12:33 +02:00
|
|
|
transition: all 500ms linear;
|
|
|
|
pointer-events: all;
|
|
|
|
border-radius: 1.3em;
|
2020-09-14 20:16:03 +02:00
|
|
|
margin: 0 0 0.5em;
|
2020-07-01 02:12:33 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.search {
|
|
|
|
position: relative;
|
|
|
|
float: left;
|
|
|
|
height: 2em;
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
2020-07-23 23:33:17 +02:00
|
|
|
#searchbox {
|
|
|
|
width: 100%
|
|
|
|
}
|
|
|
|
|
2020-07-01 02:12:33 +02:00
|
|
|
#searchbox .form-text-field {
|
|
|
|
position: relative;
|
|
|
|
float: left;
|
|
|
|
margin-top: 0.2em;
|
2020-07-05 18:59:47 +02:00
|
|
|
margin-left: 1em;
|
2020-07-23 23:33:17 +02:00
|
|
|
width: calc(100% - 4em)
|
2020-07-01 02:12:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#searchbox input[type="text"] {
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
font-size: large;
|
2020-07-23 23:33:17 +02:00
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
2020-11-14 02:54:33 +01:00
|
|
|
color: var(--foreground-color);
|
2020-07-01 02:12:33 +02:00
|
|
|
}
|
|
|
|
|
2020-11-06 01:58:26 +01:00
|
|
|
.search-go img {
|
2020-07-01 02:12:33 +02:00
|
|
|
position: relative;
|
2020-07-05 18:59:47 +02:00
|
|
|
float: right;
|
2020-07-01 02:12:33 +02:00
|
|
|
height: 1.2em;
|
|
|
|
border: 2px solid black;
|
|
|
|
border-radius: 2em;
|
|
|
|
padding: 0.4em;
|
2020-07-05 18:59:47 +02:00
|
|
|
margin-left: 0.5em;
|
|
|
|
margin-right: 0;
|
2020-06-24 00:35:19 +02:00
|
|
|
}
|
|
|
|
|
2020-07-25 18:00:08 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.add-popup-all-buttons {
|
|
|
|
max-height: 50vh;
|
|
|
|
display: inline-block;
|
|
|
|
overflow-y: auto;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2020-07-23 23:33:17 +02:00
|
|
|
|
2020-06-27 03:06:51 +02:00
|
|
|
|
|
|
|
/**************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#topleft-tools {
|
|
|
|
display: block;
|
2020-06-24 00:35:19 +02:00
|
|
|
position: absolute;
|
|
|
|
z-index: 5000;
|
|
|
|
transition: all 500ms linear;
|
2020-06-27 03:06:51 +02:00
|
|
|
pointer-events: none;
|
2020-09-14 20:16:03 +02:00
|
|
|
/* Shadow offset */
|
|
|
|
padding: 0.5em 10px 0 0.5em;
|
2020-06-24 00:35:19 +02:00
|
|
|
}
|
|
|
|
|
2020-11-06 01:58:26 +01:00
|
|
|
.welcomeMessage {
|
|
|
|
display: block;
|
|
|
|
margin-left: 4em;
|
|
|
|
max-width: calc(100vw - 5em);
|
|
|
|
width: 40em;
|
|
|
|
max-height: calc(100vh - 15em);
|
|
|
|
overflow-y: auto;
|
|
|
|
border-top-right-radius: 1em;
|
|
|
|
border-bottom-right-radius: 1em;
|
2020-11-14 02:54:33 +01:00
|
|
|
background-color: var(--background-color);
|
|
|
|
color: var(--foreground-color);
|
2020-11-06 01:58:26 +01:00
|
|
|
}
|
2020-06-24 00:35:19 +02:00
|
|
|
|
2020-11-06 01:58:26 +01:00
|
|
|
.close-welcome-button {
|
2020-07-01 21:21:29 +02:00
|
|
|
position: absolute;
|
|
|
|
display: inline-block;
|
2020-10-01 01:23:45 +02:00
|
|
|
height: 100%;
|
2020-11-14 02:54:33 +01:00
|
|
|
background-color: var(--subtle-detail-color);
|
|
|
|
color: var(--subtle-detail-color-contrast);
|
2020-11-06 01:58:26 +01:00
|
|
|
box-sizing: border-box;
|
|
|
|
width: 4em;
|
|
|
|
padding: 1em;
|
|
|
|
border-top-left-radius: 1em;
|
|
|
|
border-bottom-left-radius: 1em;
|
2020-07-24 01:12:57 +02:00
|
|
|
}
|
|
|
|
|
2020-11-14 02:54:33 +01:00
|
|
|
.close-welcome-button svg {
|
2020-07-24 01:12:57 +02:00
|
|
|
width: 2em;
|
2020-11-14 02:54:33 +01:00
|
|
|
height: 2em;
|
2020-07-25 18:00:08 +02:00
|
|
|
}
|
|
|
|
|
2020-11-06 01:58:26 +01:00
|
|
|
.open-welcome-button {
|
2020-07-25 18:00:08 +02:00
|
|
|
display: inline-block;
|
2020-07-27 15:40:55 +02:00
|
|
|
box-sizing: border-box;
|
2020-11-14 02:54:33 +01:00
|
|
|
background: var(--subtle-detail-color);
|
|
|
|
color: var(--foreground-color);
|
|
|
|
|
2020-11-15 00:27:55 +01:00
|
|
|
height: 3.5em;
|
|
|
|
width: 3.5em;
|
|
|
|
padding: 0.75em;
|
2020-11-06 01:58:26 +01:00
|
|
|
border-radius: 1em;
|
2020-07-01 21:21:29 +02:00
|
|
|
}
|
|
|
|
|
2020-11-14 02:54:33 +01:00
|
|
|
.open-welcome-button svg {
|
2020-11-06 01:58:26 +01:00
|
|
|
width: 2em;
|
2020-11-14 02:54:33 +01:00
|
|
|
height: 2em;
|
2020-07-24 01:12:57 +02:00
|
|
|
}
|
2020-07-01 21:21:29 +02:00
|
|
|
|
2020-06-24 00:35:19 +02:00
|
|
|
#messagesbox {
|
2020-06-27 03:06:51 +02:00
|
|
|
/*Only shown on big screens*/
|
2020-07-27 15:40:55 +02:00
|
|
|
position: relative;
|
2020-07-24 01:12:57 +02:00
|
|
|
padding: 0;
|
2020-06-27 03:06:51 +02:00
|
|
|
pointer-events: all;
|
2020-11-14 02:54:33 +01:00
|
|
|
box-shadow: 0 0 10px var(--shadow-color);
|
2020-11-06 01:58:26 +01:00
|
|
|
border-radius: 1em;
|
2020-11-14 02:54:33 +01:00
|
|
|
width: min-content;
|
|
|
|
background-color: var(--background-color);
|
|
|
|
color: var(--foreground-color);
|
2020-06-27 03:06:51 +02:00
|
|
|
}
|
|
|
|
|
2020-07-27 15:40:55 +02:00
|
|
|
|
|
|
|
#centermessage {
|
|
|
|
position: absolute;
|
|
|
|
top: 30%;
|
2020-10-01 01:23:45 +02:00
|
|
|
|
2020-07-27 15:40:55 +02:00
|
|
|
left: 25%;
|
|
|
|
width: 50%;
|
|
|
|
|
|
|
|
font-size: large;
|
|
|
|
|
|
|
|
padding: 2em;
|
|
|
|
border-radius: 2em;
|
|
|
|
z-index: 4000;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
opacity: 1;
|
2020-11-14 02:54:33 +01:00
|
|
|
background-color: var(--background-color);
|
|
|
|
color: var(--foreground-color);
|
|
|
|
|
2020-07-27 15:40:55 +02:00
|
|
|
|
|
|
|
transition: opacity 500ms linear;
|
|
|
|
|
|
|
|
|
|
|
|
text-align: center;
|
|
|
|
horiz-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-06-27 03:06:51 +02:00
|
|
|
.imgWithAttr {
|
|
|
|
max-height: 20em;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
|
2020-06-24 00:35:19 +02:00
|
|
|
}
|
|
|
|
|
2020-06-27 03:06:51 +02:00
|
|
|
.attribution {
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: smaller;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
2020-07-07 15:08:52 +02:00
|
|
|
left: 6em; /* Offset for the go left button*/
|
2020-06-27 03:06:51 +02:00
|
|
|
padding: 0.25em;
|
|
|
|
margin-bottom: 0.25em;
|
|
|
|
border-radius: 0.5em;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-11-06 01:58:26 +01:00
|
|
|
.attribution img {
|
|
|
|
height: 1.2em !important;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
padding-left: 0.2em;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.attribution-author {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2020-06-27 03:06:51 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.license {
|
|
|
|
font-size: small;
|
|
|
|
font-weight: lighter;
|
|
|
|
}
|
2020-06-27 03:06:51 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.attribution a {
|
|
|
|
color: white;
|
|
|
|
}
|
2020-06-28 00:06:23 +02:00
|
|
|
|
2020-06-27 03:06:51 +02:00
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
/***************** Info box (box containing features and questions ******************/
|
2020-07-27 15:40:55 +02:00
|
|
|
|
2020-11-06 01:58:26 +01:00
|
|
|
|
|
|
|
.map-attribution img {
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
fill: black;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2020-10-01 01:23:45 +02:00
|
|
|
.leaflet-popup-content {
|
2020-11-20 14:00:37 +01:00
|
|
|
width: 45em !important;
|
2020-10-01 01:23:45 +02:00
|
|
|
}
|
2020-11-17 02:22:48 +01:00
|
|
|
|
|
|
|
.leaflet-div-icon {
|
|
|
|
background-color: unset !important;
|
|
|
|
border: unset !important;
|
|
|
|
}
|
|
|
|
|
2020-11-17 16:29:51 +01:00
|
|
|
|
2020-11-18 13:41:31 +01:00
|
|
|
.leaflet-div-icon svg {
|
|
|
|
width: calc(100%);
|
|
|
|
height: calc(100%);
|
|
|
|
}
|
|
|
|
|
2020-09-14 20:16:03 +02:00
|
|
|
/****** ShareScreen *****/
|
2020-07-29 15:05:19 +02:00
|
|
|
|
2020-09-14 20:16:03 +02:00
|
|
|
.literal-code {
|
|
|
|
display: inline-block;
|
|
|
|
background-color: lightgray;
|
|
|
|
padding: 0.5em;
|
2020-10-27 01:01:34 +01:00
|
|
|
word-break: break-word;
|
2020-09-14 20:16:03 +02:00
|
|
|
color: black;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2020-07-29 15:05:19 +02:00
|
|
|
|
|
|
|
|
2020-09-14 20:16:03 +02:00
|
|
|
.iframe-escape {
|
2020-11-14 02:54:33 +01:00
|
|
|
background-color: var(--background-color);
|
|
|
|
color: var(--foreground-color);
|
|
|
|
|
2020-09-14 20:16:03 +02:00
|
|
|
border-radius: 2em;
|
|
|
|
display: block;
|
|
|
|
width: min-content;
|
|
|
|
}
|
2020-07-29 15:05:19 +02:00
|
|
|
|
2020-09-14 20:16:03 +02:00
|
|
|
.iframe-escape img {
|
|
|
|
padding: 1em;
|
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
|
|
|
}
|
2020-09-13 00:53:24 +02:00
|
|
|
|
2020-09-14 20:16:03 +02:00
|
|
|
/** Switch layout **/
|
|
|
|
.subtle-button {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
flex-direction: row;
|
|
|
|
font-size: large;
|
|
|
|
margin: 0.5em;
|
2020-11-14 02:54:33 +01:00
|
|
|
background-color: var(--subtle-detail-color);
|
|
|
|
color: var(--subtle-detail-color-contrast);
|
2020-09-14 20:16:03 +02:00
|
|
|
border-radius: 1em;
|
|
|
|
align-items: center;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2020-07-29 15:48:21 +02:00
|
|
|
|
|
|
|
|
2020-09-14 20:16:03 +02:00
|
|
|
.subtle-button a {
|
|
|
|
text-decoration: unset !important;
|
|
|
|
color: unset !important;
|
|
|
|
display: block ruby;
|
|
|
|
}
|
2020-07-29 15:48:21 +02:00
|
|
|
|
2020-09-14 20:16:03 +02:00
|
|
|
.round-button .subtle-button {
|
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
|
|
|
border-radius: 1em;
|
|
|
|
display: block !important;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0.5em;
|
|
|
|
}
|
2020-07-29 19:02:36 +02:00
|
|
|
|
2020-09-14 20:16:03 +02:00
|
|
|
.small-button .subtle-button {
|
|
|
|
height: 2em;
|
|
|
|
}
|
2020-07-29 19:02:36 +02:00
|
|
|
|
2020-09-14 20:16:03 +02:00
|
|
|
.small-button .subtle-button img {
|
|
|
|
max-height: 1.8em;
|
|
|
|
}
|
2020-07-29 18:35:46 +02:00
|
|
|
|
2020-09-14 20:16:03 +02:00
|
|
|
.subtle-button img {
|
|
|
|
max-width: 3em;
|
2020-09-18 22:23:49 +02:00
|
|
|
height: 3em;
|
2020-09-14 20:16:03 +02:00
|
|
|
margin-right: 0.5em;
|
2020-09-18 22:23:49 +02:00
|
|
|
padding: 0;
|
2020-10-01 01:23:45 +02:00
|
|
|
padding-bottom: 0.2em;
|
2020-09-14 20:16:03 +02:00
|
|
|
}
|
2020-07-29 18:35:46 +02:00
|
|
|
|
2020-07-31 04:58:58 +02:00
|
|
|
|
2020-11-12 12:18:02 +01:00
|
|
|
.small-image img {
|
|
|
|
height: 1em;
|
|
|
|
max-width: 1em;
|
|
|
|
}
|
|
|
|
|
2020-11-22 03:50:09 +01:00
|
|
|
|
|
|
|
.share-button {
|
|
|
|
background-color: var(--subtle-detail-color);
|
|
|
|
border: none;
|
|
|
|
color: var(--subtle-detail-color-contrast);
|
|
|
|
text-decoration: none;
|
|
|
|
display: inline-block;
|
|
|
|
border-radius: 3em;
|
2020-11-23 02:55:18 +01:00
|
|
|
height: 2.5em;
|
|
|
|
width: 2.5em;
|
2020-11-22 03:50:09 +01:00
|
|
|
box-sizing: border-box;
|
2020-11-23 02:55:18 +01:00
|
|
|
padding:0;
|
2020-11-22 03:50:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.share-button svg {
|
2020-11-23 02:55:18 +01:00
|
|
|
height: 1.5em;
|
|
|
|
width: 1.5em;
|
2020-11-22 03:50:09 +01:00
|
|
|
padding: 0.5em;
|
2020-11-23 02:55:18 +01:00
|
|
|
padding-left: 0.4em;
|
2020-11-24 11:10:43 +01:00
|
|
|
fill: var(--subtle-detail-color-contrast) !important;
|
|
|
|
stroke: var(--subtle-detail-color-contrast) !important;
|
2020-11-22 03:50:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.share-button svg path{
|
2020-11-24 11:10:43 +01:00
|
|
|
fill: var(--subtle-detail-color-contrast) !important;
|
|
|
|
stroke: var(--subtle-detail-color-contrast) !important;
|
2020-11-22 03:50:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.share-button svg circle{
|
2020-11-24 11:10:43 +01:00
|
|
|
fill: var(--subtle-detail-color-contrast) !important;
|
|
|
|
stroke: var(--subtle-detail-color-contrast) !important;
|
2020-11-22 03:50:09 +01:00
|
|
|
}
|