Compare commits
No commits in common. "71fda3ddbfe19f5221c4ef735b33b46a25d649ed" and "ac0951ba6eb76e793faa14cebf7a9c32b1822786" have entirely different histories.
71fda3ddbf
...
ac0951ba6e
@ -1,9 +1,8 @@
|
|||||||
@import 'link/link';
|
@import 'link/link';
|
||||||
@import 'headline/headline';
|
@import 'headline/headline';
|
||||||
@import 'paragraph/paragraph';
|
@import 'text/text';
|
||||||
@import 'icon/icon';
|
@import 'icon/icon';
|
||||||
@import 'button/button';
|
@import 'button/button';
|
||||||
@import 'checkbox/checkbox';
|
@import 'checkbox/checkbox';
|
||||||
@import 'input/input';
|
@import 'input/input';
|
||||||
@import 'image/image';
|
@import 'image/image';
|
||||||
@import 'logo/logo';
|
|
||||||
|
@ -15,13 +15,5 @@
|
|||||||
|
|
||||||
&--inline{
|
&--inline{
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--teaser{
|
|
||||||
font-family: $-primary-sans-serif-font;
|
|
||||||
color: $-secondary-color;
|
|
||||||
font-size: 1rem;
|
|
||||||
padding: 0px;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
}
|
}
|
@ -9,12 +9,6 @@
|
|||||||
"context": {
|
"context": {
|
||||||
"modifier": "--main"
|
"modifier": "--main"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "teaser",
|
|
||||||
"context": {
|
|
||||||
"modifier": "--teaser"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -1,28 +1,7 @@
|
|||||||
{
|
{
|
||||||
"context": {
|
"context": {
|
||||||
"label": "Enter your value here",
|
"label": "Enter your value here",
|
||||||
"placeholder": "A sample value"
|
"placeholder": "A sample value",
|
||||||
},
|
"message": "Please fill in anything valuable"
|
||||||
"variants": [
|
}
|
||||||
{
|
|
||||||
"name": "With message",
|
|
||||||
"context":{
|
|
||||||
"message": "Please fill in anything valuable"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "disabled",
|
|
||||||
"context": {
|
|
||||||
"modifier": "--disabled",
|
|
||||||
"disabled": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "error",
|
|
||||||
"context": {
|
|
||||||
"modifier": "--error",
|
|
||||||
"message": "This field is required"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
@ -1,11 +1,28 @@
|
|||||||
<div class="LP-Input LP-Input{{modifier}}">
|
<h3>Regular with message</h3>
|
||||||
|
<div class="LP-Input">
|
||||||
<label for="input123" class="LP-Input__Label">{{label}}</label>
|
<label for="input123" class="LP-Input__Label">{{label}}</label>
|
||||||
<input type="text" id="input123" class="LP-Input__Field" placeholder="{{placeholder}}"
|
<input type="text" id="input123" class="LP-Input__Field" placeholder="{{placeholder}}"/>
|
||||||
{{#if disabled}}
|
<span class="LP-Input__Message">{{message}}</span>
|
||||||
disabled="disabled"
|
</div>
|
||||||
{{/if}}
|
<h3>Regular without message</h3>
|
||||||
/>
|
<div class="LP-Input">
|
||||||
{{#if message}}
|
<label for="input123" class="LP-Input__Label">{{label}}</label>
|
||||||
|
<input type="text" id="input123" class="LP-Input__Field" placeholder="{{placeholder}}"/>
|
||||||
|
</div>
|
||||||
|
<h3>Regular without placeholder</h3>
|
||||||
|
<div class="LP-Input">
|
||||||
|
<label for="input123" class="LP-Input__Label">{{label}}</label>
|
||||||
|
<input type="text" id="input123" class="LP-Input__Field" placeholder=""/>
|
||||||
|
<span class="LP-Input__Message">{{message}}</span>
|
||||||
|
</div>
|
||||||
|
<h3>Disabled</h3>
|
||||||
|
<div class="LP-Input LP-Input--disabled">
|
||||||
|
<label for="input123" class="LP-Input__Label">{{label}}</label>
|
||||||
|
<input type="text" id="input123" class="LP-Input__Field" placeholder="{{placeholder}}" disabled="disabled"/>
|
||||||
|
</div>
|
||||||
|
<h3>Error</h3>
|
||||||
|
<div class="LP-Input LP-Input--error">
|
||||||
|
<label for="input123" class="LP-Input__Label">{{label}}</label>
|
||||||
|
<input type="text" id="input123" class="LP-Input__Field" placeholder="{{placeholder}}"/>
|
||||||
<span class="LP-Input__Message">{{message}}</span>
|
<span class="LP-Input__Message">{{message}}</span>
|
||||||
{{/if}}
|
|
||||||
</div>
|
</div>
|
@ -1,13 +0,0 @@
|
|||||||
.LP-Paragraph {
|
|
||||||
color: black;
|
|
||||||
font-family: $-primary-serif-font;
|
|
||||||
font-size: 1.2rem;
|
|
||||||
|
|
||||||
&--detail{
|
|
||||||
font-family: $-primary-sans-serif-font;
|
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
margin-top: 5px;
|
|
||||||
font-size: 0.9rem;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1 +0,0 @@
|
|||||||
<p class="LP-Paragraph LP-Paragraph{{modifier}}">{{text}}</p>
|
|
5
components/01_Atoms/text/_text.scss
Normal file
5
components/01_Atoms/text/_text.scss
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
.LP-Text {
|
||||||
|
color: black;
|
||||||
|
font-family: $-primary-serif-font;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
}
|
@ -1,14 +1,5 @@
|
|||||||
{
|
{
|
||||||
"context": {
|
"context": {
|
||||||
"text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet."
|
"text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet."
|
||||||
},
|
}
|
||||||
"variants": [
|
|
||||||
{
|
|
||||||
"name": "Detail",
|
|
||||||
"context":{
|
|
||||||
"text": "Hamm (Westf)",
|
|
||||||
"modifier": "--detail"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
1
components/01_Atoms/text/text.hbs
Normal file
1
components/01_Atoms/text/text.hbs
Normal file
@ -0,0 +1 @@
|
|||||||
|
<p class="LP-Text LP-Content">{{text}}</p>
|
@ -1,3 +1,5 @@
|
|||||||
|
@import 'logo/logo';
|
||||||
@import 'textSection/textSection';
|
@import 'textSection/textSection';
|
||||||
@import 'placeTeaser/placeTeaser';
|
@import 'placeTeaser/placeTeaser';
|
||||||
@import 'securityMeasureList/securityMeasureList';
|
@import 'securityMeasureList/securityMeasureList';
|
||||||
|
@import 'form/form';
|
@ -1,22 +1,42 @@
|
|||||||
.LP-Place{
|
.LP-Place{
|
||||||
width: 280px;
|
|
||||||
|
|
||||||
.LP-Place__Image{
|
.LP-Place__Image{
|
||||||
|
width: 280px;
|
||||||
height: 165px;
|
height: 165px;
|
||||||
object-fit: fill;
|
object-fit: fill;
|
||||||
}
|
}
|
||||||
|
|
||||||
.LP-Place__Meta{
|
.LP-Place__Assets{
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
margin-top: 0.8rem;
|
||||||
|
|
||||||
|
padding: 0 10px;
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.LP-Place__Description{
|
.LP-Place__Info{
|
||||||
font-family: $-primary-sans-serif-accent-font;
|
|
||||||
color: $-secondary-color;
|
.LP-Place__Title{
|
||||||
display: none;
|
font-family: $-primary-sans-serif-font;
|
||||||
}
|
color: $-secondary-color;
|
||||||
|
font-size: 1rem;
|
||||||
|
padding: 0px;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.LP-Place__Description{
|
||||||
|
font-family: $-primary-sans-serif-accent-font;
|
||||||
|
color: $-secondary-color;
|
||||||
|
}
|
||||||
|
|
||||||
|
.LP-Place__Detail{
|
||||||
|
font-family: $-primary-sans-serif-font;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
margin-top: 5px;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -2,7 +2,6 @@
|
|||||||
"context": {
|
"context": {
|
||||||
"image": "/images/photo_2020-05-02_18-11-21.jpg",
|
"image": "/images/photo_2020-05-02_18-11-21.jpg",
|
||||||
"title": "Kokerei Wiescherhöfen",
|
"title": "Kokerei Wiescherhöfen",
|
||||||
"location": "Hamm (Westfalen)",
|
"location": "Hamm (Westfalen)"
|
||||||
"description": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. "
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -2,20 +2,21 @@
|
|||||||
<div class="LP-Place__Image">
|
<div class="LP-Place__Image">
|
||||||
<img class="LP-Image" src="{{image}}"/>
|
<img class="LP-Image" src="{{image}}"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="LP-Place__Meta">
|
<div class="LP-Place__Detail">
|
||||||
<div class="LP-Place__Info">
|
<div class="LP-Place__Info">
|
||||||
<span class="LP-Place__Title">{{> @headline headline=title modifier='--teaser'}}</span>
|
<h3 class="LP-Place__Title">{{title}}</h3>
|
||||||
<span class="LP-Place__Detail" >{{> @paragraph text=location modifier='--detail'}}</span>
|
<p class="LP-Place__Detail" >{{location}}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="LP-Place__Description">
|
{{# if description}}
|
||||||
{{> @paragraph text=description}}
|
<p class="LP-Place__Description">
|
||||||
</div>
|
{{description}}
|
||||||
<div class="LP-Place__Icons">
|
</p>
|
||||||
<ul class="LP-Icon__List">
|
{{/if}}
|
||||||
<li class="LP-Icon__Item"><img class="LP-Icon" src="/icons/favourite.svg"/></li>
|
|
||||||
<li class="LP-Icon__Item"><img class="LP-Icon" src="/icons/location.svg"/></li>
|
<ul class="LP-Icon__List">
|
||||||
<li class="LP-Icon__Item"><img class="LP-Icon" src="/icons/flag.svg"/></li>
|
<li class="LP-Icon__Item"><img class="LP-Icon" src="/icons/favourite.svg"/></li>
|
||||||
</ul>
|
<li class="LP-Icon__Item"><img class="LP-Icon" src="/icons/location.svg"/></li>
|
||||||
</div>
|
<li class="LP-Icon__Item"><img class="LP-Icon" src="/icons/flag.svg"/></li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
@ -4,5 +4,4 @@
|
|||||||
@import 'placeGrid/placeGrid';
|
@import 'placeGrid/placeGrid';
|
||||||
@import 'placeList/placeList';
|
@import 'placeList/placeList';
|
||||||
@import 'linkList/linkList';
|
@import 'linkList/linkList';
|
||||||
@import 'footer/footer';
|
@import 'footer/footer';
|
||||||
@import 'form/form';
|
|
@ -6,6 +6,10 @@
|
|||||||
<title>Preview</title>
|
<title>Preview</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{{ yield }}}
|
{{> @header}}
|
||||||
|
<article class="LP-MainContainer">
|
||||||
|
{{{ yield }}}
|
||||||
|
</article>
|
||||||
|
{{> @footer}}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user