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

This commit is contained in:
2020-08-04 18:36:34 +02:00
4 changed files with 47 additions and 45 deletions

View File

@@ -11,11 +11,12 @@
padding: 8px;
margin-bottom: $-margin-bottom;
&:focus, &:active{
&:focus, &:active, &:invalid{
margin-bottom: $-margin-bottom - 1px;
border-bottom: 2px solid $-wine-red;
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;
position: relative;
top: -$-margin-bottom;
&:before{
content: '* ';
}
}
&--error{

View File

@@ -1,11 +1,12 @@
.LP-Form{
max-width: 900px;
.LP-Form__Fieldset{
border: none;
.LP-Form__Legend{
margin: 0;
padding: 0;
padding: 0;
font-family: $-primary-sans-serif-font;
font-size: 21px;
}
.LP-Form__Composition{
@@ -18,23 +19,19 @@
padding: 6px 15px;
&--wider{
flex: 5 1 200px;
flex: 5 1;
}
&--wide{
flex: 4 1 150px;
flex: 4 1;
}
&--narrow{
flex: 2 0 50px;
flex: 2 0;
}
&--narrower{
flex: 1 0 25px;
}
input{
width: 100%;
flex: 1 0;
}
}
}

View File

@@ -1,8 +1,15 @@
.LP-MainContainer {
margin: 0 auto;
max-width: 1280px;
max-width: 1280px;
}
.LP-HorizontalLine{
color: $-grey;
}
@media(max-width: $-viewport-small){
.LP-MainContainer {
width: 100%;
}
}