No SCSS errors anymore

This commit is contained in:
reverend 2021-11-01 09:49:58 +01:00
parent c2cdefff6d
commit b4508ee3e3
5 changed files with 56 additions and 7 deletions

View File

@ -25,7 +25,6 @@
&:hover {
background-color: $-beige;
--icon-color: #{$-grey};
--color: #{$-almost-white};
.LP-LinkList__ItemHover {
opacity: 1;

View File

@ -1,3 +1,3 @@
//@import 'home/home';
//@import 'placeDetail/placeDetail';
//@import 'codex/codex';
@import 'home/home';
@import 'placeDetail/placeDetail';
@import 'codex/codex';

View File

@ -4,7 +4,6 @@
max-width: 700px;
max-height: 500px;
width: 50%;
@include RV-BoxShadow--simple($-grey);
box-shadow: 0 0 10px $-grey;
object-fit: cover;
object-position: 0 0;

View File

@ -26962,7 +26962,6 @@ label + .LP-Input--disabled .LP-Input__Field:disabled {
.LP-LinkList .LP-LinkList__Item:hover {
background-color: #D7CEC7;
--icon-color: #565656;
--color: #f9f9f9;
}
.LP-LinkList .LP-LinkList__Item:hover .LP-LinkList__ItemHover {
opacity: 1;
@ -27489,4 +27488,56 @@ label + .LP-Input--disabled .LP-Input__Field:disabled {
flex-basis: max-content;
}
.LP-MainContainer {
margin: 0 auto;
max-width: 1280px;
}
.LP-HorizontalLine {
color: #565656;
}
@media (max-width: 650px) {
.LP-MainContainer {
width: 100%;
}
}
.LP-PlaceDetail .LP-PlaceDetail__Image {
max-width: 700px;
max-height: 500px;
width: 50%;
box-shadow: 0 0 10px #565656;
object-fit: cover;
object-position: 0 0;
margin: 0;
padding: 0;
float: right;
margin-left: 25px;
margin-bottom: 25px;
margin-right: 25px;
overflow: hidden;
}
@media (max-width: 750px) {
.LP-PlaceDetail .LP-PlaceDetail__Header .LP-PlaceDetail__Image {
float: none;
width: 100%;
max-width: unset;
height: auto;
margin: 0;
padding: 0;
margin-bottom: 25px;
}
}
.LP-TextSection .LP-UnorderedList {
font-family: "Crimson Pro", Times, serif;
font-size: 1.4rem;
}
.LP-TextSection .LP-UnorderedList li {
margin-bottom: 0.75em;
list-style-type: square;
margin-left: 2em;
padding-left: 1em;
}
/*# sourceMappingURL=main.css.map */

File diff suppressed because one or more lines are too long