40 lines
662 B
CSS
40 lines
662 B
CSS
footer a{
|
|
color: var(--c-text);
|
|
text-decoration: none;
|
|
}
|
|
footer a i{
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
footer a:hover i{
|
|
color: var(--c-text);
|
|
text-decoration: none;
|
|
}
|
|
footer{
|
|
font-family: "Roboto Mono", monospace;
|
|
|
|
background-color: var(--c-boxes);
|
|
|
|
margin-top: 2em;
|
|
display: flex;
|
|
|
|
color: white;
|
|
align-items: center;
|
|
justify-content: space-evenly;
|
|
}
|
|
footer address{
|
|
padding: 1em;
|
|
font-style: normal;
|
|
}
|
|
footer .contacts{
|
|
font-size: 2em;
|
|
|
|
}
|
|
|
|
@media only screen and (max-width: 990px){
|
|
footer{
|
|
flex-direction: column;
|
|
padding-bottom: 1em;
|
|
padding-top: 1em;
|
|
}
|
|
} |