1
0
mirror of https://gitlab.com/MisterBiggs/blog.git synced 2025-06-16 07:06:46 +00:00
2019-08-08 22:44:23 -07:00

26 lines
459 B
SCSS

.footer{
padding:0;
color:$light;
margin:0;
background: $dark;
width:100%;
font-size: 1.05rem;
min-height:75px;
a {
color: $theme;
opacity: 0.8;
transition: opacity 0.3s ease-in-out;
&:hover {
text-decoration: underline;
opacity: 1;
}
}
&_inner{
display: flex;
justify-content: space-between;
padding: 1.5rem;
@media screen and (max-width: 567px) {
flex-direction: column;
}
}
}