mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2025-01-15 10:45:14 +00:00
33 lines
568 B
CSS
33 lines
568 B
CSS
/*
|
|
Footer
|
|
*/
|
|
|
|
footer {
|
|
margin: auto; padding: 1rem;
|
|
width: auto;
|
|
|
|
display: flex; flex-direction: row; flex-wrap: wrap;
|
|
justify-content: space-around; align-items: center;
|
|
|
|
background-color: var(--bg); color: var(--fg);
|
|
|
|
border-radius: var(--rad);
|
|
|
|
box-shadow: var(--shadow);
|
|
|
|
border: 0.2rem solid var(--green);
|
|
outline: 0.5rem solid var(--bg);
|
|
}
|
|
footer * {
|
|
margin: 0; padding: 0;
|
|
display: block;
|
|
}
|
|
footer div {
|
|
width: 18rem;
|
|
justify-content: center; align-content: center;
|
|
text-align: center;
|
|
}
|
|
footer div h3 {
|
|
margin-bottom: 0.5rem;
|
|
}
|