mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2025-01-04 05:45:59 +00:00
34 lines
566 B
SCSS
34 lines
566 B
SCSS
/*
|
|
|-------------------------------------------------------------
|
|
| FOOTER
|
|
|-------------------------------------------------------------
|
|
*/
|
|
footer {
|
|
@include flexLeft(space-around);
|
|
|
|
margin: 0 auto;
|
|
|
|
width: calc(100% - 1.4rem);
|
|
|
|
p {
|
|
margin: 0 0.5rem;
|
|
|
|
text-decoration: none;
|
|
font-size: 16px;
|
|
|
|
font-family: $font-body;
|
|
}
|
|
|
|
a {
|
|
margin: 0 0.5rem;
|
|
|
|
text-decoration: none;
|
|
font-size: 16px;
|
|
|
|
font-family: $font-body;
|
|
|
|
&:hover {
|
|
color: $orange;
|
|
}
|
|
}
|
|
} |