mirror of
https://git.kittycat.homes/zoe/hugo-battheme.git
synced 2024-08-15 03:25:18 +00:00
fallbacks for noscript
This commit is contained in:
parent
5cc0c2e449
commit
797ce896ad
10 changed files with 66 additions and 6 deletions
|
@ -53,7 +53,6 @@ a {
|
|||
background-color: $dark-fg;
|
||||
}
|
||||
}
|
||||
|
||||
a.footer-nav-item.active,
|
||||
a.footer-nav-item:hover {
|
||||
&.light {
|
||||
|
|
|
@ -32,6 +32,7 @@ footer {
|
|||
#content ul,
|
||||
#content ol,
|
||||
#content table,
|
||||
#content nav,
|
||||
.embed,
|
||||
code,
|
||||
.postdescription,
|
||||
|
@ -50,6 +51,10 @@ hr,
|
|||
height: 100%;
|
||||
}
|
||||
|
||||
#replacement-burger{
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#content .embed{
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
|
@ -107,7 +112,6 @@ p code{
|
|||
}
|
||||
|
||||
#footer-right * {
|
||||
display: flex;
|
||||
margin-top: auto;
|
||||
margin-bottom: auto;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
@import "./noscript";
|
||||
@import "./colors";
|
||||
@import "./layout";
|
||||
@import "./font";
|
||||
@import "./style";
|
||||
@import "./responsive"
|
||||
@import "./responsive";
|
||||
|
|
4
assets/scss/noscript.scss
Normal file
4
assets/scss/noscript.scss
Normal file
|
@ -0,0 +1,4 @@
|
|||
.flexjs,
|
||||
.iflexjs {
|
||||
display: none;
|
||||
}
|
|
@ -68,6 +68,12 @@ button{
|
|||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
#replacement-burger{
|
||||
width: 24pt;
|
||||
height: 24pt;
|
||||
}
|
||||
|
||||
.togglelabel {
|
||||
border: solid;
|
||||
}
|
||||
|
@ -112,6 +118,7 @@ h6 {
|
|||
}
|
||||
|
||||
.postdescription,
|
||||
#content nav,
|
||||
#content p,
|
||||
#content ul,
|
||||
#content ol,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue