ed06ff6b09
Add variables to allow easy modifications to color, font and also extending Style
42 lines
632 B
SCSS
42 lines
632 B
SCSS
.content {
|
|
height: 100vh;
|
|
position: fixed;
|
|
width: 100%;
|
|
|
|
.buttons {
|
|
direction: rtl;
|
|
position: absolute;
|
|
right: $buttondistance;
|
|
top: $buttondistance;
|
|
unicode-bidi: bidi-override;
|
|
z-index: 100;
|
|
|
|
button {
|
|
margin-left: $buttondistance;
|
|
}
|
|
@media screen and (max-width: $minscreenwidth) {
|
|
right: 0;
|
|
transform: scale(.8);
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: $minscreenwidth) {
|
|
height: 60vh;
|
|
position: relative;
|
|
width: auto;
|
|
}
|
|
}
|
|
|
|
.stroke-first {
|
|
paint-order: stroke;
|
|
}
|
|
|
|
.pick-coordinates {
|
|
cursor: crosshair;
|
|
}
|
|
|
|
.map {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|