hugo-batsite/public/scss/main.css

50 lines
674 B
CSS
Raw Normal View History

2022-04-09 22:18:40 +00:00
body.light {
background-color: #ffe7d6;
color: #73464c; }
2022-04-09 16:00:23 +00:00
2022-04-09 22:18:40 +00:00
body.dark {
background-color: black;
color: white; }
2022-04-09 16:00:23 +00:00
@font-face {
2022-04-09 22:18:40 +00:00
font-family: CaskaydiaCove;
src: url(/font/CaskaydiaCove.ttf); }
* {
font-family: CaskaydiaCove;
font-size: 16pt; }
h1 {
font-size: 42pt; }
2022-04-09 16:00:23 +00:00
a {
text-decoration: none; }
2022-04-09 22:18:40 +00:00
footer {
font-size: 20pt; }
2022-04-09 16:00:23 +00:00
html, body {
height: 100%;
flex: auto; }
footer {
2022-04-09 22:18:40 +00:00
height: 10%;
min-height: 24pt;
position: sticky;
2022-04-09 16:00:23 +00:00
display: flex;
align-items: center;
2022-04-09 22:18:40 +00:00
justify-content: center; }
#footer-content {
width: 100%; }
2022-04-09 16:00:23 +00:00
#content {
min-height: 90%; }
2022-04-09 22:18:40 +00:00
#footer-right {
justify-self: right; }
2022-04-09 16:00:23 +00:00
* {
padding: 0;
margin: 0; }