Files
hexo-blog/themes/hexo-theme-Tsu/source/styles/code.styl
2021-06-05 03:45:20 -05:00

124 lines
2.1 KiB
Stylus

code, pre {
padding: 7px;
font-size: $code-font-size;
font-family: $code-font-family;
background: $code-background;
}
code {
padding: 3px 5px;
color: $code-color;
}
.highlight {
margin: 1em 0;
overflow-x: auto;
box-shadow: 1px 1px 2px rgba(0,0,0,0.125);
table {
position: relative;
width: 100.1%
&::after {
position: absolute;
top: 0;
right: 0;
left: 0;
padding: 2px 7px;
font-size: $code-font-size;
font-weight: bold;
color: $gray;
background: $code-background;
content: 'Code';
}
}
// @each $sign, $text in $code-type-list {
// &.#{$sign} > ::after {
// content: $text;
// }
// }
.code {
pre {
margin: 0;
padding: 30px 10px 10px;
}
}
.gutter {
width: 10px;
color: $gray;
pre {
margin: 0;
padding: 30px 7px 10px;
}
}
.line {
// Fix code block null line height and
// Synchronous gutter and code line highly.
height: $code-font-size;
}
table, tr, td {
margin: 0;
padding: 0;
width: 100%;
border-collapse: collapse;
}
.code {
.comment,
.quote {
color: map-get($code-highlight-color, comment);
}
.keyword,
.selector-tag,
.addition {
color: map-get($code-highlight-color, keyword);
}
.number,
.string,
.meta .meta-string,
.literal,
.doctag,
.regexp {
color: map-get($code-highlight-color, number);
}
.title,
.section,
.name,
.selector-id,
.selector-class {
color: map-get($code-highlight-color, title);
}
.attribute,
.attr,
.variable,
.template-variable,
.class .title,
.type {
color: map-get($code-highlight-color, attribute);
}
.symbol,
.bullet,
.subst,
.meta,
.meta .keyword,
.selector-attr,
.selector-pseudo,
.link {
color: map-get($code-highlight-color, symbol);
}
.built_in,
.deletion {
color: map-get($code-highlight-color, built_in);
}
}
}