mirror of
https://git.kittycat.homes/zoe/hugo-batsite.git
synced 2024-08-15 03:18:24 +00:00
finish most of the colorswitch thigns
This commit is contained in:
parent
82d2cd2caf
commit
edc13f82d5
18 changed files with 264 additions and 85 deletions
|
@ -1,37 +1,49 @@
|
|||
body {
|
||||
background-color: #352b42;
|
||||
color: #f2f0e5; }
|
||||
body.light {
|
||||
background-color: #ffe7d6;
|
||||
color: #73464c; }
|
||||
|
||||
a {
|
||||
color: #c2d368; }
|
||||
|
||||
footer, footer a {
|
||||
background-color: #f2f0e5;
|
||||
color: #352b42; }
|
||||
body.dark {
|
||||
background-color: black;
|
||||
color: white; }
|
||||
|
||||
@font-face {
|
||||
font-family: Caskaydia Cove;
|
||||
src: url(../fonts/Caskaydia); }
|
||||
font-family: CaskaydiaCove;
|
||||
src: url(/font/CaskaydiaCove.ttf); }
|
||||
|
||||
* {
|
||||
font-family: CaskaydiaCove;
|
||||
font-size: 16pt; }
|
||||
|
||||
h1 {
|
||||
font-size: 42pt; }
|
||||
|
||||
a {
|
||||
text-decoration: none; }
|
||||
|
||||
footer a {
|
||||
text-decoration: underline; }
|
||||
footer {
|
||||
font-size: 20pt; }
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
flex: auto; }
|
||||
|
||||
footer {
|
||||
height: 10%;
|
||||
min-height: 24pt;
|
||||
position: sticky;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 10%; }
|
||||
justify-content: center; }
|
||||
|
||||
#footer-content {
|
||||
width: 100%; }
|
||||
|
||||
#content {
|
||||
min-height: 90%; }
|
||||
|
||||
#footer-right {
|
||||
justify-self: right; }
|
||||
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue