Code style update

This commit is contained in:
Mimi 2020-05-15 00:17:05 +08:00
parent 31b3a282a4
commit 46274757cc
2 changed files with 6 additions and 14 deletions

View File

@ -10,7 +10,7 @@
for $tag-cloud in (0 .. 10) { for $tag-cloud in (0 .. 10) {
$tag-cloud-color = mix($tag-cloud-end, $tag-cloud-start, $tag-cloud * 10); $tag-cloud-color = mix($tag-cloud-end, $tag-cloud-start, $tag-cloud * 10);
.tag-cloud-{$tag-cloud} { .tag-cloud-{$tag-cloud} {
border-bottom: 1px solid $tag-cloud-color; border-bottom-color: $tag-cloud-color;
color: $tag-cloud-color; color: $tag-cloud-color;
} }
} }
@ -20,7 +20,7 @@ if (hexo-config('darkmode')) {
for $tag-cloud in (0 .. 10) { for $tag-cloud in (0 .. 10) {
$tag-cloud-color = mix($tag-cloud-end-dark, $tag-cloud-start-dark, $tag-cloud * 10); $tag-cloud-color = mix($tag-cloud-end-dark, $tag-cloud-start-dark, $tag-cloud * 10);
.tag-cloud-{$tag-cloud} { .tag-cloud-{$tag-cloud} {
border-bottom: 1px solid $tag-cloud-color; border-bottom-color: $tag-cloud-color;
color: $tag-cloud-color; color: $tag-cloud-color;
} }
} }

View File

@ -276,14 +276,6 @@ $post-eof-margin-top = 80px; // or 160px for more white space;
$post-eof-margin-bottom = 60px; // or 120px for less white space; $post-eof-margin-bottom = 60px; // or 120px for less white space;
// Iconography
// Icons SVG Base64
// --------------------------------------------------
// blockquote-center icon
$center-quote-left = '../images/quote-l.svg';
$center-quote-right = '../images/quote-r.svg';
// Note colors // Note colors
// -------------------------------------------------- // --------------------------------------------------
// Read note light_bg_offset from NexT config and set in "$lbg%" to use it as string variable. // Read note light_bg_offset from NexT config and set in "$lbg%" to use it as string variable.