feature/body #3

Merged
SavioCarvalhoMoraes merged 14 commits from feature/body into development 2022-12-18 22:32:55 +00:00
2 changed files with 14 additions and 8 deletions
Showing only changes of commit d27ef7a97c - Show all commits

View File

@ -355,12 +355,13 @@
}
.srp-main-title {
font-family: $font-family;
margin: 32px 0 12px;
font-style: normal;
font-weight: normal;
font-size: 24px;
line-height: 28px;
color: $color-gray2;
color: $color-black-100;
@include mq(md, max) {
margin-top: 0;
@ -718,6 +719,7 @@
&.info,
&.monetary {
font-family: $font-family-secundary;
font-style: normal;
font-weight: normal;
font-size: 14px;
@ -739,10 +741,12 @@
tfoot {
td.info,
td.monetary {
font-family: $font-family;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
font-weight: 700;
color: $color-black;
}
}
@ -777,18 +781,18 @@
}
a {
font-family: $font-family;
font-family: $font-family-secundary;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 14px;
color: $color-blue;
color: $color-black-100;
}
}
.btn-place-order-wrapper {
a {
background: $color-green;
background: $color-blue-300;
border: none;
border-radius: 5px;
display: block;
@ -798,15 +802,17 @@
&:hover {
background-color: darken($color-green, 5);
cursor: pointer;
}
&:after {
content: "finalizar compra";
font-family: $font-family;
font-weight: 500;
font-size: 13px;
font-weight: 700;
font-size: 14px;
font-style: normal;
letter-spacing: 0.05em;
color: $color-white;
color: $color-black-100;
text-transform: uppercase;
vertical-align: middle;
line-height: 19px;

View File

@ -6,7 +6,7 @@ $font-family-secundary: "Tenor Sans", sans-serif;
/* Colors */
$color-black: #292929;
$color-black-100: #000;
$color-white: #fff;
$color-gray: #6c6c6c;