perf(ui): improve web accessibility (#447)
- Make color and contrast meets WCAG 2 AA and above - Fixes `aria-label` on button "copy link" in posts
This commit is contained in:
parent
0fd4c0bd0f
commit
37c976499e
10 changed files with 96 additions and 84 deletions
|
@ -22,14 +22,16 @@
|
||||||
</a>
|
</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<i
|
<button
|
||||||
id="copy-link"
|
id="copy-link"
|
||||||
class="fa-fw fas fa-link small"
|
aria-label="Copy link"
|
||||||
|
class="btn small"
|
||||||
data-bs-toggle="tooltip"
|
data-bs-toggle="tooltip"
|
||||||
data-bs-placement="top"
|
data-bs-placement="top"
|
||||||
title="{{ site.data.locales[include.lang].post.button.share_link.title }}"
|
title="{{ site.data.locales[include.lang].post.button.share_link.title }}"
|
||||||
data-title-succeed="{{ site.data.locales[include.lang].post.button.share_link.succeed }}"
|
data-title-succeed="{{ site.data.locales[include.lang].post.button.share_link.succeed }}"
|
||||||
>
|
>
|
||||||
</i>
|
<i class="fa-fw fas fa-link pe-none"></i>
|
||||||
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -99,7 +99,9 @@ export function initClipboard() {
|
||||||
|
|
||||||
/* --- Post link sharing --- */
|
/* --- Post link sharing --- */
|
||||||
|
|
||||||
$('#copy-link').on('click', (e) => {
|
const btnCopyLink = $('#copy-link');
|
||||||
|
|
||||||
|
btnCopyLink.on('click', (e) => {
|
||||||
let target = $(e.target);
|
let target = $(e.target);
|
||||||
|
|
||||||
if (isLocked(target)) {
|
if (isLocked(target)) {
|
||||||
|
@ -120,4 +122,10 @@ export function initClipboard() {
|
||||||
}, TIMEOUT);
|
}, TIMEOUT);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
btnCopyLink.on('mouseleave', function (e) {
|
||||||
|
const target = $(e.target);
|
||||||
|
target.tooltip('hide');
|
||||||
|
console.log('mouse leave...');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -176,6 +176,8 @@ footer {
|
||||||
font-size: 0.8rem;
|
font-size: 0.8rem;
|
||||||
background-color: var(--main-bg);
|
background-color: var(--main-bg);
|
||||||
|
|
||||||
|
@extend %text-color;
|
||||||
|
|
||||||
div.d-flex {
|
div.d-flex {
|
||||||
height: $footer-height;
|
height: $footer-height;
|
||||||
line-height: 1.2rem;
|
line-height: 1.2rem;
|
||||||
|
@ -185,7 +187,7 @@ footer {
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@extend %text-color;
|
@extend %text-highlight;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
@extend %link-hover;
|
@extend %link-hover;
|
||||||
|
@ -243,7 +245,6 @@ i {
|
||||||
.post-tag {
|
.post-tag {
|
||||||
line-height: 1.05rem;
|
line-height: 1.05rem;
|
||||||
font-size: 0.85rem;
|
font-size: 0.85rem;
|
||||||
border: 1px solid var(--btn-border-color);
|
|
||||||
border-radius: 0.8rem;
|
border-radius: 0.8rem;
|
||||||
padding: 0.3rem 0.5rem;
|
padding: 0.3rem 0.5rem;
|
||||||
margin: 0 0.35rem 0.5rem 0;
|
margin: 0 0.35rem 0.5rem 0;
|
||||||
|
@ -494,9 +495,10 @@ i {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
min-width: 2rem;
|
min-width: 2rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 0.3rem;
|
border-radius: 0.5rem;
|
||||||
|
border: 1px solid var(--btn-border-color);
|
||||||
padding: 0 0.4rem;
|
padding: 0 0.4rem;
|
||||||
color: inherit;
|
color: var(--text-muted-color);
|
||||||
line-height: 1.3rem;
|
line-height: 1.3rem;
|
||||||
|
|
||||||
&:not(:last-child) {
|
&:not(:last-child) {
|
||||||
|
@ -745,19 +747,20 @@ $btn-mb: 0.5rem;
|
||||||
font-size: 1.75rem;
|
font-size: 1.75rem;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
letter-spacing: 0.25px;
|
letter-spacing: 0.25px;
|
||||||
color: rgba(134, 133, 133, 0.99);
|
|
||||||
margin-top: 1.25rem;
|
margin-top: 1.25rem;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@extend %clickable-transition;
|
@extend %clickable-transition;
|
||||||
@extend %sidebar-link-hover;
|
@extend %sidebar-link-hover;
|
||||||
|
|
||||||
|
color: var(--site-title-color);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-subtitle {
|
.site-subtitle {
|
||||||
font-size: 95%;
|
font-size: 95%;
|
||||||
color: var(--sidebar-muted-color);
|
color: var(--site-subtitle-color);
|
||||||
margin-top: 0.25rem;
|
margin-top: 0.25rem;
|
||||||
word-spacing: 1px;
|
word-spacing: 1px;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
|
@ -915,7 +918,7 @@ $btn-mb: 0.5rem;
|
||||||
|
|
||||||
#breadcrumb {
|
#breadcrumb {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
color: gray;
|
color: var(--text-muted-color);
|
||||||
padding-left: 0.5rem;
|
padding-left: 0.5rem;
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
|
@ -1102,7 +1105,6 @@ $btn-mb: 0.5rem;
|
||||||
/* --- main wrapper --- */
|
/* --- main wrapper --- */
|
||||||
|
|
||||||
#main-wrapper {
|
#main-wrapper {
|
||||||
background-color: var(--main-bg);
|
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: calc(100vh - $footer-height-mobile);
|
min-height: calc(100vh - $footer-height-mobile);
|
||||||
|
|
||||||
|
|
|
@ -107,7 +107,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
%sidebar-links {
|
%sidebar-links {
|
||||||
color: rgba(117, 117, 117, 0.9);
|
color: var(--sidebar-muted-color);
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
|
@ -122,6 +122,11 @@
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
%text-highlight {
|
||||||
|
color: inherit;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
/* ---------- scss mixin --------- */
|
/* ---------- scss mixin --------- */
|
||||||
|
|
||||||
@mixin mt-mb($value) {
|
@mixin mt-mb($value) {
|
||||||
|
|
|
@ -63,6 +63,7 @@ html {
|
||||||
font-size: $code-font-size;
|
font-size: $code-font-size;
|
||||||
line-height: 1.4rem;
|
line-height: 1.4rem;
|
||||||
word-wrap: normal; /* Fixed Safari overflow-x */
|
word-wrap: normal; /* Fixed Safari overflow-x */
|
||||||
|
color: var(--code-snippets-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
|
|
|
@ -5,44 +5,40 @@
|
||||||
@mixin dark-syntax {
|
@mixin dark-syntax {
|
||||||
--language-border-color: rgba(84, 83, 83, 0.27);
|
--language-border-color: rgba(84, 83, 83, 0.27);
|
||||||
--highlight-bg-color: #252525;
|
--highlight-bg-color: #252525;
|
||||||
--highlighter-rouge-color: #de6b18;
|
--highlighter-rouge-color: #ff6e4e;
|
||||||
--highlight-lineno-color: #6c6c6d;
|
--highlight-lineno-color: #666666;
|
||||||
--inline-code-bg: #272822;
|
--inline-code-bg: #272822;
|
||||||
--code-header-text-color: #6a6a6a;
|
--code-header-text-color: #6a6a6a;
|
||||||
--code-header-muted-color: rgb(60, 60, 60);
|
--code-header-muted-color: rgb(60, 60, 60);
|
||||||
--code-header-icon-color: rgb(86, 86, 86);
|
--code-header-icon-color: rgb(86, 86, 86);
|
||||||
--clipboard-checked-color: #2bcc2b;
|
--clipboard-checked-color: #2bcc2b;
|
||||||
--filepath-text-color: #bdbdbd;
|
--filepath-text-color: #cacaca;
|
||||||
|
--code-snippets-color: #c2c2c2;
|
||||||
/* override Bootstrap */
|
|
||||||
pre {
|
|
||||||
color: #bfbfbf;
|
|
||||||
}
|
|
||||||
|
|
||||||
.highlight .gp {
|
.highlight .gp {
|
||||||
color: #818c96;
|
color: #87939d;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* syntax highlight colors from https://raw.githubusercontent.com/jwarby/pygments-css/master/monokai.css */
|
/* syntax highlight colors from https://raw.githubusercontent.com/jwarby/pygments-css/master/monokai.css */
|
||||||
|
|
||||||
.highlight pre { background-color: var(--highlight-bg-color); }
|
.highlight pre { background-color: var(--highlight-bg-color); }
|
||||||
.highlight .hll { background-color: var(--highlight-bg-color); }
|
.highlight .hll { background-color: var(--highlight-bg-color); }
|
||||||
.highlight .c { color: #75715e; } /* Comment */
|
.highlight .c { color: #938d75; } /* Comment */
|
||||||
.highlight .err { color: #960050; background-color: #1e0010; } /* Error */
|
.highlight .err { color: #960050; background-color: #1e0010; } /* Error */
|
||||||
.highlight .k { color: #66d9ef; } /* Keyword */
|
.highlight .k { color: #66d9ef; } /* Keyword */
|
||||||
.highlight .l { color: #ae81ff; } /* Literal */
|
.highlight .l { color: #ae81ff; } /* Literal */
|
||||||
.highlight .n { color: #f8f8f2; } /* Name */
|
.highlight .n { color: #f8f8f2; } /* Name */
|
||||||
.highlight .o { color: #f92672; } /* Operator */
|
.highlight .o { color: #ff329c; } /* Operator */
|
||||||
.highlight .p { color: #f8f8f2; } /* Punctuation */
|
.highlight .p { color: #f8f8f2; } /* Punctuation */
|
||||||
.highlight .cm { color: #75715e; } /* Comment.Multiline */
|
.highlight .cm { color: #938d75; } /* Comment.Multiline */
|
||||||
.highlight .cp { color: #75715e; } /* Comment.Preproc */
|
.highlight .cp { color: #938d75; } /* Comment.Preproc */
|
||||||
.highlight .c1 { color: #75715e; } /* Comment.Single */
|
.highlight .c1 { color: #938d75; } /* Comment.Single */
|
||||||
.highlight .cs { color: #75715e; } /* Comment.Special */
|
.highlight .cs { color: #938d75; } /* Comment.Special */
|
||||||
.highlight .ge { color: inherit; font-style: italic; } /* Generic.Emph */
|
.highlight .ge { color: inherit; font-style: italic; } /* Generic.Emph */
|
||||||
.highlight .gs { font-weight: bold; } /* Generic.Strong */
|
.highlight .gs { font-weight: bold; } /* Generic.Strong */
|
||||||
.highlight .kc { color: #66d9ef; } /* Keyword.Constant */
|
.highlight .kc { color: #66d9ef; } /* Keyword.Constant */
|
||||||
.highlight .kd { color: #66d9ef; } /* Keyword.Declaration */
|
.highlight .kd { color: #66d9ef; } /* Keyword.Declaration */
|
||||||
.highlight .kn { color: #f92672; } /* Keyword.Namespace */
|
.highlight .kn { color: #ff329c; } /* Keyword.Namespace */
|
||||||
.highlight .kp { color: #66d9ef; } /* Keyword.Pseudo */
|
.highlight .kp { color: #66d9ef; } /* Keyword.Pseudo */
|
||||||
.highlight .kr { color: #66d9ef; } /* Keyword.Reserved */
|
.highlight .kr { color: #66d9ef; } /* Keyword.Reserved */
|
||||||
.highlight .kt { color: #66d9ef; } /* Keyword.Type */
|
.highlight .kt { color: #66d9ef; } /* Keyword.Type */
|
||||||
|
@ -61,9 +57,9 @@
|
||||||
.highlight .nn { color: #f8f8f2; } /* Name.Namespace */
|
.highlight .nn { color: #f8f8f2; } /* Name.Namespace */
|
||||||
.highlight .nx { color: #a6e22e; } /* Name.Other */
|
.highlight .nx { color: #a6e22e; } /* Name.Other */
|
||||||
.highlight .py { color: #f8f8f2; } /* Name.Property */
|
.highlight .py { color: #f8f8f2; } /* Name.Property */
|
||||||
.highlight .nt { color: #f92672; } /* Name.Tag */
|
.highlight .nt { color: #ff329c; } /* Name.Tag */
|
||||||
.highlight .nv { color: #f8f8f2; } /* Name.Variable */
|
.highlight .nv { color: #f8f8f2; } /* Name.Variable */
|
||||||
.highlight .ow { color: #f92672; } /* Operator.Word */
|
.highlight .ow { color: #ff329c; } /* Operator.Word */
|
||||||
.highlight .w { color: #f8f8f2; } /* Text.Whitespace */
|
.highlight .w { color: #f8f8f2; } /* Text.Whitespace */
|
||||||
.highlight .mf { color: #ae81ff; } /* Literal.Number.Float */
|
.highlight .mf { color: #ae81ff; } /* Literal.Number.Float */
|
||||||
.highlight .mh { color: #ae81ff; } /* Literal.Number.Hex */
|
.highlight .mh { color: #ae81ff; } /* Literal.Number.Hex */
|
||||||
|
@ -85,7 +81,7 @@
|
||||||
.highlight .vg { color: #f8f8f2; } /* Name.Variable.Global */
|
.highlight .vg { color: #f8f8f2; } /* Name.Variable.Global */
|
||||||
.highlight .vi { color: #f8f8f2; } /* Name.Variable.Instance */
|
.highlight .vi { color: #f8f8f2; } /* Name.Variable.Instance */
|
||||||
.highlight .il { color: #ae81ff; } /* Literal.Number.Integer.Long */
|
.highlight .il { color: #ae81ff; } /* Literal.Number.Integer.Long */
|
||||||
.highlight .gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
|
.highlight .gu { color: #938d75; } /* Generic.Subheading & Diff Unified/Comment? */
|
||||||
.highlight .gd { color: #f92672; background-color: #561c08; } /* Generic.Deleted & Diff Deleted */
|
.highlight .gd { color: #ff329c; background-color: #561c08; } /* Generic.Deleted & Diff Deleted */
|
||||||
.highlight .gi { color: #a6e22e; background-color: #0b5858; } /* Generic.Inserted & Diff Inserted */
|
.highlight .gi { color: #a6e22e; background-color: #0b5858; } /* Generic.Inserted & Diff Inserted */
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,10 +10,11 @@
|
||||||
|
|
||||||
/* Common color */
|
/* Common color */
|
||||||
--text-color: rgb(175, 176, 177);
|
--text-color: rgb(175, 176, 177);
|
||||||
--text-muted-color: rgb(107, 116, 124);
|
--text-muted-color: rgb(125, 136, 146);
|
||||||
--heading-color: #cccccc;
|
--heading-color: #cccccc;
|
||||||
|
--label-color: #a4a4c2;
|
||||||
--blockquote-border-color: rgb(66, 66, 66);
|
--blockquote-border-color: rgb(66, 66, 66);
|
||||||
--blockquote-text-color: rgb(117, 117, 117);
|
--blockquote-text-color: #868686;
|
||||||
--link-color: rgb(138, 180, 248);
|
--link-color: rgb(138, 180, 248);
|
||||||
--link-underline-color: rgb(82, 108, 150);
|
--link-underline-color: rgb(82, 108, 150);
|
||||||
--button-bg: rgb(39, 40, 43);
|
--button-bg: rgb(39, 40, 43);
|
||||||
|
@ -22,7 +23,6 @@
|
||||||
--btn-backtotop-border-color: var(--btn-border-color);
|
--btn-backtotop-border-color: var(--btn-border-color);
|
||||||
--btn-box-shadow: var(--main-bg);
|
--btn-box-shadow: var(--main-bg);
|
||||||
--card-header-bg: rgb(48, 48, 48);
|
--card-header-bg: rgb(48, 48, 48);
|
||||||
--label-color: rgb(108, 117, 125);
|
|
||||||
--checkbox-color: rgb(118, 120, 121);
|
--checkbox-color: rgb(118, 120, 121);
|
||||||
--checkbox-checked-color: var(--link-color);
|
--checkbox-checked-color: var(--link-color);
|
||||||
--img-bg: radial-gradient(circle, rgb(22, 22, 24) 0%, rgb(32, 32, 32) 100%);
|
--img-bg: radial-gradient(circle, rgb(22, 22, 24) 0%, rgb(32, 32, 32) 100%);
|
||||||
|
@ -34,6 +34,8 @@
|
||||||
);
|
);
|
||||||
|
|
||||||
/* Sidebar */
|
/* Sidebar */
|
||||||
|
--site-title-color: #717070;
|
||||||
|
--site-subtitle-color: #6d6c6b;
|
||||||
--sidebar-bg: radial-gradient(circle, #242424 0%, #1d1f27 100%);
|
--sidebar-bg: radial-gradient(circle, #242424 0%, #1d1f27 100%);
|
||||||
--sidebar-muted-color: #6d6c6b;
|
--sidebar-muted-color: #6d6c6b;
|
||||||
--sidebar-active-color: rgb(255, 255, 255, 0.95);
|
--sidebar-active-color: rgb(255, 255, 255, 0.95);
|
||||||
|
@ -58,7 +60,6 @@
|
||||||
|
|
||||||
/* Posts */
|
/* Posts */
|
||||||
--toc-highlight: rgb(116, 178, 243);
|
--toc-highlight: rgb(116, 178, 243);
|
||||||
--tag-bg: rgb(41, 40, 40);
|
|
||||||
--tag-hover: rgb(43, 56, 62);
|
--tag-hover: rgb(43, 56, 62);
|
||||||
--tb-odd-bg: rgba(42, 47, 53, 0.52); /* odd rows of the posts' table */
|
--tb-odd-bg: rgba(42, 47, 53, 0.52); /* odd rows of the posts' table */
|
||||||
--tb-even-bg: rgb(31, 31, 34); /* even rows of the posts' table */
|
--tb-even-bg: rgb(31, 31, 34); /* even rows of the posts' table */
|
||||||
|
@ -66,7 +67,6 @@
|
||||||
--footnote-target-bg: rgb(63, 81, 181);
|
--footnote-target-bg: rgb(63, 81, 181);
|
||||||
--btn-share-color: #6c757d;
|
--btn-share-color: #6c757d;
|
||||||
--btn-share-hover-color: #bfc1ca;
|
--btn-share-hover-color: #bfc1ca;
|
||||||
--relate-post-date: var(--text-muted-color);
|
|
||||||
--card-bg: #1e1e1e;
|
--card-bg: #1e1e1e;
|
||||||
--card-hovor-bg: #464d51;
|
--card-hovor-bg: #464d51;
|
||||||
--card-shadow: rgb(21, 21, 21, 0.72) 0 6px 18px 0,
|
--card-shadow: rgb(21, 21, 21, 0.72) 0 6px 18px 0,
|
||||||
|
|
|
@ -3,22 +3,22 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@mixin light-syntax {
|
@mixin light-syntax {
|
||||||
/* see: <https://raw.githubusercontent.com/jwarby/pygments-css/master/github.css> */
|
/* based on: <https://raw.githubusercontent.com/jwarby/pygments-css/master/github.css> */
|
||||||
.highlight .hll { background-color: #ffffcc; }
|
.highlight .hll { background-color: #ffffcc; }
|
||||||
.highlight .c { color: #999988; font-style: italic; } /* Comment */
|
.highlight .c { color: #717165; font-style: italic; } /* Comment */
|
||||||
.highlight .err { color: #a61717; background-color: #e3d2d2; } /* Error */
|
.highlight .err { color: #a61717; background-color: #e3d2d2; } /* Error */
|
||||||
.highlight .k { color: #000000; font-weight: bold; } /* Keyword */
|
.highlight .k { color: #000000; font-weight: bold; } /* Keyword */
|
||||||
.highlight .o { color: #000000; font-weight: bold; } /* Operator */
|
.highlight .o { color: #000000; font-weight: bold; } /* Operator */
|
||||||
.highlight .cm { color: #999988; font-style: italic; } /* Comment.Multiline */
|
.highlight .cm { color: #717165; font-style: italic; } /* Comment.Multiline */
|
||||||
.highlight .cp { color: #999999; font-weight: bold; font-style: italic; } /* Comment.Preproc */
|
.highlight .cp { color: #707070; font-style: italic; } /* Comment.Preproc */
|
||||||
.highlight .c1 { color: #999988; font-style: italic; } /* Comment.Single */
|
.highlight .c1 { color: #717165; font-style: italic; } /* Comment.Single */
|
||||||
.highlight .cs { color: #999999; font-weight: bold; font-style: italic; } /* Comment.Special */
|
.highlight .cs { color: #707070; font-weight: bold; font-style: italic; } /* Comment.Special */
|
||||||
.highlight .gd { color: #d01040; background-color: #ffdddd; } /* Generic.Deleted */
|
.highlight .gd { color: #d01040; background-color: #ffdddd; } /* Generic.Deleted */
|
||||||
.highlight .ge { color: #000000; font-style: italic; } /* Generic.Emph */
|
.highlight .ge { color: #000000; font-style: italic; } /* Generic.Emph */
|
||||||
.highlight .gr { color: #aa0000; } /* Generic.Error */
|
.highlight .gr { color: #aa0000; } /* Generic.Error */
|
||||||
.highlight .gh { color: #999999; } /* Generic.Heading */
|
.highlight .gh { color: #707070; } /* Generic.Heading */
|
||||||
.highlight .gi { color: #008080; background-color: #ddffdd; } /* Generic.Inserted */
|
.highlight .gi { color: #005e5e; background-color: #ddffdd; } /* Generic.Inserted */
|
||||||
.highlight .go { color: #888888; } /* Generic.Output */
|
.highlight .go { color: #707070; } /* Generic.Output */
|
||||||
.highlight .gp { color: #555555; } /* Generic.Prompt */
|
.highlight .gp { color: #555555; } /* Generic.Prompt */
|
||||||
.highlight .gs { font-weight: bold; } /* Generic.Strong */
|
.highlight .gs { font-weight: bold; } /* Generic.Strong */
|
||||||
.highlight .gu { color: #aaaaaa; } /* Generic.Subheading */
|
.highlight .gu { color: #aaaaaa; } /* Generic.Subheading */
|
||||||
|
@ -31,10 +31,10 @@
|
||||||
.highlight .kt { color: #445588; font-weight: bold; } /* Keyword.Type */
|
.highlight .kt { color: #445588; font-weight: bold; } /* Keyword.Type */
|
||||||
.highlight .m { color: #009999; } /* Literal.Number */
|
.highlight .m { color: #009999; } /* Literal.Number */
|
||||||
.highlight .s { color: #d01040; } /* Literal.String */
|
.highlight .s { color: #d01040; } /* Literal.String */
|
||||||
.highlight .na { color: #008080; } /* Name.Attribute */
|
.highlight .na { color: #005e5e; } /* Name.Attribute */
|
||||||
.highlight .nb { color: #0086b3; } /* Name.Builtin */
|
.highlight .nb { color: #0078a1; } /* Name.Builtin */
|
||||||
.highlight .nc { color: #445588; font-weight: bold; } /* Name.Class */
|
.highlight .nc { color: #445588; font-weight: bold; } /* Name.Class */
|
||||||
.highlight .no { color: #008080; } /* Name.Constant */
|
.highlight .no { color: #005e5e; } /* Name.Constant */
|
||||||
.highlight .nd { color: #3c5d5d; font-weight: bold; } /* Name.Decorator */
|
.highlight .nd { color: #3c5d5d; font-weight: bold; } /* Name.Decorator */
|
||||||
.highlight .ni { color: #800080; } /* Name.Entity */
|
.highlight .ni { color: #800080; } /* Name.Entity */
|
||||||
.highlight .ne { color: #990000; font-weight: bold; } /* Name.Exception */
|
.highlight .ne { color: #990000; font-weight: bold; } /* Name.Exception */
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
.highlight .nl { color: #990000; font-weight: bold; } /* Name.Label */
|
.highlight .nl { color: #990000; font-weight: bold; } /* Name.Label */
|
||||||
.highlight .nn { color: #555555; } /* Name.Namespace */
|
.highlight .nn { color: #555555; } /* Name.Namespace */
|
||||||
.highlight .nt { color: #000080; } /* Name.Tag */
|
.highlight .nt { color: #000080; } /* Name.Tag */
|
||||||
.highlight .nv { color: #008080; } /* Name.Variable */
|
.highlight .nv { color: #005e5e; } /* Name.Variable */
|
||||||
.highlight .ow { color: #000000; font-weight: bold; } /* Operator.Word */
|
.highlight .ow { color: #000000; font-weight: bold; } /* Operator.Word */
|
||||||
.highlight .w { color: #bbbbbb; } /* Text.Whitespace */
|
.highlight .w { color: #bbbbbb; } /* Text.Whitespace */
|
||||||
.highlight .mf { color: #009999; } /* Literal.Number.Float */
|
.highlight .mf { color: #009999; } /* Literal.Number.Float */
|
||||||
|
@ -60,22 +60,23 @@
|
||||||
.highlight .sr { color: #009926; } /* Literal.String.Regex */
|
.highlight .sr { color: #009926; } /* Literal.String.Regex */
|
||||||
.highlight .s1 { color: #d01040; } /* Literal.String.Single */
|
.highlight .s1 { color: #d01040; } /* Literal.String.Single */
|
||||||
.highlight .ss { color: #990073; } /* Literal.String.Symbol */
|
.highlight .ss { color: #990073; } /* Literal.String.Symbol */
|
||||||
.highlight .bp { color: #999999; } /* Name.Builtin.Pseudo */
|
.highlight .bp { color: #707070; } /* Name.Builtin.Pseudo */
|
||||||
.highlight .vc { color: #008080; } /* Name.Variable.Class */
|
.highlight .vc { color: #005e5e; } /* Name.Variable.Class */
|
||||||
.highlight .vg { color: #008080; } /* Name.Variable.Global */
|
.highlight .vg { color: #005e5e; } /* Name.Variable.Global */
|
||||||
.highlight .vi { color: #008080; } /* Name.Variable.Instance */
|
.highlight .vi { color: #005e5e; } /* Name.Variable.Instance */
|
||||||
.highlight .il { color: #009999; } /* Literal.Number.Integer.Long */
|
.highlight .il { color: #009999; } /* Literal.Number.Integer.Long */
|
||||||
|
|
||||||
/* --- custom light colors --- */
|
/* --- custom light colors --- */
|
||||||
--language-border-color: rgba(172, 169, 169, 0.2);
|
--language-border-color: rgba(172, 169, 169, 0.2);
|
||||||
--highlight-bg-color: #f7f7f7;
|
--highlight-bg-color: #fcfcfc;
|
||||||
--highlighter-rouge-color: #3f596f;
|
--highlighter-rouge-color: #3f596f;
|
||||||
--highlight-lineno-color: #c2c6cc;
|
--highlight-lineno-color: #959595;
|
||||||
--inline-code-bg: #f6f6f7;
|
--inline-code-bg: #f6f6f7;
|
||||||
--code-header-text-color: #a3a3b1;
|
--code-header-text-color: #a3a3a3;
|
||||||
--code-header-muted-color: #ebebeb;
|
--code-header-muted-color: #e2e1e1;
|
||||||
--code-header-icon-color: #d1d1d1;
|
--code-header-icon-color: #c9c8c8;
|
||||||
--clipboard-checked-color: #43c743;
|
--clipboard-checked-color: #43c743;
|
||||||
|
--code-snippets-color: #b01662;
|
||||||
|
|
||||||
[class^='prompt-'] {
|
[class^='prompt-'] {
|
||||||
--inline-code-bg: #fbfafa;
|
--inline-code-bg: #fbfafa;
|
||||||
|
|
|
@ -10,10 +10,11 @@
|
||||||
|
|
||||||
/* Common color */
|
/* Common color */
|
||||||
--text-color: #34343c;
|
--text-color: #34343c;
|
||||||
--text-muted-color: #8e8e8e;
|
--text-muted-color: #757575;
|
||||||
--heading-color: black;
|
--heading-color: black;
|
||||||
|
--label-color: #4d4d5b;
|
||||||
--blockquote-border-color: #eeeeee;
|
--blockquote-border-color: #eeeeee;
|
||||||
--blockquote-text-color: #9a9a9a;
|
--blockquote-text-color: #757575;
|
||||||
--link-color: #0153ab;
|
--link-color: #0153ab;
|
||||||
--link-underline-color: #dee2e6;
|
--link-underline-color: #dee2e6;
|
||||||
--button-bg: #ffffff;
|
--button-bg: #ffffff;
|
||||||
|
@ -36,8 +37,10 @@
|
||||||
);
|
);
|
||||||
|
|
||||||
/* Sidebar */
|
/* Sidebar */
|
||||||
|
--site-title-color: rgb(113, 113, 113);
|
||||||
|
--site-subtitle-color: #717171;
|
||||||
--sidebar-bg: #f6f8fa;
|
--sidebar-bg: #f6f8fa;
|
||||||
--sidebar-muted-color: #a2a19f;
|
--sidebar-muted-color: #545454;
|
||||||
--sidebar-active-color: #1d1d1d;
|
--sidebar-active-color: #1d1d1d;
|
||||||
--sidebar-hover-bg: rgb(223, 233, 241, 0.64);
|
--sidebar-hover-bg: rgb(223, 233, 241, 0.64);
|
||||||
--sidebar-btn-bg: white;
|
--sidebar-btn-bg: white;
|
||||||
|
@ -60,16 +63,13 @@
|
||||||
--btn-text-color: #676666;
|
--btn-text-color: #676666;
|
||||||
|
|
||||||
/* Posts */
|
/* Posts */
|
||||||
--toc-highlight: #563d7c;
|
--toc-highlight: #47566c;
|
||||||
--btn-share-hover-color: var(--link-color);
|
--btn-share-hover-color: var(--link-color);
|
||||||
--card-bg: white;
|
--card-bg: white;
|
||||||
--card-hovor-bg: #e2e2e2;
|
--card-hovor-bg: #e2e2e2;
|
||||||
--card-shadow: rgb(104, 104, 104, 0.05) 0 2px 6px 0,
|
--card-shadow: rgb(104, 104, 104, 0.05) 0 2px 6px 0,
|
||||||
rgba(211, 209, 209, 0.15) 0 0 0 1px;
|
rgba(211, 209, 209, 0.15) 0 0 0 1px;
|
||||||
--label-color: #616161;
|
|
||||||
--relate-post-date: rgba(30, 55, 70, 0.4);
|
|
||||||
--footnote-target-bg: lightcyan;
|
--footnote-target-bg: lightcyan;
|
||||||
--tag-bg: rgba(0, 0, 0, 0.075);
|
|
||||||
--tag-border: #dee2e6;
|
--tag-border: #dee2e6;
|
||||||
--tag-shadow: var(--btn-border-color);
|
--tag-shadow: var(--btn-border-color);
|
||||||
--tag-hover: rgb(222, 226, 230);
|
--tag-hover: rgb(222, 226, 230);
|
||||||
|
|
|
@ -52,10 +52,10 @@ h1 + .post-meta {
|
||||||
}
|
}
|
||||||
|
|
||||||
em {
|
em {
|
||||||
@extend %text-color;
|
color: var(--text-color);
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@extend %text-color;
|
color: inherit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -73,7 +73,7 @@ h1 + .post-meta {
|
||||||
line-height: 1.2rem;
|
line-height: 1.2rem;
|
||||||
|
|
||||||
> a {
|
> a {
|
||||||
color: var(--text-color);
|
@extend %text-highlight;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
@extend %link-hover;
|
@extend %link-hover;
|
||||||
|
@ -99,17 +99,20 @@ h1 + .post-meta {
|
||||||
.share-icons {
|
.share-icons {
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
|
|
||||||
> i {
|
> *:hover {
|
||||||
position: relative;
|
i {
|
||||||
bottom: 1px;
|
|
||||||
|
|
||||||
@extend %cursor-pointer;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
@extend %btn-share-hovor;
|
@extend %btn-share-hovor;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
position: relative;
|
||||||
|
bottom: 2px;
|
||||||
|
padding: 0;
|
||||||
|
|
||||||
|
@extend %cursor-pointer;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
&:not(:last-child) {
|
&:not(:last-child) {
|
||||||
margin-right: 0.25rem;
|
margin-right: 0.25rem;
|
||||||
|
@ -117,10 +120,6 @@ h1 + .post-meta {
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
> i {
|
|
||||||
@extend %btn-share-hovor;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -157,8 +156,6 @@ h1 + .post-meta {
|
||||||
line-height: 2rem;
|
line-height: 2rem;
|
||||||
|
|
||||||
.post-tag {
|
.post-tag {
|
||||||
background: var(--tag-bg);
|
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
@extend %link-hover;
|
@extend %link-hover;
|
||||||
@extend %tag-hover;
|
@extend %tag-hover;
|
||||||
|
@ -334,7 +331,7 @@ h1 + .post-meta {
|
||||||
em {
|
em {
|
||||||
@extend %normal-font-style;
|
@extend %normal-font-style;
|
||||||
|
|
||||||
color: var(--relate-post-date);
|
color: var(--text-muted-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
|
|
Loading…
Reference in a new issue