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

View File

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