fix(style): valine dark style, header title and figure margin (#285)
This commit is contained in:
@@ -212,6 +212,7 @@
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: .5rem;
|
||||
text-align: center;
|
||||
|
||||
.image-caption:not(:empty) {
|
||||
|
||||
@@ -33,7 +33,7 @@ header {
|
||||
.header-title {
|
||||
font-family: $header-title-font-family;
|
||||
font-weight: bold;
|
||||
margin: 0 .5rem;
|
||||
margin-right: .5rem;
|
||||
min-width: 10%;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
|
||||
@@ -58,7 +58,7 @@ $header-background-color-dark: #252627 !default;
|
||||
|
||||
// Font style of the header title
|
||||
$header-title-font-family: $global-font-family !default;
|
||||
$header-title-font-size: 1.25rem !default;
|
||||
$header-title-font-size: 1.5rem !default;
|
||||
|
||||
// Position of the header
|
||||
$header-position-desktop: if($header-normal-mode-desktop, static, fixed) !default;
|
||||
|
||||
@@ -12,4 +12,8 @@
|
||||
[theme=dark] & {
|
||||
@import "themes/dark/index";
|
||||
}
|
||||
|
||||
div.mermaidTooltip {
|
||||
z-index: 50;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,14 +1,64 @@
|
||||
// ========== Global ========== //
|
||||
// Color of the border
|
||||
$border-color: #f0f0f0;
|
||||
$border-color-dark: #363636;
|
||||
|
||||
// ========== Code ========== //
|
||||
// Color of the code
|
||||
$code-color: #E74C3C !default;
|
||||
$code-color-dark: #E5BF78 !default;
|
||||
|
||||
// Color of the code background
|
||||
$code-background-color: #f5f5f5 !default;
|
||||
$code-background-color-dark: #272C34 !default;
|
||||
|
||||
@mixin overflow-wrap($value) {
|
||||
word-wrap: $value;
|
||||
overflow-wrap: $value;
|
||||
}
|
||||
|
||||
@mixin line-break($value) {
|
||||
-webkit-line-break: $value;
|
||||
-ms-line-break: $value;
|
||||
line-break: $value;
|
||||
}
|
||||
|
||||
@mixin tab-size($value) {
|
||||
-moz-tab-size: $value;
|
||||
-o-tab-size: $value;
|
||||
tab-size: $value;
|
||||
}
|
||||
|
||||
.v[data-class=v] {
|
||||
.vcards .vcard .vcontent.expand {
|
||||
&::before, &::after {
|
||||
z-index: 50;
|
||||
}
|
||||
}
|
||||
|
||||
.vwrap,
|
||||
.vwrap .vheader .vinput,
|
||||
.vcards .vcard .vh {
|
||||
.vcards .vcard .vh,
|
||||
.vcards .vcard .vquote,
|
||||
blockquote {
|
||||
border-color: $border-color;
|
||||
|
||||
[theme=dark] & {
|
||||
border-color: $border-color-dark;
|
||||
}
|
||||
}
|
||||
|
||||
code, pre, pre code {
|
||||
font-size: 90%;
|
||||
@include overflow-wrap(break-word);
|
||||
@include line-break(anywhere);
|
||||
@include tab-size(4);
|
||||
color: $code-color;
|
||||
background: $code-background-color;
|
||||
|
||||
[theme=dark] & {
|
||||
color: $code-color-dark;
|
||||
background: $code-background-color-dark;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user