feature/body #2

Merged
YahToth merged 6 commits from feature/body into main 2022-12-19 08:58:30 +00:00
2 changed files with 64 additions and 44 deletions
Showing only changes of commit 7acbaf2209 - Show all commits

View File

@ -1,37 +1,55 @@
.empty-cart {
font-family: $font-family;
&-content {
color: $color-black;
font-family: $font-family;
font-style: normal;
font-weight: 700;
font-size: 24px;
line-height: 33px;
text-align: center;
text-transform: uppercase;
color: $color-black-1000;
@include mq(md, max) {
padding: 0 16px;
}
}
&-title {
font-size: 20px;
font-size: 24px;
line-height: 32px;
font-weight: 700;
text-transform: uppercase;
margin: 0;
margin-bottom: 32px;
margin-top: 170px;
padding: 0;
}
&-message {
display: none;
}
&-links {
.link-choose-products {
background: $color-black;
border: none;
border-radius: 5px;
transition: ease-in 0.22s all;
outline: none;
font-family: $font-family;
font-style: normal;
font-weight: 500;
font-family: $font-family-secundary;
background: $color-white-1000;
border: 1px solid $color-black-1000;
border-radius: 0;
transition: ease-in-out 0.2s all;
font-size: 0px;
padding: 15px 65px 17px;
margin: 0;
line-height: 0;
&::after {
content: "Continuar comprando";
font-size: 14px;
font-weight: 400;
line-height: 16px;
text-align: center;
letter-spacing: 0.05em;
color: $color-white;
font-family: $font-family-secundary;
color: $color-black-1000;
text-transform: uppercase;
&:hover {
background: lighten($color-black, 5);
}
}
}

View File

@ -2,12 +2,14 @@
@import url("https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
$font-family: "Open Sans", sans-serif;
$font-family-secundary:"Tenor Sans", sans-serif;
$font-family-secundary: "Tenor Sans", sans-serif;
/* Colors */
$color-black: #292929;
$color-black-1000: #000;
$color-white: #fff;
$color-white-1000: white;
$color-gray: #6c6c6c;
$color-gray2: #7d7d7d;
@ -26,7 +28,7 @@ $grid-breakpoints: (
sm: 576px,
md: 768px,
lg: 992px,
xl: 1200px
xl: 1200px,
) !default;
$z-index: (
@ -34,5 +36,5 @@ $z-index: (
level2: 10,
level3: 15,
level4: 20,
level5: 25
level5: 25,
) !default;