mirror of
https://github.com/seigler/generative
synced 2025-07-26 22:56:10 +00:00
23 lines
335 B
CSS
23 lines
335 B
CSS
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
background-color: #000;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
max-width: 100vw;
|
|
color: white;
|
|
background-color: black;
|
|
padding: 0.5em 1em;
|
|
border-top-right-radius: 0.5em;
|
|
}
|