Feature/Autenticacao #1

Merged
WilliamSimao merged 10 commits from Feature/Autenticacao into main 2022-12-19 03:17:14 +00:00
2 changed files with 66 additions and 18 deletions
Showing only changes of commit 7044763223 - Show all commits

View File

@ -6,8 +6,13 @@
.link-cart { .link-cart {
a { a {
color: $color-black; font-family: $font-family-secundary;
font-size: 14px; font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 16px;
text-transform: uppercase;
color: $color-black-500;
&:hover { &:hover {
color: lighen($color-black, 10); color: lighen($color-black, 10);
@ -20,64 +25,101 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
text-transform: uppercase;
font-family: $font-family-secundary;
font-weight: 400;
line-height: 23px;
h3 { h3 {
margin-bottom: 16px; margin-bottom: 16px;
span { span {
color: #303030; color: $color-black-500;
font-size: 24px; font-size: 20px;
} }
small { small {
color: $color-gray4; color: $color-black-500;
} font-size: 20px; }
} }
} }
.icon-lock {
right: 0;
}
.client-email { .client-email {
margin: 0 0 16px; margin: 0 0 16px;
width: 562px;
input { input {
width: 443px;
height: 50px;
box-shadow: none; box-shadow: none;
color: $color-black; color: $color-black-500;
font-family: $font-family; font-family: $font-family;
padding: 0 16px; padding: 0 16px;
border: 2px solid $color-gray3; border: 1px solid $color-black-500;
box-sizing: border-box; box-sizing: border-box;
border-radius: 5px; border-radius: 5px 0px 0px 5px;
font-size: 12px;
font-weight: 400;
line-height: 16px;
@media (max-width: 490px) { @media (max-width: 490px) {
width: auto; width: auto;
} }
} }
button { button {
background-color: $color-black; background-color: $color-blue-200;
border-radius: 5px; border-radius: 0px 5px 5px 0px;
border: none; border: none;
font-family: $font-family; font-family: $font-family;
height: 54px; font-size: 14px;
line-height: 19px;
font-weight: 700;
color: $color-black-500;
text-transform: uppercase;
transform: all 0.2s linear;
height: 50px;
right: 0; right: 0;
top: 0; top: 0;
width: 126.76px;
@media (max-width: 490px) { @media (max-width: 490px) {
height: 48px; height: 48px;
margin: 0; margin: 0;
position: absolute; position: absolute;
} }
&:hover {
background-color: lighten($color-blue-100, 5);
}
&:active {
background-color: darken($color-blue-100, 5);
}
} }
span.help.error { span.help.error {
color: red; color: red;
font-family: $font-family;
font-weight: 700;
font-size: 12px;
line-height: 16px;
text-transform: lowercase;
} }
} }
.emailInfo { .emailInfo {
width: 400px;
padding: 16px; padding: 16px;
background-color: $color-white; background-color: $color-white;
border: 1px solid $color-gray4; border: 1px solid $color-black-500;
border-radius: 0; border-radius: 5px;
h3 { h3 {
color: #303030; color: #303030;
@ -89,11 +131,16 @@
li { li {
span { span {
color: $color-black; font-family: $font-family;
font-style: normal;
font-weight: 700;
font-size: 12px;
line-height: 16px;
color: $color-black-500;
} }
i::before { i::before {
color: $color-black; color: $color-blue-200;
font-size: 1rem; font-size: 1rem;
opacity: 1; opacity: 1;
} }
@ -101,7 +148,7 @@
} }
i::before { i::before {
color: $color-black; color: $color-gray8;
font-size: 6rem; font-size: 6rem;
opacity: 0.5; opacity: 0.5;
} }

View File

@ -17,6 +17,7 @@ $color-gray4: #8d8d8d;
$color-gray5: #e5e5e5; $color-gray5: #e5e5e5;
$color-gray6: #989898; $color-gray6: #989898;
$color-gray7: #c4c4c4; $color-gray7: #c4c4c4;
$color-gray8: #2e2d2d;
$color-blue-100: #6fd5f2; $color-blue-100: #6fd5f2;
$color-blue-200: #00C8FF; $color-blue-200: #00C8FF;