Don't always embed Disqus

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2022-10-28 22:31:04 +02:00
parent bd969ed638
commit 7950584977
3 changed files with 77 additions and 11 deletions
+19
View File
@@ -43,6 +43,10 @@ $theme-breadcrumbs-link-color-active: hsl($theme-hue, 100%, 85%);
$theme-footer-background: hsl($theme-hue, 33%, 10.0%);
$theme-footer-color: hsl($theme-hue, 0%, 80%);
$theme-code-background: hsl($theme-hue, 50%, 5%);
$theme-button-background: hsl($theme-hue, 100%, 30.0%);
$theme-button-background-active: hsl($theme-hue, 100%, 50%);
$theme-button-color: hsl($theme-hue, 0%, 85%);
$theme-button-color-active: hsl($theme-hue, 100%, 85%);
* {
box-sizing: border-box;
@@ -73,6 +77,21 @@ a.active {
text-decoration: inherit;
}
button {
background: $theme-button-background;
color: $theme-button-color;
border: 0;
cursor: pointer;
}
button.focus,
button.active,
button.visited {
background: $theme-button-background-active;
color: $theme-button-color-active;
border: 0;
}
@import "_header.scss";
@import "_content.scss";
@import "_footer.scss";
+28
View File
@@ -26,3 +26,31 @@
padding: 1rem 1rem;
display: flow-root;
}
.comments > .content > .privacy {
margin: 0px;
padding: 0px;
width: 100%;
font-weight: bold;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
column-gap: .5rem;
}
.comments > .content > .privacy > button {
display: block;
padding: .5rem;
font-size: 1.5rem;
background: $theme-button-background;
color: $theme-button-color;
border: 0;
}
.comments > .content > .privacy > button {
display: block;
padding: .5rem;
font-size: 1.5rem;
font-variant: small-caps;
font-weight: bold;
}