mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2025-01-14 18:25:17 +00:00
38 lines
518 B
SCSS
38 lines
518 B
SCSS
footer {
|
|
margin: 0;
|
|
padding: 0.5rem 1rem;
|
|
|
|
width: 100%;
|
|
height: 2.5rem;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 1rem;
|
|
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: $black200;
|
|
|
|
border-radius: 0 0 0.5rem 0.5rem;
|
|
|
|
p,
|
|
a {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
font-family: $font-body;
|
|
font-size: 0.8rem;
|
|
font-weight: 800;
|
|
font-stretch: semi-condensed;
|
|
|
|
color: $white;
|
|
|
|
display: block;
|
|
|
|
text-transform: uppercase;
|
|
}
|
|
}
|