mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2024-12-29 10:56:12 +00:00
38 lines
617 B
SCSS
38 lines
617 B
SCSS
/*
|
|
|-------------------------------------------------------------
|
|
| FOOTER
|
|
|-------------------------------------------------------------
|
|
*/
|
|
footer {
|
|
margin: 0 auto;
|
|
|
|
width: auto;
|
|
|
|
text-align: center;
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
|
|
display: flex; flex-direction: row;
|
|
|
|
p {
|
|
margin: 0.2rem;
|
|
padding: 0;
|
|
|
|
text-decoration: none;
|
|
|
|
font-family: $font-body;
|
|
}
|
|
|
|
a {
|
|
margin: 0.2rem;
|
|
padding: 0;
|
|
|
|
text-decoration: none;
|
|
|
|
font-family: $font-body;
|
|
|
|
&:hover {
|
|
color: $orange;
|
|
}
|
|
}
|
|
} |