finished for now

This commit is contained in:
Tancre
2020-11-02 13:40:06 +01:00
parent a1db00e76c
commit 7504e96f6b
74 changed files with 2163 additions and 631 deletions

View File

@ -8,8 +8,13 @@ body {
color: #333;
}
img{
img {
max-width: 100%;
height: auto;
}
a {
font-weight: 300;
text-decoration: none;
}

View File

@ -20,7 +20,7 @@
@include atLarge{
position: relative;
bottom: -70px;
bottom: -60px;
left: 50%;
transform: translateX(-50%);
}

View File

@ -12,6 +12,7 @@
&--medium {
margin-bottom:1.5rem;
margin-top: 1.5rem;
@include atSmall(){
font-size: 1.1rem;
@ -25,4 +26,12 @@
font-size: 1.25rem;
}
}
&--pickupday {
margin: 30px 0px;
@include atMedium(){
margin: 0px;
}
}
}

View File

@ -27,7 +27,7 @@
}
p a {
font-weight: 700;
font-weight: 500;
}
}

View File

@ -39,6 +39,10 @@
font-size: 1.6rem;
}
}
&__img{
margin: 30px 0px;
}
&--centered {
text-align: center;

View File

@ -66,7 +66,7 @@
&__title{
font-weight: 300;
font-size: 1.7rem;
font-size: 1.4rem;
margin-bottom: 45px;
@include atMedium(){
@ -115,6 +115,7 @@
@include atLarge{
width: 225px;
margin-left: 80px;
margin-top: 100px;
}
}

View File

@ -0,0 +1,55 @@
.modal {
position: fixed;
z-index: 5;
background:rgba(255, 255, 255, .94);
top: 0;
bottom: 0;
left: 0;
right: 0;
opacity: 0;
visibility: hidden;
transform: scale(1.2);
transition: all .3s ease-out;
&--is-visible {
opacity: 1;
visibility: visible;
transform: scale(1);
}
&__inner {
position: absolute;
width: 100%;
top: 50%;
transform: translateY(-50%);
text-align: center;
}
&__title {
font-weight: 500;
font-size: 2.2rem;
}
&__description {
text-align: center;
font-size: 1.3rem;
font-weight: 300;
line-height: 1.65;
}
&__close {
position: absolute;
top: 15px;
right: 15px;
font-size: 2rem;
transform: scaleX(1.2);
transform-origin: 100% 0;
color: $myOrange;
&:hover {
color: $myOrange;
cursor: pointer;
}
}
}

View File

@ -17,4 +17,5 @@
@import './modules/arrow';
@import './modules/footer';
@import './modules/sprite';
@import './modules/reveal-item';
@import './modules/reveal-item';
@import './modules/modal';