forked from M3-Academy/practice-time-landing-page
36 lines
642 B
CSS
36 lines
642 B
CSS
footer {
|
|
width: 100%;
|
|
height: 128px;
|
|
left: 0px;
|
|
top: 435px;
|
|
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: 415px) {
|
|
footer span {
|
|
width: 261px;
|
|
text-align: center;
|
|
}
|
|
} |