forked from M3-Academy/desafio-react-e-typescript
style: trocado cor hexadecimal por variável sass. #9
@ -31,7 +31,7 @@
|
||||
|
||||
&::placeholder {
|
||||
font-weight: 400;
|
||||
color: $primary-600;
|
||||
color: $primary-500;
|
||||
}
|
||||
}
|
||||
|
||||
@ -50,7 +50,6 @@
|
||||
height: 35px;
|
||||
width: 35px;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -5,7 +5,7 @@
|
||||
justify-content: space-between;
|
||||
height: 76px;
|
||||
align-items: center;
|
||||
border-bottom: 1px solid $primary-600;
|
||||
border-bottom: 1px solid $primary-500;
|
||||
padding: 0 100px;
|
||||
background-color: $black;
|
||||
|
||||
@ -23,4 +23,3 @@
|
||||
padding: 25px 16px;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,9 @@
|
||||
@import "../../styles/utils/variables.scss";
|
||||
|
||||
.footerBottom {
|
||||
padding: 15px 100px;
|
||||
background-color: #000;
|
||||
color: #fff;
|
||||
background-color: $black;
|
||||
color: $white;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
@ -87,7 +89,7 @@
|
||||
}
|
||||
|
||||
span {
|
||||
border-left: 1px solid #c4c4c4;
|
||||
border-left: 1px solid $primary-500;
|
||||
height: 25px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
@ -1,3 +1,5 @@
|
||||
@import "../../styles/utils/variables.scss";
|
||||
|
||||
.footerTop {
|
||||
padding: 50px 100px;
|
||||
display: flex;
|
||||
@ -34,7 +36,7 @@
|
||||
font-weight: 400;
|
||||
line-height: 14px;
|
||||
text-decoration: none;
|
||||
color: #303030;
|
||||
color: $primary-100;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
font-size: 24px;
|
||||
|
@ -1,6 +1,8 @@
|
||||
@import "../../styles/utils/variables.scss";
|
||||
|
||||
.newsletter {
|
||||
margin-top: 70px;
|
||||
border: 1px solid #000;
|
||||
border: 1px solid $black;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
display: flex;
|
||||
@ -57,12 +59,12 @@
|
||||
@media (max-width: 1024px) {
|
||||
margin: 0 0 16px 0;
|
||||
border-radius: 0;
|
||||
border: 1px solid #c4c4c4;
|
||||
border: 1px solid $primary-500;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
&::placeholder {
|
||||
color: #c4c4c4;
|
||||
color: $primary-500;
|
||||
}
|
||||
}
|
||||
|
||||
@ -70,8 +72,8 @@
|
||||
height: 42px;
|
||||
width: 126px;
|
||||
border-radius: 4px;
|
||||
background: #000000;
|
||||
color: #fff;
|
||||
background: $black;
|
||||
color: $white;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
line-height: 14px;
|
||||
|
@ -1,3 +1,5 @@
|
||||
@import "../../styles/utils/variables.scss";
|
||||
|
||||
.buttonsGlobal {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@ -21,7 +23,7 @@
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
border-radius: 50%;
|
||||
background-color: #c4c4c4;
|
||||
background-color: $primary-500;
|
||||
cursor: pointer;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
|
@ -29,7 +29,7 @@
|
||||
font-weight: 400;
|
||||
line-height: 14px;
|
||||
text-transform: uppercase;
|
||||
color: $primary-600;
|
||||
color: $primary-500;
|
||||
|
||||
@media (min-width: 2500px) {
|
||||
font-size: 24px;
|
||||
|
@ -1,11 +1,7 @@
|
||||
$black: #000000;
|
||||
$white: #ffffff;
|
||||
$primary-900: #ff0000;
|
||||
$primary-800: #f9f9f9;
|
||||
$primary-700: #f2f2f2;
|
||||
$primary-600: #c4c4c4;
|
||||
$primary-500: #c6c6c6;
|
||||
$primary-400: #919191;
|
||||
$primary-500: #c4c4c4;
|
||||
$primary-300: #7d7d7d;
|
||||
$primary-200: #5e5e5e;
|
||||
$primary-100: #303030;
|
||||
|
Loading…
Reference in New Issue
Block a user