forked from M3-Academy/challenge-landing-page
34 lines
611 B
CSS
34 lines
611 B
CSS
|
footer {
|
||
|
width: 100%;
|
||
|
height: 128px;
|
||
|
bottom: 0;
|
||
|
background: #000000;
|
||
|
position: relative;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
footer .social-media {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
margin-bottom: 16px;
|
||
|
width: 104px;
|
||
|
}
|
||
|
|
||
|
footer span {
|
||
|
font-weight: 400;
|
||
|
font-size: 10px;
|
||
|
line-height: 12px;
|
||
|
text-transform: uppercase;
|
||
|
color: #BDBDBD;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 1025px) {
|
||
|
footer span {
|
||
|
width: 261px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
}
|