Merge branch 'master' of mowoe.com:reverend/lostplaces-frontend
This commit is contained in:
commit
ad17e48049
@ -11,11 +11,12 @@
|
|||||||
padding: 8px;
|
padding: 8px;
|
||||||
margin-bottom: $-margin-bottom;
|
margin-bottom: $-margin-bottom;
|
||||||
|
|
||||||
&:focus, &:active{
|
&:focus, &:active, &:invalid{
|
||||||
margin-bottom: $-margin-bottom - 1px;
|
margin-bottom: $-margin-bottom - 1px;
|
||||||
border-bottom: 2px solid $-wine-red;
|
border-bottom: 2px solid $-wine-red;
|
||||||
background-color: $-almost-white;
|
background-color: $-almost-white;
|
||||||
border-radius: 3px 3px 0 0;
|
border-radius: 3px 3px 0 0;
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -31,10 +32,6 @@
|
|||||||
padding: 3px;
|
padding: 3px;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -$-margin-bottom;
|
top: -$-margin-bottom;
|
||||||
|
|
||||||
&:before{
|
|
||||||
content: '* ';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&--error{
|
&--error{
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
.LP-Form{
|
.LP-Form{
|
||||||
max-width: 900px;
|
|
||||||
.LP-Form__Fieldset{
|
.LP-Form__Fieldset{
|
||||||
border: none;
|
border: none;
|
||||||
|
|
||||||
.LP-Form__Legend{
|
.LP-Form__Legend{
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
font-family: $-primary-sans-serif-font;
|
||||||
|
font-size: 21px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.LP-Form__Composition{
|
.LP-Form__Composition{
|
||||||
@ -18,23 +19,19 @@
|
|||||||
padding: 6px 15px;
|
padding: 6px 15px;
|
||||||
|
|
||||||
&--wider{
|
&--wider{
|
||||||
flex: 5 1 200px;
|
flex: 5 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--wide{
|
&--wide{
|
||||||
flex: 4 1 150px;
|
flex: 4 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--narrow{
|
&--narrow{
|
||||||
flex: 2 0 50px;
|
flex: 2 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--narrower{
|
&--narrower{
|
||||||
flex: 1 0 25px;
|
flex: 1 0;
|
||||||
}
|
|
||||||
|
|
||||||
input{
|
|
||||||
width: 100%;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,3 +6,10 @@
|
|||||||
.LP-HorizontalLine{
|
.LP-HorizontalLine{
|
||||||
color: $-grey;
|
color: $-grey;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media(max-width: $-viewport-small){
|
||||||
|
.LP-MainContainer {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -86,11 +86,12 @@
|
|||||||
border-bottom: 1px solid #565656;
|
border-bottom: 1px solid #565656;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
margin-bottom: 30px; }
|
margin-bottom: 30px; }
|
||||||
.LP-Input .LP-Input__Field:focus, .LP-Input .LP-Input__Field:active {
|
.LP-Input .LP-Input__Field:focus, .LP-Input .LP-Input__Field:active, .LP-Input .LP-Input__Field:invalid {
|
||||||
margin-bottom: 29px;
|
margin-bottom: 29px;
|
||||||
border-bottom: 2px solid #76323F;
|
border-bottom: 2px solid #76323F;
|
||||||
background-color: #f9f9f9;
|
background-color: #f9f9f9;
|
||||||
border-radius: 3px 3px 0 0; }
|
border-radius: 3px 3px 0 0;
|
||||||
|
box-shadow: none; }
|
||||||
.LP-Input .LP-Input__Label {
|
.LP-Input .LP-Input__Label {
|
||||||
font-family: Montserrat, Helvetica, sans-serif;
|
font-family: Montserrat, Helvetica, sans-serif;
|
||||||
font-size: 16px; }
|
font-size: 16px; }
|
||||||
@ -101,8 +102,6 @@
|
|||||||
padding: 3px;
|
padding: 3px;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -30px; }
|
top: -30px; }
|
||||||
.LP-Input .LP-Input__Message:before {
|
|
||||||
content: '* '; }
|
|
||||||
.LP-Input--error .LP-Input__Field {
|
.LP-Input--error .LP-Input__Field {
|
||||||
margin-bottom: 25px;
|
margin-bottom: 25px;
|
||||||
border-bottom: 2px solid #76323F;
|
border-bottom: 2px solid #76323F;
|
||||||
@ -376,13 +375,13 @@
|
|||||||
.LP-Footer .LP-LinkList__List .LP-LinkList__Item .LP-Link:hover {
|
.LP-Footer .LP-LinkList__List .LP-LinkList__Item .LP-Link:hover {
|
||||||
background-color: inherit; }
|
background-color: inherit; }
|
||||||
|
|
||||||
.LP-Form {
|
.LP-Form .LP-Form__Fieldset {
|
||||||
max-width: 900px; }
|
|
||||||
.LP-Form .LP-Form__Fieldset {
|
|
||||||
border: none; }
|
border: none; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Legend {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Legend {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0; }
|
padding: 0;
|
||||||
|
font-family: Montserrat, Helvetica, sans-serif;
|
||||||
|
font-size: 21px; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
@ -391,15 +390,13 @@
|
|||||||
flex: 3 1 100px;
|
flex: 3 1 100px;
|
||||||
padding: 6px 15px; }
|
padding: 6px 15px; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--wider {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--wider {
|
||||||
flex: 5 1 200px; }
|
flex: 5 1; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--wide {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--wide {
|
||||||
flex: 4 1 150px; }
|
flex: 4 1; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--narrow {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--narrow {
|
||||||
flex: 2 0 50px; }
|
flex: 2 0; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--narrower {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field--narrower {
|
||||||
flex: 1 0 25px; }
|
flex: 1 0; }
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition .LP-Form__Field input {
|
|
||||||
width: 100%; }
|
|
||||||
|
|
||||||
@media (max-width: 650px) {
|
@media (max-width: 650px) {
|
||||||
.LP-Form .LP-Form__Fieldset .LP-Form__Composition--breakable {
|
.LP-Form .LP-Form__Fieldset .LP-Form__Composition--breakable {
|
||||||
@ -423,6 +420,10 @@
|
|||||||
.LP-HorizontalLine {
|
.LP-HorizontalLine {
|
||||||
color: #565656; }
|
color: #565656; }
|
||||||
|
|
||||||
|
@media (max-width: 650px) {
|
||||||
|
.LP-MainContainer {
|
||||||
|
width: 100%; } }
|
||||||
|
|
||||||
.LP-PlaceOverview .LP-PlaceOverview__Info .LP-PlaceOveriew__Image {
|
.LP-PlaceOverview .LP-PlaceOverview__Info .LP-PlaceOveriew__Image {
|
||||||
width: 700px;
|
width: 700px;
|
||||||
box-shadow: 0 0 10px #565656;
|
box-shadow: 0 0 10px #565656;
|
||||||
|
Loading…
Reference in New Issue
Block a user