php-gallery/css/scss/_footer.scss

38 lines
617 B
SCSS
Raw Normal View History

2022-08-12 16:54:35 +00:00
/*
|-------------------------------------------------------------
| FOOTER
|-------------------------------------------------------------
*/
2022-08-11 18:28:52 +00:00
footer {
2022-08-12 16:54:35 +00:00
margin: 0 auto;
2022-08-11 18:28:52 +00:00
2022-09-21 20:29:03 +00:00
width: auto;
2022-08-11 18:28:52 +00:00
2022-09-20 15:47:23 +00:00
text-align: center;
2022-09-21 20:29:03 +00:00
font-size: 12px;
text-transform: uppercase;
display: flex; flex-direction: row;
2022-08-15 10:56:05 +00:00
p {
2022-09-21 20:29:03 +00:00
margin: 0.2rem;
padding: 0;
2022-08-15 10:56:05 +00:00
text-decoration: none;
font-family: $font-body;
}
2022-08-12 16:54:35 +00:00
a {
2022-09-21 20:29:03 +00:00
margin: 0.2rem;
padding: 0;
2022-08-11 18:28:52 +00:00
2022-08-12 16:54:35 +00:00
text-decoration: none;
2022-08-11 18:28:52 +00:00
2022-08-12 16:54:35 +00:00
font-family: $font-body;
&:hover {
color: $orange;
}
}
}