Update styling and add styling for new mode

This commit is contained in:
2021-09-12 20:27:15 +01:00
parent 42cfa1d619
commit a72b42d705
7 changed files with 183 additions and 114 deletions

43
src/css/SliderOverlay.css Normal file
View File

@@ -0,0 +1,43 @@
.slider-overlay-content {
width: 80%;
max-width: 700px;
height: 40%;
max-height: 500px;
align-items: center;
}
.slider-overlay-content label {
margin: 16px 0 0 0;
}
.slider-overlay-content .continue-button {
margin: 24px 0 0 0;
}
.slider-overlay-content > .slider-container {
width: 100%;
display: flex;
flex-direction: row;
column-gap: 12px;
justify-content: center;
align-items: center;
}
.slider-overlay-content > .slider-container input {
min-width: 0;
min-width: 26px;
width: 26px;
}
@media screen and (max-width: 500px) {
.slider-overlay-content {
width: 75%;
}
}
@media screen and (max-height: 700px) {
.slider-overlay-content {
height: 60%;
}
}