Merge pull request 'feat(index): adiciona o estilo para o footer no desktop e mobile' (#19) from feature/footer into main
Reviewed-on: #19
This commit is contained in:
commit
6b344b3fc2
@ -1,5 +1,6 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@ -222,6 +223,38 @@ body {
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
/*footer*/
|
||||
.footer-page {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
|
||||
background: #000;
|
||||
padding: 38px 0;
|
||||
}
|
||||
|
||||
.footer-icons {
|
||||
list-style: none;
|
||||
|
||||
display: flex;
|
||||
gap: 16px;
|
||||
|
||||
padding-bottom: 16px;
|
||||
}
|
||||
|
||||
.footer-icons > li:last-child {
|
||||
margin: auto 0;
|
||||
}
|
||||
|
||||
.footer-text {
|
||||
color: #BDBDBD;
|
||||
font-weight: 400;
|
||||
font-size: 10px;
|
||||
line-height: 12px;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*mobile*/
|
||||
@media screen and (max-width: 1024px) {
|
||||
|
||||
@ -338,12 +371,16 @@ body {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.footer-text {
|
||||
width: 261px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/*4K*/
|
||||
@media screen and (min-width: 2500px) {
|
||||
|
||||
/*top infocard*/
|
||||
/*infocard e cards*/
|
||||
.top-infocard-subtitle {
|
||||
font-size: 64px;
|
||||
line-height: 80px;
|
||||
@ -366,4 +403,10 @@ body {
|
||||
font-size: 64px;
|
||||
line-height: 78px;
|
||||
}
|
||||
|
||||
/*footer*/
|
||||
.footer-text {
|
||||
font-size: 20px;
|
||||
line-height: 24px;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user