Fixed formatting + added base image upload

This commit is contained in:
TheGreyDiamond
2021-06-11 21:43:04 +02:00
parent 3cb4a71c9f
commit 72aaa6a047
5 changed files with 343 additions and 53 deletions

View File

@ -10,6 +10,7 @@
border-radius: 2px;
margin: 5px;
padding: 4px;
overflow-y: scroll;
}
.map {
@ -22,7 +23,7 @@
}
aside {
padding: 10px;
padding: 10px;
position: absolute;
z-index: 100;
left: 1rem;
@ -36,7 +37,6 @@ aside h2 {
line-height: 1.05em;
}
.lds-ripple {
display: inline-block;
position: relative;
@ -70,10 +70,6 @@ aside h2 {
}
}
/* Slideshow container */
.slideshow-container {
max-width: 1000px;
@ -90,7 +86,8 @@ aside h2 {
}
/* Next & previous buttons */
.prev, .next {
.prev,
.next {
cursor: pointer;
/*position: absolute;*/
margin: 20px;
@ -103,19 +100,19 @@ aside h2 {
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
background-color:#000;
background-color: #000;
}
/* Position the "next button" to the right */
.next {
right: 0;
border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color:#000;
.prev:hover,
.next:hover {
background-color: #000;
}
/* Caption text */
@ -150,7 +147,8 @@ aside h2 {
transition: background-color 0.6s ease;
}
.active, .dot:hover {
.active,
.dot:hover {
background-color: #717171;
}
@ -163,16 +161,24 @@ aside h2 {
}
@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
from {
opacity: 0.4;
}
to {
opacity: 1;
}
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
from {
opacity: 0.4;
}
to {
opacity: 1;
}
}
.elevatorPhoto{
.elevatorPhoto {
width: auto;
max-height: 50vh;
}
}