2019-11-30 17:31:50 +03:00
|
|
|
---
|
|
|
|
---
|
2019-11-15 19:01:33 +03:00
|
|
|
/*
|
2019-09-30 15:38:41 +03:00
|
|
|
* The syntax highlight.
|
2020-01-02 16:17:49 +03:00
|
|
|
* v2.0
|
|
|
|
* https://github.com/cotes2020/jekyll-theme-chirpy
|
2019-09-30 15:38:41 +03:00
|
|
|
* © 2018-2019 Cotes Chung
|
|
|
|
* MIT Licensed
|
|
|
|
*/
|
|
|
|
|
2020-02-27 16:05:50 +03:00
|
|
|
@import "_colors/light-syntax";
|
|
|
|
@import "_colors/dark-syntax";
|
2020-01-03 15:18:19 +03:00
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2020-02-27 16:05:50 +03:00
|
|
|
@mixin highlight-box-shadow($val) {
|
|
|
|
-moz-box-shadow: $val;
|
|
|
|
-webkit-box-shadow: $val;
|
|
|
|
box-shadow: $val;
|
|
|
|
}
|
|
|
|
|
|
|
|
html:not([mode]), html[mode=light] {
|
|
|
|
@include light-syntax;
|
|
|
|
}
|
|
|
|
|
|
|
|
html[mode=dark] {
|
|
|
|
@include dark-syntax;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
html:not([mode]), html[mode=dark] {
|
|
|
|
@include dark-syntax;
|
|
|
|
}
|
|
|
|
|
|
|
|
html[mode=light] {
|
|
|
|
@include light-syntax;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
/*-- Codes Snippet --*/
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
%highlight-pre-bg {
|
2020-02-27 16:05:50 +03:00
|
|
|
background: var(--highlight-bg-color);
|
2019-09-30 15:38:41 +03:00
|
|
|
}
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
%code-snippet-radius {
|
|
|
|
border-radius: 5px;
|
2019-09-30 15:38:41 +03:00
|
|
|
}
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
.highlighter-rouge {
|
2020-02-27 16:05:50 +03:00
|
|
|
background: var(--highlight-bg-color);
|
2020-02-25 12:56:03 +03:00
|
|
|
@extend %code-snippet-radius;
|
2020-02-27 16:05:50 +03:00
|
|
|
color: var(--highlighter-rouge-color);
|
2020-02-25 12:56:03 +03:00
|
|
|
margin-bottom: 1.2em; /* Override BS Inline-code style */
|
2019-09-30 15:38:41 +03:00
|
|
|
}
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
.highlight {
|
|
|
|
@extend %code-snippet-radius;
|
2020-02-27 16:05:50 +03:00
|
|
|
background: var(--highlight-bg-color);
|
|
|
|
|
2020-02-25 12:56:03 +03:00
|
|
|
@at-root figure#{&} {
|
2020-02-27 16:05:50 +03:00
|
|
|
background: var(--highlight-bg-color);
|
2020-02-25 12:56:03 +03:00
|
|
|
}
|
|
|
|
overflow: auto;
|
2020-02-27 16:05:50 +03:00
|
|
|
@include highlight-box-shadow(inset 0 0 2px #c2c6cc);
|
2020-02-25 12:56:03 +03:00
|
|
|
.lineno {
|
|
|
|
margin: .8rem 0rem;
|
|
|
|
padding: 0 .5rem;
|
|
|
|
min-width: 2.2rem;
|
|
|
|
text-align: right;
|
2020-02-27 16:05:50 +03:00
|
|
|
color: var(--highlight-lineno-color);
|
|
|
|
border-right: 1px solid var(--highlight-lineno-border-color);
|
2020-02-25 12:56:03 +03:00
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
-o-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
table {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
td pre {
|
|
|
|
overflow: visible; /* Fixed iOS safari overflow-x */
|
|
|
|
word-break: normal; /* Fixed iOS safari linenos code break */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
pre {
|
|
|
|
margin-bottom: 0;
|
|
|
|
font-size: .85rem;
|
|
|
|
line-height: 1.4rem;
|
|
|
|
word-wrap: normal;
|
|
|
|
/* Fixed Safari overflow-x */
|
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
|
2020-02-27 16:05:50 +03:00
|
|
|
} //.highlight
|
2019-09-30 15:38:41 +03:00
|
|
|
|
|
|
|
code {
|
|
|
|
-webkit-hyphens: none;
|
|
|
|
-ms-hyphens: none;
|
|
|
|
-moz-hyphens: none;
|
|
|
|
hyphens: none;
|
2020-02-25 12:56:03 +03:00
|
|
|
&.highlighter-rouge {
|
|
|
|
padding: 2px 4px;
|
|
|
|
margin: 0 .3rem;
|
|
|
|
border-radius: 4px;
|
2020-02-28 19:16:47 +03:00
|
|
|
border: 1px solid var(--code-highlighter-rouge);
|
|
|
|
}
|
|
|
|
@at-root a>&.highlighter-rouge {
|
|
|
|
padding-bottom: 0; // show link's underlinke
|
|
|
|
}
|
|
|
|
@at-root a:hover>&.highlighter-rouge {
|
|
|
|
border-bottom: none;
|
2020-02-25 12:56:03 +03:00
|
|
|
}
|
2019-09-30 15:38:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
td.rouge-code {
|
|
|
|
padding-left: 1rem;
|
|
|
|
padding-right: 1rem;
|
|
|
|
}
|
|
|
|
|
2019-11-03 10:21:18 +03:00
|
|
|
/* Hide line numbers for defualt, console, and terminal code snippets */
|
2020-02-27 16:05:50 +03:00
|
|
|
div {
|
|
|
|
&[class^='highlighter-rouge'],
|
|
|
|
&.language-console.highlighter-rouge,
|
|
|
|
&.language-terminal.highlighter-rouge {
|
|
|
|
pre.lineno {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
td.rouge-code {
|
|
|
|
padding: .8rem 1rem;
|
|
|
|
}
|
2020-02-11 19:04:59 +03:00
|
|
|
}
|
|
|
|
}
|