mirror of
https://git.kittycat.homes/zoe/hugo-batsite.git
synced 2024-08-15 03:18:24 +00:00
49 lines
674 B
CSS
49 lines
674 B
CSS
body.light {
|
|
background-color: #ffe7d6;
|
|
color: #73464c; }
|
|
|
|
body.dark {
|
|
background-color: black;
|
|
color: white; }
|
|
|
|
@font-face {
|
|
font-family: CaskaydiaCove;
|
|
src: url(/font/CaskaydiaCove.ttf); }
|
|
|
|
* {
|
|
font-family: CaskaydiaCove;
|
|
font-size: 16pt; }
|
|
|
|
h1 {
|
|
font-size: 42pt; }
|
|
|
|
a {
|
|
text-decoration: none; }
|
|
|
|
footer {
|
|
font-size: 20pt; }
|
|
|
|
html, body {
|
|
height: 100%;
|
|
flex: auto; }
|
|
|
|
footer {
|
|
height: 10%;
|
|
min-height: 24pt;
|
|
position: sticky;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center; }
|
|
|
|
#footer-content {
|
|
width: 100%; }
|
|
|
|
#content {
|
|
min-height: 90%; }
|
|
|
|
#footer-right {
|
|
justify-self: right; }
|
|
|
|
* {
|
|
padding: 0;
|
|
margin: 0; }
|