53 lines
834 B
Plaintext
53 lines
834 B
Plaintext
.footer {
|
|
display: flex;
|
|
padding: 0 calc((100% - 1160px)/ 2);
|
|
height: 80px;
|
|
.Copyright {
|
|
display: flex;
|
|
margin-left: 18px;
|
|
color: #898fa0;
|
|
font-size: 14px;
|
|
flex-basis: 0;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
}
|
|
.contact {
|
|
display: flex;
|
|
flex-basis: 0;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
flex-grow: 1;
|
|
a {
|
|
display: flex;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
width: 30px;
|
|
height: 30px;
|
|
color: #898fa0;
|
|
justify-content: center;
|
|
align-items: center;
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width:600px) {
|
|
.footer {
|
|
padding: 2em;
|
|
flex-direction: column-reverse;
|
|
.Copyright {
|
|
margin: auto;
|
|
}
|
|
.contact {
|
|
margin: auto;
|
|
flex-wrap: wrap;
|
|
a {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
}
|
|
} |