Compare commits

...

2 Commits

Author SHA1 Message Date
952502e690 Re-enable syntax highlighting in light mode
Signed-off-by: Danila Fedorin <danila.fedorin@gmail.com>
2025-04-12 17:56:03 -07:00
388a4f1589 style: Fix inconsistent indentation in SCSS files for clarity 2025-04-05 19:54:25 -07:00
6 changed files with 204 additions and 206 deletions

View File

@ -6,7 +6,7 @@
}
@mixin below-container-width {
@media screen and (max-width: $container-width-threshold){
@media screen and (max-width: $container-width-threshold) {
@content;
}
}

View File

@ -59,7 +59,7 @@ p {
}
@include below-two-margins {
left: -($margin-width + $margin-inner-offset + $margin-outer-offset)/2;
left: -($margin-width + $margin-inner-offset + $margin-outer-offset) / 2;
}
@include below-one-margin {
@ -330,8 +330,7 @@ figure {
That's because firefox reader mode doesn't play nice with them, and
it seems to ignore all styles in <head>. Then, the inline style
in <head> uses !important to restore the display of icons, but provides
limited styling. Here, we finally apply the full extent of the feather
styles.
limited styling. Here, we finally apply the full extent of the feather styles.
*/
.feather {
width: 1rem;
@ -356,7 +355,7 @@ figure {
.dialog {
.message {
max-width: 0.8*$container-width;
max-width: 0.8 * $container-width;
margin-top: 0.5rem;
display: flex;
flex-direction: row;
@ -402,7 +401,6 @@ figure {
}
}
a, .ongoing-placeholder {
@include bordered-block;
padding: 0.5em 1em 0.5em 1em;

View File

@ -23,7 +23,7 @@ $target-background-color-dark: #55511c;
$code-color: #f0f0f0;
$code-color-dark: lighten($background-color-dark, 10%);
$code-token-color: black;
$code-token-color: darken($primary-color, 25%);
$code-token-color-dark: $primary-color;
$code-highlight-color: #fffd99;
$code-highlight-color-dark: #555538;