mirror of
https://git.kittycat.homes/zoe/hugo-batsite.git
synced 2024-08-15 03:18:24 +00:00
clean up js, start adding hamburger
This commit is contained in:
parent
449533a7e2
commit
ae4f82eb03
2 changed files with 55 additions and 5 deletions
|
@ -196,6 +196,30 @@ header {
|
||||||
.posttitle a:hover {
|
.posttitle a:hover {
|
||||||
background-color: transparent; }
|
background-color: transparent; }
|
||||||
|
|
||||||
|
button {
|
||||||
|
color: #413c74;
|
||||||
|
background-color: #ff8ad0;
|
||||||
|
border-color: #413c74; }
|
||||||
|
button:hover {
|
||||||
|
transition: 0.2s;
|
||||||
|
background-color: #413c74;
|
||||||
|
color: #ff8ad0; }
|
||||||
|
button.light {
|
||||||
|
color: #ffffff;
|
||||||
|
background-color: #413c74;
|
||||||
|
border-color: #ffffff; }
|
||||||
|
button.light:hover {
|
||||||
|
transition: 0.2s;
|
||||||
|
background-color: #ffffff;
|
||||||
|
color: #413c74; }
|
||||||
|
|
||||||
|
#pageindicator {
|
||||||
|
background-color: transparent; }
|
||||||
|
#pageindicator.light {
|
||||||
|
color: #ffffff; }
|
||||||
|
#pageindicator:hover {
|
||||||
|
background-color: transparent; }
|
||||||
|
|
||||||
html,
|
html,
|
||||||
body {
|
body {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -238,7 +262,8 @@ p code {
|
||||||
margin-left: 24pt;
|
margin-left: 24pt;
|
||||||
justify-self: left;
|
justify-self: left;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
display: inline-flex; }
|
display: inline-flex;
|
||||||
|
align-items: center; }
|
||||||
|
|
||||||
#footer-right {
|
#footer-right {
|
||||||
margin-top: auto;
|
margin-top: auto;
|
||||||
|
@ -310,6 +335,17 @@ header {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-top: 42pt; }
|
padding-top: 42pt; }
|
||||||
|
|
||||||
|
#hamburger-bg {
|
||||||
|
position: fixed;
|
||||||
|
background-color: red;
|
||||||
|
opacity: 40%;
|
||||||
|
width: 100%;
|
||||||
|
height: calc(100% - 42pt);
|
||||||
|
left: 0pt;
|
||||||
|
top: 0pt;
|
||||||
|
right: 0;
|
||||||
|
transition: 0s; }
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: CaskaydiaCove;
|
font-family: CaskaydiaCove;
|
||||||
src: url(/font/CaskaydiaCove.ttf); }
|
src: url(/font/CaskaydiaCove.ttf); }
|
||||||
|
@ -320,7 +356,8 @@ header {
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: CaskaydiaCove;
|
font-family: CaskaydiaCove;
|
||||||
font-size: 12pt; }
|
font-size: 12pt;
|
||||||
|
text-overflow: clip; }
|
||||||
|
|
||||||
p,
|
p,
|
||||||
.postdescription,
|
.postdescription,
|
||||||
|
@ -402,13 +439,15 @@ input:checked + label:after {
|
||||||
input:checked + label::after {
|
input:checked + label::after {
|
||||||
content: "滛"; }
|
content: "滛"; }
|
||||||
|
|
||||||
.footer-nav-item {
|
.footer-nav-item,
|
||||||
|
button {
|
||||||
border-radius: 100%;
|
border-radius: 100%;
|
||||||
height: 1em;
|
height: 1em;
|
||||||
width: 1em;
|
width: 1em;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border-style: solid; }
|
border-style: solid;
|
||||||
|
cursor: pointer; }
|
||||||
|
|
||||||
.togglelabel {
|
.togglelabel {
|
||||||
border: solid; }
|
border: solid; }
|
||||||
|
@ -450,3 +489,14 @@ p a,
|
||||||
ul a {
|
ul a {
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
padding: 0.12em; }
|
padding: 0.12em; }
|
||||||
|
|
||||||
|
#hamburger-button {
|
||||||
|
display: none; }
|
||||||
|
|
||||||
|
@media screen and (max-width: 640pt) {
|
||||||
|
#footer-center,
|
||||||
|
#darkmode-toggle,
|
||||||
|
#darkmode-toggle-label {
|
||||||
|
display: none; }
|
||||||
|
#hamburger-button {
|
||||||
|
display: flex; } }
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit b8901b68d750983f47b50274396a9296ccfb052a
|
Subproject commit 137f5a2b05aaad9fab2da9ba0d6abb42dd016110
|
Loading…
Reference in a new issue