Merge branch 'master' of mowoe.com:reverend/lostplaces-frontend

This commit is contained in:
reverend 2020-07-27 23:10:50 +02:00
commit 3d82d59d6c
24 changed files with 404 additions and 109 deletions

View File

@ -4,7 +4,14 @@
font-size: 1.7rem; font-size: 1.7rem;
padding-top: 0px; padding-top: 0px;
margin-top: 0px; margin-top: 0px;
padding-bottom: 0.2rem; padding-bottom: 0px;
margin-bottom: 0px;
&--main{
position: relative;
top: 2rem;
font-size: 2rem;
}
&--inline{ &--inline{
display: inline; display: inline;

View File

@ -1,5 +1,14 @@
{ {
"context": { "context": {
"headline": "Hello here is my headline" "headline": "Hello here is my headline"
} },
"title": "Headline",
"variants": [
{
"name": "main",
"context": {
"modifier": "--main"
}
}
]
} }

View File

@ -1 +1 @@
<h1 class="LP-Headline">{{headline}}</h1> <h1 class="LP-Headline LP-Headline{{modifier}}">{{headline}}</h1>

View File

@ -12,4 +12,8 @@
color: $-secondary-accent-color; color: $-secondary-accent-color;
} }
} }
}
.LP-Link__IconWrapper{
display: inline;
} }

View File

@ -1 +1 @@
<p class="LP-Text">{{text}}</p> <p class="LP-Text LP-Content">{{text}}</p>

View File

@ -1,3 +1,3 @@
<a href="LP-Link" href="#"> <a href="LP-Link" href="#">
<img class="LP-Logo" src="https://99designs-blog.imgix.net/blog/wp-content/uploads/2016/07/logo-2.png?auto=format&q=60&fit=max&w=930"/> <img class="LP-Logo" src="{{ path '/images/logo.png' }}"/>
</a> </a>

View File

@ -9,6 +9,7 @@
margin: 5px 5px; margin: 5px 5px;
padding: 5px 8px; padding: 5px 8px;
background-color: #D7CEC7; background-color: #D7CEC7;
border-radius: 2px;
.LP-Text{ .LP-Text{
font-family: $-primary-sans-serif-font; font-family: $-primary-sans-serif-font;
font-size: 1.2rem; font-size: 1.2rem;

View File

@ -1,5 +1,11 @@
.LP-Content{ .LP-Content{
padding: 15px; padding: 35px;
}
@media (max-width: 1290px){
.LP-Content{
padding: 15px;
}
} }
.LP-TextSection{ .LP-TextSection{

View File

@ -1,4 +1,4 @@
<article class="LP-TextSection LP-Content"> <article class="LP-TextSection">
{{> @headline headline=headline}} {{> @headline headline=headline}}
{{> @text text=text}} {{> @text text=text}}
</article> </article>

View File

@ -2,4 +2,6 @@
@import 'navigation/navigation'; @import 'navigation/navigation';
@import 'introduction/introduction'; @import 'introduction/introduction';
@import 'placeGrid/placeGrid'; @import 'placeGrid/placeGrid';
@import 'placeList/placeList'; @import 'placeList/placeList';
@import 'linkList/linkList';
@import 'footer/footer';

View File

@ -0,0 +1,30 @@
.LP-Footer{
margin-top: 75px;
width: 100%;
background-color: $-secondary-color;
padding: 25px;
.LP-LinkList__List{
display: flex;
align-items: center;
justify-content: center;
.LP-LinkList__Item{
border: none;
padding: 5px;
width: auto;
.LP-Text{
color: $-secondary-background-color;
font-size: 17px;
}
.LP-Link{
display: inline;
&:hover{
background-color: inherit;
}
}
}
}
}

View File

@ -0,0 +1,3 @@
{
"title": "Footer"
}

View File

@ -0,0 +1,7 @@
<article class="LP-Footer">
<ul class="LP-LinkList__List">
<li class="LP-LinkList__Item"><a href="" class="LP-Link"><span class="LP-Text">Impressum</span></a></li>
<li class="LP-LinkList__Item"><a href="" class="LP-Link"><span class="LP-Text">Kontakt</span></a></li>
<li class="LP-LinkList__Item"><a href="" class="LP-Link"><span class="LP-Text">Datenschutz</span></a></li>
</ul>
</article>

View File

@ -10,7 +10,7 @@
object-fit:contain; object-fit:contain;
} }
.LP-Header__Navigation{ .LP-Header__Logo{
margin: 25px;
} }
} }

View File

@ -0,0 +1,59 @@
.LP-LinkList__List{
list-style-type: none;
display: grid;
grid-template-columns: repeat(auto-fit, 300px);
margin: 0;
padding: 0;
.LP-LinkList__Item{
border-left: 1px solid $-secondary-accent-color;
width: 100%;
margin-top: 12px;
height: 55px;
.LP-Link{
$-link-padding: 1em;
padding: $-link-padding 0 $-link-padding $-link-padding;
width: calc(100% - $-link-padding);
display: block;
color: $-secondary-color;
&--iconized{
padding-top: 0;
padding-bottom: 1.1em;
&:hover{
background-color: #ccc !important;
}
.LP-Text{
padding-top: .1em;
}
}
&:hover{
background-color: $-secondary-background-color;
color: $-primary-accent-color;
}
.LP-Text{
color: inherit;
}
}
}
}
.LP-Link__Icon{
width: 2em;
height: 2em;
fill: $-primary-accent-color;
line-height: 5em;
}
.LP-LinkList__Item .LP-Link__Icon{
position: relative;
top: .7em;
margin-right: .6em;
}

View File

@ -0,0 +1,3 @@
{
"title": "LinkList"
}

View File

@ -0,0 +1,19 @@
<ul class="LP-LinkList__List">
<li class="LP-LinkList__Item"><a href="#" class="LP-Link"><span class="LP-Text">Google Maps</span></a></li>
<li class="LP-LinkList__Item"><a href="#" class="LP-Link"><span class="LP-Text">OSM</span></a></li>
<li class="LP-LinkList__Item"><a href="#" class="LP-Link"><span class="LP-Text">TIM Online</span></a></li>
<li class="LP-LinkList__Item"><a href="#" class="LP-Link"><span class="LP-Text">Google Maps</span></a></li>
<li class="LP-LinkList__Item"><a href="#" class="LP-Link"><span class="LP-Text">OSM</span></a></li>
<li class="LP-LinkList__Item"><a href="#" class="LP-Link LP-Link--iconized">
<div class="LP-Link__IconWrapper">
<svg class="LP-Link__Icon" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 512 512"
xml:space="preserve">
<g>
<path d="M492,236H276V20c0-11.046-8.954-20-20-20c-11.046,0-20,8.954-20,20v216H20c-11.046,0-20,8.954-20,20s8.954,20,20,20h216
v216c0,11.046,8.954,20,20,20s20-8.954,20-20V276h216c11.046,0,20-8.954,20-20C512,244.954,503.046,236,492,236z" />
</g>
</svg>
</div>
<span class="LP-Text">Link hinzufügen</span></a></li>
</ul>

View File

@ -1,35 +1,37 @@
<div class="LP-Content"> <div class="LP-Content__Wrapper">
{{> @headline headline='Explorere the latest locations'}} <div class="LP-Content">
<ul class="LP-Place__Grid"> {{> @headline headline='Explorere the latest locations'}}
<li class="LP-Place__Item"> <ul class="LP-Place__Grid">
<a href="#" class="LP-Link">{{> @place image='/images/photo_2020-04-09_18-27-13.jpg' title='Haus Maikotten' location='Münster (westfalen)' description='Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'}}</a> <li class="LP-Place__Item">
</li> <a href="#" class="LP-Link">{{> @place image='/images/photo_2020-04-09_18-27-13.jpg' title='Haus Maikotten' location='Münster (westfalen)' description='Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'}}</a>
<li class="LP-Place__Item"> </li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/Bildschirmfoto_von_2020-07-13_11-03-07.png' title='Kokerei in Hamm' location='Hamm (westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/Bildschirmfoto_von_2020-07-13_20-15-00.png' title='Noch ein Zementwerk' location='Beckum (Westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/photo_2020-05-02_18-11-21.jpg' title='Zementwerk Mersmann' location='Beckum (Westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/Bildschirmfoto_von_2020-07-13_20-15-00.png' title='Noch ein Zementwerk' location='Beckum (Westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/photo_2020-04-09_18-27-13.jpg' title='Haus Maikotten' location='Münster (westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/Bildschirmfoto_von_2020-07-13_20-15-00.png' title='Noch ein Zementwerk' location='Beckum (Westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/photo_2020-05-02_18-11-21.jpg' title='Zementwerk Mersmann' location='Beckum (Westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/Bildschirmfoto_von_2020-07-13_20-15-00.png' title='Noch ein Zementwerk' location='Beckum (Westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/Bildschirmfoto_von_2020-07-13_11-03-07.png' title='Kokerei in Hamm' location='Hamm (westfalen)' }}</a> <a href="#" class="LP-Link">{{> @place image='/images/Bildschirmfoto_von_2020-07-13_11-03-07.png' title='Kokerei in Hamm' location='Hamm (westfalen)' }}</a>
</li> </li>
<li class="LP-Place__Item"> </ul>
<a href="#" class="LP-Link">{{> @place image='/images/Bildschirmfoto_von_2020-07-13_20-15-00.png' title='Noch ein Zementwerk' location='Beckum (Westfalen)' }}</a> </div>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/photo_2020-05-02_18-11-21.jpg' title='Zementwerk Mersmann' location='Beckum (Westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/Bildschirmfoto_von_2020-07-13_20-15-00.png' title='Noch ein Zementwerk' location='Beckum (Westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/photo_2020-04-09_18-27-13.jpg' title='Haus Maikotten' location='Münster (westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/Bildschirmfoto_von_2020-07-13_20-15-00.png' title='Noch ein Zementwerk' location='Beckum (Westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/photo_2020-05-02_18-11-21.jpg' title='Zementwerk Mersmann' location='Beckum (Westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/Bildschirmfoto_von_2020-07-13_20-15-00.png' title='Noch ein Zementwerk' location='Beckum (Westfalen)' }}</a>
</li>
<li class="LP-Place__Item">
<a href="#" class="LP-Link">{{> @place image='/images/Bildschirmfoto_von_2020-07-13_11-03-07.png' title='Kokerei in Hamm' location='Hamm (westfalen)' }}</a>
</li>
</ul>
</div> </div>

View File

@ -1,4 +1,8 @@
.LP-MainContainer { .LP-MainContainer {
margin: 0 auto; margin: 0 auto;
max-width: 1280px; max-width: 1280px;
}
.LP-HorizontalLine{
color: $-secondary-color;
} }

View File

@ -1,10 +1,9 @@
.LP-PlaceOverview{ .LP-PlaceOverview{
.LP-PlaceOverview__Info{ .LP-PlaceOverview__Info{
margin-bottom: 40px;
.LP-PlaceOveriew__Image{ .LP-PlaceOveriew__Image{
width: 600px; width: 700px;
height: 400px; height: 450px;
box-shadow: 0 0 10px $-secondary-color; box-shadow: 0 0 10px $-secondary-color;
object-fit: cover; object-fit: cover;
@ -13,7 +12,7 @@
margin-bottom: 35px; margin-bottom: 35px;
} }
.LP-PlaceOverView__Description{ .LP-PlaceOverView__Description{
padding: 0 25px; padding: 0px;
position: relative; position: relative;
top: -15px; top: -15px;
} }
@ -21,18 +20,48 @@
.LP-PlaceOverView__ImageList{ .LP-PlaceOverView__ImageList{
list-style-type: none; list-style-type: none;
display: flex; display: grid;
flex-wrap: wrap; grid-template-columns: repeat(auto-fit,300px);
margin: 0px;
padding: 0px;
.LP-PlaceOverView__ImageItem{ .LP-PlaceOverView__ImageItem{
padding: 15px;
img { img {
box-shadow: 0 0 5px $-secondary-color; box-shadow: 0 0 5px $-secondary-color;
height: 200px; height: 200px;
width: 300px; width: 290px;
object-fit: cover; object-fit: cover;
margin-top:10px;
} }
} }
} }
}
@media (max-width: 1290px){
.LP-PlaceOverview{
.LP-PlaceOverview__Info{
.LP-TextSection{
margin-top: -100px;
}
.LP-Headline{
position: relative;
top: -400px;
margin-bottom: 100px;
width: 100vw;
display: block;
}
.LP-PlaceOveriew__Image{
float: none;
width: calc(100vw - 30px);
margin: 0;
padding: 0;
margin-left: 7px;
}
}
}
} }

View File

@ -2,45 +2,57 @@
<div class="LP-PlaceOverview__Info"> <div class="LP-PlaceOverview__Info">
<img class="LP-PlaceOveriew__Image" src="/images/Bildschirmfoto_von_2020-07-13_20-15-00.png"> <img class="LP-PlaceOveriew__Image" src="/images/Bildschirmfoto_von_2020-07-13_20-15-00.png">
<article class="LP-PlaceOverView__Description"> <article class="LP-PlaceOverView__Description">
{{> @textsection headline='Kokerei Wiescherhöfen' text='Do you see any Teletubbies in here? Do you see a slender plastic tag clipped to my shirt with my name printed on it? Do you see a little Asian child with a blank expression on his face sitting outside on a mechanical helicopter that shakes when you put quarters in it? No? Well, thats what you see at a toy store. And you must think youre in a toy store, because youre here shopping for an infant named Jeb. My moneys in that office, right? If she start giving me some bullshit about it aint there, and we got to go someplace else and get it, Im gonna shoot you in the head then and there. Then Im gonna shoot that bitch in the kneecaps, find out where my goddamn money is. She gonna tell me too. Hey, look at me when Im talking to you, motherfucker. You listen: we go in there, and that nigga Winston or anybody else is in there, you the first motherfucker to get shot. You understand? <div class="LP-TextSection">
{{> @headline--main headline='Kokerei Wiescherhöfen'}}
{{> @text text='Do you see any Teletubbies in here? Do you see a slender plastic tag clipped to my shirt with my name printed on it? Do you see a little Asian child with a blank expression on his face sitting outside on a mechanical helicopter that shakes when you put quarters in it? No? Well, thats what you see at a toy store. And you must think youre in a toy store, because youre here shopping for an infant named Jeb. My moneys in that office, right? If she start giving me some bullshit about it aint there, and we got to go someplace else and get it, Im gonna shoot you in the head then and there. Then Im gonna shoot that bitch in the kneecaps, find out where my goddamn money is. She gonna tell me too. Hey, look at me when Im talking to you, motherfucker. You listen: we go in there, and that nigga Winston or anybody else is in there, you the first motherfucker to get shot. You understand?
Do you see any Teletubbies in here? Do you see a slender plastic tag clipped to my shirt with my name printed on it? Do you see a little Asian child with a blank expression on his face sitting outside on a mechanical helicopter that shakes when you put quarters in it? No? Well, thats what you see at a toy store. And you must think youre in a toy store, because youre here shopping for an infant named Jeb.Do you see any Teletubbies in here? Do you see a slender plastic tag clipped to my shirt with my name printed on it? Do you see a little Asian child with a blank expression on his face sitting outside on a mechanical helicopter that shakes when you put quarters in it? No? Well, thats what you see at a toy store. And you must think youre in a toy store, because youre here shopping for an infant named Jeb. My moneys in that office, right? If she start giving me some bullshit about it aint there, and we got to go someplace else and get it, Im gonna shoot you in the head then and there. Then Im gonna shoot that bitch in the kneecaps, find out where my goddamn money is. She gonna tell me too. Hey, look at me when Im talking to you, motherfucker. You listen: we go in there, and that nigga Winston or anybody else is in there, you the first motherfucker to get shot. You understand? Do you see any Teletubbies in here? Do you see a slender plastic tag clipped to my shirt with my name printed on it? Do you see a little Asian child with a blank expression on his face sitting outside on a mechanical helicopter that shakes when you put quarters in it? No? Well, thats what you see at a toy store. And you must think youre in a toy store, because youre here shopping for an infant named Jeb.Do you see any Teletubbies in here? Do you see a slender plastic tag clipped to my shirt with my name printed on it? Do you see a little Asian child with a blank expression on his face sitting outside on a mechanical helicopter that shakes when you put quarters in it? No? Well, thats what you see at a toy store. And you must think youre in a toy store, because youre here shopping for an infant named Jeb. My moneys in that office, right? If she start giving me some bullshit about it aint there, and we got to go someplace else and get it, Im gonna shoot you in the head then and there. Then Im gonna shoot that bitch in the kneecaps, find out where my goddamn money is. She gonna tell me too. Hey, look at me when Im talking to you, motherfucker. You listen: we go in there, and that nigga Winston or anybody else is in there, you the first motherfucker to get shot. You understand?
Do you see any Teletubbies in here? Do you see a slender plastic tag clipped to my shirt with my name printed on it? Do you see a little Asian child with a blank expression on his face sitting outside on a mechanical helicopter that shakes when you put quarters in it? No? Well, thats what you see at a toy store. And you must think youre in a toy store, because youre here shopping for an infant named Jeb.'}} Do you see any Teletubbies in here? Do you see a slender plastic tag clipped to my shirt with my name printed on it? Do you see a little Asian child with a blank expression on his face sitting outside on a mechanical helicopter that shakes when you put quarters in it? No? Well, thats what you see at a toy store. And you must think youre in a toy store, because youre here shopping for an infant named Jeb.'}}
</div>
</article> </article>
</div> </div>
<article> <article>
{{> @headline headline='Map Links'}} {{> @headline headline='Sicherheitsmaßnahmen'}}
<a class="LP-Link" href="https://www.google.com/maps?q={{object.latitude}},{{object.longitude}}" target="blank"><span class="LP-Text">Google Maps</span></a> <div class="LP-Content__Wrapper">
<a class="LP-Link" href="https://www.tim-online.nrw.de/tim-online2/?center={{object.latitude}},{{object.longitude}}&icon=true&bg=dop" target="blank"><span class="LP-Text">TIM Online (GER/NRW Only)</span></a> <div class="LP-Content">
<a class="LP-Link" href="http://www.openstreetmap.org/?mlat={{object.latitude}}&mlon={{object.longitude}}&zoom=16" target="blank"><span class="LP-Text">Open Street Map</span></a> {{> @securitymeasurelist}}
</div>
</div>
</article> </article>
<article> <article>
{{> @headline headline='Sicherheitsmaßnahmen'}} {{> @headline headline='Links'}}
{{> @securitymeasurelist}} <div class="LP-Content__Wrapper">
<div class="LP-Content">
{{> @linklist}}
</div>
</div>
</article>
<article class="">
{{> @headline headline='Bilder'}}
<div class="LP-Content__Wrapper">
<div class=" LP-Content">
<ul class="LP-PlaceOverView__ImageList">
<li class="LP-PlaceOverView__ImageItem">
<a href="#"><img src="/images/Bildschirmfoto_von_2020-07-13_11-03-07.png"></a>
</li>
<li class="LP-PlaceOverView__ImageItem">
<a href="#"><img src="/images/photo_2020-05-02_18-11-21.jpg"></a>
</li>
<li class="LP-PlaceOverView__ImageItem">
<a href="#"><img src="/images/Bildschirmfoto_von_2020-07-13_11-03-07.png"></a>
</li>
<li class="LP-PlaceOverView__ImageItem">
<a href="#"><img src="/images/Bildschirmfoto_von_2020-07-13_20-15-00.png"></a>
</li>
<li class="LP-PlaceOverView__ImageItem">
<a href="#"><img src="/images/Bildschirmfoto_von_2020-07-13_11-03-07.png"></a>
</li>
<li class="LP-PlaceOverView__ImageItem">
<a href="#"><img src="/images/photo_2020-05-02_18-11-21.jpg"></a>
</li>
</ul>
</div>
</div>
</article> </article>
<ul class="LP-PlaceOverView__ImageList">
<li class="LP-PlaceOverView__ImageItem">
<a href="#"><img src="/images/Bildschirmfoto_von_2020-07-13_11-03-07.png"></a>
</li>
<li class="LP-PlaceOverView__ImageItem">
<a href="#"><img src="/images/photo_2020-05-02_18-11-21.jpg"></a>
</li>
<li class="LP-PlaceOverView__ImageItem">
<a href="#"><img src="/images/Bildschirmfoto_von_2020-07-13_11-03-07.png"></a>
</li>
<li class="LP-PlaceOverView__ImageItem">
<a href="#"><img src="/images/Bildschirmfoto_von_2020-07-13_20-15-00.png"></a>
</li>
<li class="LP-PlaceOverView__ImageItem">
<a href="#"><img src="/images/Bildschirmfoto_von_2020-07-13_11-03-07.png"></a>
</li>
<li class="LP-PlaceOverView__ImageItem">
<a href="#"><img src="/images/photo_2020-05-02_18-11-21.jpg"></a>
</li>
</ul>
{{> @headline headline='Lade deine Bilder hoch'}}
<form>
<input type="file"/>
</form>
</article> </article>

View File

@ -7,6 +7,9 @@
</head> </head>
<body> <body>
{{> @header}} {{> @header}}
<article class="LP-MainContainer">{{{ yield }}}</article> <article class="LP-MainContainer">
{{{ yield }}}
</article>
{{> @footer}}
</body> </body>
</html> </html>

View File

@ -9,13 +9,21 @@
.LP-Link .LP-Text:hover { .LP-Link .LP-Text:hover {
color: #C09F80; } color: #C09F80; }
.LP-Link__IconWrapper {
display: inline; }
.LP-Headline { .LP-Headline {
font-family: "Trebuchet MS", Helvetica, sans-serif; font-family: "Trebuchet MS", Helvetica, sans-serif;
color: #565656; color: #565656;
font-size: 1.7rem; font-size: 1.7rem;
padding-top: 0px; padding-top: 0px;
margin-top: 0px; margin-top: 0px;
padding-bottom: 0.2rem; } padding-bottom: 0px;
margin-bottom: 0px; }
.LP-Headline--main {
position: relative;
top: 2rem;
font-size: 2rem; }
.LP-Headline--inline { .LP-Headline--inline {
display: inline; } display: inline; }
@ -44,7 +52,11 @@
object-fit: contain; } object-fit: contain; }
.LP-Content { .LP-Content {
padding: 15px; } padding: 35px; }
@media (max-width: 1290px) {
.LP-Content {
padding: 15px; } }
.LP-TextSection .LP-Text { .LP-TextSection .LP-Text {
line-height: 1.4rem; } line-height: 1.4rem; }
@ -89,7 +101,8 @@
.LP-SecurityMeasure__List .LP-SecurityMeasure__Item { .LP-SecurityMeasure__List .LP-SecurityMeasure__Item {
margin: 5px 5px; margin: 5px 5px;
padding: 5px 8px; padding: 5px 8px;
background-color: #D7CEC7; } background-color: #D7CEC7;
border-radius: 2px; }
.LP-SecurityMeasure__List .LP-SecurityMeasure__Item .LP-Text { .LP-SecurityMeasure__List .LP-SecurityMeasure__Item .LP-Text {
font-family: "Trebuchet MS", Helvetica, sans-serif; font-family: "Trebuchet MS", Helvetica, sans-serif;
font-size: 1.2rem; } font-size: 1.2rem; }
@ -103,6 +116,8 @@
max-width: 300px; max-width: 300px;
width: 35%; width: 35%;
object-fit: contain; } object-fit: contain; }
.LP-Header .LP-Header__Logo {
margin: 25px; }
.LP-Menu__List { .LP-Menu__List {
list-style-type: none; list-style-type: none;
@ -178,33 +193,113 @@
height: 168px; height: 168px;
width: 280px; } width: 280px; }
.LP-LinkList__List {
list-style-type: none;
display: grid;
grid-template-columns: repeat(auto-fit, 300px);
margin: 0;
padding: 0; }
.LP-LinkList__List .LP-LinkList__Item {
border-left: 1px solid #C09F80;
width: 100%;
margin-top: 12px;
height: 55px; }
.LP-LinkList__List .LP-LinkList__Item .LP-Link {
padding: 1em 0 1em 1em;
width: calc(100% - $-link-padding);
display: block;
color: #565656; }
.LP-LinkList__List .LP-LinkList__Item .LP-Link--iconized {
padding-top: 0;
padding-bottom: 1.1em; }
.LP-LinkList__List .LP-LinkList__Item .LP-Link--iconized:hover {
background-color: #ccc !important; }
.LP-LinkList__List .LP-LinkList__Item .LP-Link--iconized .LP-Text {
padding-top: .1em; }
.LP-LinkList__List .LP-LinkList__Item .LP-Link:hover {
background-color: #f9f9f9;
color: #76323F; }
.LP-LinkList__List .LP-LinkList__Item .LP-Link .LP-Text {
color: inherit; }
.LP-Link__Icon {
width: 2em;
height: 2em;
fill: #76323F;
line-height: 5em; }
.LP-LinkList__Item .LP-Link__Icon {
position: relative;
top: .7em;
margin-right: .6em; }
.LP-Footer {
margin-top: 75px;
width: 100%;
background-color: #565656;
padding: 25px; }
.LP-Footer .LP-LinkList__List {
display: flex;
align-items: center;
justify-content: center; }
.LP-Footer .LP-LinkList__List .LP-LinkList__Item {
border: none;
padding: 5px;
width: auto; }
.LP-Footer .LP-LinkList__List .LP-LinkList__Item .LP-Text {
color: #f9f9f9;
font-size: 17px; }
.LP-Footer .LP-LinkList__List .LP-LinkList__Item .LP-Link {
display: inline; }
.LP-Footer .LP-LinkList__List .LP-LinkList__Item .LP-Link:hover {
background-color: inherit; }
.LP-MainContainer { .LP-MainContainer {
margin: 0 auto; margin: 0 auto;
max-width: 1280px; } max-width: 1280px; }
.LP-PlaceOverview .LP-PlaceOverview__Info { .LP-HorizontalLine {
margin-bottom: 40px; } color: #565656; }
.LP-PlaceOverview .LP-PlaceOverview__Info .LP-PlaceOveriew__Image {
width: 600px; .LP-PlaceOverview .LP-PlaceOverview__Info .LP-PlaceOveriew__Image {
height: 400px; width: 700px;
box-shadow: 0 0 10px #565656; height: 450px;
object-fit: cover; box-shadow: 0 0 10px #565656;
float: right; object-fit: cover;
margin-left: 35px; float: right;
margin-bottom: 35px; } margin-left: 35px;
.LP-PlaceOverview .LP-PlaceOverview__Info .LP-PlaceOverView__Description { margin-bottom: 35px; }
padding: 0 25px;
position: relative; .LP-PlaceOverview .LP-PlaceOverview__Info .LP-PlaceOverView__Description {
top: -15px; } padding: 0px;
position: relative;
top: -15px; }
.LP-PlaceOverview .LP-PlaceOverView__ImageList { .LP-PlaceOverview .LP-PlaceOverView__ImageList {
list-style-type: none; list-style-type: none;
display: flex; display: grid;
flex-wrap: wrap; } grid-template-columns: repeat(auto-fit, 300px);
.LP-PlaceOverview .LP-PlaceOverView__ImageList .LP-PlaceOverView__ImageItem { margin: 0px;
padding: 15px; } padding: 0px; }
.LP-PlaceOverview .LP-PlaceOverView__ImageList .LP-PlaceOverView__ImageItem img { .LP-PlaceOverview .LP-PlaceOverView__ImageList .LP-PlaceOverView__ImageItem img {
box-shadow: 0 0 5px #565656; box-shadow: 0 0 5px #565656;
height: 200px; height: 200px;
width: 300px; width: 290px;
object-fit: cover; } object-fit: cover;
margin-top: 10px; }
@media (max-width: 1290px) {
.LP-PlaceOverview .LP-PlaceOverview__Info .LP-TextSection {
margin-top: -100px; }
.LP-PlaceOverview .LP-PlaceOverview__Info .LP-Headline {
position: relative;
top: -400px;
margin-bottom: 100px;
width: 100vw;
display: block; }
.LP-PlaceOverview .LP-PlaceOverview__Info .LP-PlaceOveriew__Image {
float: none;
width: calc(100vw - 30px);
margin: 0;
padding: 0;
margin-left: 7px; } }

BIN
public/images/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB