2021-11-24 01:08:24 +08:00
|
|
|
|
/******************************************************************************
|
|
|
|
|
##############################################################################
|
|
|
|
|
##### #####
|
|
|
|
|
##### Markdown StyleSheet of ui design BreadCard #####
|
|
|
|
|
##### #####
|
|
|
|
|
##### @author: Sukazyo Workshop #####
|
|
|
|
|
##### @version: 1.0 #####
|
|
|
|
|
##### #####
|
|
|
|
|
##############################################################################
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
|
|
|
|
|
--bcm-color-font-base: #223b5c;
|
|
|
|
|
--bcm-color-font-base-link: #409dff;
|
|
|
|
|
--bcm-color-font-base-link-hover: #0033ff;
|
|
|
|
|
--bcm-color-font-base-link-visited: #a27aeb;
|
|
|
|
|
--bcm-color-font-base-link-visited-hover: #5a00ff;
|
|
|
|
|
--bcm-color-font-base-link-focus-bg: #33aee92b;
|
2021-11-24 17:40:40 +08:00
|
|
|
|
--bcm-color-font-base-mark: #257c78;
|
|
|
|
|
--bcm-color-font-base-mark-bg: #ceff818a;
|
2021-11-24 01:08:24 +08:00
|
|
|
|
|
|
|
|
|
--bcm-color-blockquote-focus: #e2e5e8;
|
|
|
|
|
--bcm-color-blockquote-foreground: #949da9;
|
|
|
|
|
|
|
|
|
|
--bcm-color-list-item-marker-std: #949da9;
|
|
|
|
|
|
2021-11-24 17:40:40 +08:00
|
|
|
|
--bcm-color-table-background: #f6f8fa;
|
|
|
|
|
/*--bcm-color-table-background: #c7d4e5;*/
|
|
|
|
|
--bcm-color-table-head-background: #77a6e0;
|
|
|
|
|
--bcm-color-table-head-foreground: #f3f5f5;
|
|
|
|
|
--bcm-color-table-foot-background: #e7eef7;
|
|
|
|
|
--bcm-color-table-foot-foreground: #9dabba;
|
|
|
|
|
|
|
|
|
|
--bcm-color-code-inline-background: #f1f1f1;
|
|
|
|
|
--bcm-color-codeblock-background: #223b5c;
|
|
|
|
|
--bcm-color-codeblock-foreground: aliceblue;
|
|
|
|
|
|
|
|
|
|
--bcm-color-keyboard-background: #3764e2;
|
|
|
|
|
--bcm-color-keyboard-foreground: #ecedf1;
|
|
|
|
|
|
2021-11-24 01:08:24 +08:00
|
|
|
|
--bcm-color-seperator: #e2e5e8;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
--bcm-element-href-anima-speed: 0.1s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html {
|
|
|
|
|
color: var(--bcm-color-font-base);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*article * {*/
|
|
|
|
|
/* margin-bottom: 1rem;*/
|
|
|
|
|
/*}*/
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: var(--bcm-color-font-base-link);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
transition:
|
|
|
|
|
color var(--bcm-element-href-anima-speed),
|
|
|
|
|
background-color var(--bcm-element-href-anima-speed);
|
|
|
|
|
border-radius: 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
color: var(--bcm-color-font-base-link-hover);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
|
color: var(--bcm-color-font-base-link-visited);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:visited:hover {
|
|
|
|
|
color: var(--bcm-color-font-base-link-visited-hover);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:focus-visible {
|
|
|
|
|
background-color: var(--bcm-color-font-base-link-focus-bg);
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hr {
|
|
|
|
|
background-color: var(--bcm-color-seperator);
|
|
|
|
|
height: 0.25rem;
|
|
|
|
|
border-radius: 1rem;
|
|
|
|
|
width: 70%;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hr {
|
|
|
|
|
margin-block-start: 3rem;
|
|
|
|
|
margin-block-end: 3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p,
|
|
|
|
|
h1, h2, h3, h4, h5, h6,
|
2022-09-29 17:51:25 +08:00
|
|
|
|
ul, ol, table,
|
|
|
|
|
pre {
|
2021-11-24 01:08:24 +08:00
|
|
|
|
margin-block-start: 1.6rem;
|
|
|
|
|
margin-block-end: 1.6rem;
|
|
|
|
|
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul ul,
|
|
|
|
|
ol ul,
|
|
|
|
|
ul ol,
|
|
|
|
|
ol ol {
|
|
|
|
|
margin-block-start: inherit;
|
|
|
|
|
margin-block-end: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul, ol {
|
|
|
|
|
padding-inline-start: 1.2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
li::marker {
|
|
|
|
|
color: var(--bcm-color-list-item-marker-std);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ol > li::marker {
|
|
|
|
|
font-size: 0.65rem;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-24 17:40:40 +08:00
|
|
|
|
table {
|
|
|
|
|
background: var(--bcm-color-table-background);
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
border-spacing: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table > thead > tr > :is(th, td) {
|
|
|
|
|
background: var(--bcm-color-table-head-background);
|
|
|
|
|
color: var(--bcm-color-table-head-foreground);
|
|
|
|
|
border-radius: 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table > tfoot > tr > :is(th, td) {
|
|
|
|
|
background: var(--bcm-color-table-foot-background);
|
|
|
|
|
color: var(--bcm-color-table-foot-foreground);
|
|
|
|
|
border-radius: 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*table > thead,*/
|
|
|
|
|
/*table > tbody {*/
|
|
|
|
|
/* margin: -0.5rem;*/
|
|
|
|
|
/*}*/
|
|
|
|
|
|
|
|
|
|
table > thead > tr > :is(th, td) {
|
|
|
|
|
padding: 0.3rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table > :is(tbody, tfoot) > tr > :is(th, td) {
|
|
|
|
|
padding: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-24 01:08:24 +08:00
|
|
|
|
blockquote {
|
|
|
|
|
margin-block-start: 2.6rem;
|
|
|
|
|
margin-block-end: 2.6rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin-inline-start: 0;
|
|
|
|
|
margin-inline-end: 0;
|
|
|
|
|
padding-left: 0.88rem;
|
|
|
|
|
color: var(--bcm-color-blockquote-foreground);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
blockquote:before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -0.5rem;
|
|
|
|
|
bottom: -0.5rem;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 0.25rem;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
background: var(--bcm-color-blockquote-focus);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
code {
|
|
|
|
|
padding: 0.2rem;
|
|
|
|
|
border-radius: 0.3rem;
|
2021-11-24 17:40:40 +08:00
|
|
|
|
background: var(--bcm-color-code-inline-background);
|
2021-11-24 01:08:24 +08:00
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pre {
|
2022-09-29 17:51:25 +08:00
|
|
|
|
margin-left: 1.4rem;
|
|
|
|
|
margin-right: 1.4rem;
|
2021-11-24 01:08:24 +08:00
|
|
|
|
padding: 0.7rem 0;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
display: block;
|
2021-11-24 17:40:40 +08:00
|
|
|
|
background: var(--bcm-color-codeblock-background);
|
|
|
|
|
color: var(--bcm-color-codeblock-foreground);
|
2021-11-24 01:08:24 +08:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pre code {
|
|
|
|
|
display: block;
|
2021-11-24 17:40:40 +08:00
|
|
|
|
background: var(--bcm-color-codeblock-background);
|
2021-11-24 01:08:24 +08:00
|
|
|
|
overflow-x: scroll;
|
|
|
|
|
padding: 0.2rem 1.2rem 0.6rem;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
font-size: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pre code::-webkit-scrollbar {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
height: 0.25rem;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pre code::-webkit-scrollbar-thumb {
|
|
|
|
|
height: 0.25rem;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
background: var(--color-scrollbar-main-foreground);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pre code::-webkit-scrollbar-track {
|
|
|
|
|
height: 0.25rem;
|
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
|
background: none;
|
|
|
|
|
margin: 0.7rem;
|
2021-11-24 17:40:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
kbd {
|
|
|
|
|
background: var(--bcm-color-keyboard-background);
|
|
|
|
|
border-radius: 50% 45% 0.1rem 0.2rem;
|
|
|
|
|
color: var(--bcm-color-keyboard-foreground);
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
padding: 0.2rem 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kbd + kbd {
|
|
|
|
|
margin-inline-start: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mark {
|
|
|
|
|
background-color: var(--bcm-color-font-base-mark-bg);
|
|
|
|
|
color: var(--bcm-color-font-base-mark);
|
|
|
|
|
border-radius: 0.1rem;
|
|
|
|
|
}
|
2023-01-29 10:41:50 +08:00
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|