hugo-tufte/assets/scss/components/code-highlight.scss

79 lines
1.5 KiB
SCSS
Raw Normal View History

$ht-code-border-radius: .4em;
.highlight {
width: 50%;
overflow-x: scroll;
// border-radius: $ht-code-border-radius;
margin-top: 1.4em;
margin-bottom: 1.4em;
margin-right: 2.5%;
margin-left: 2.5%;
-ms-overflow-style: none;
scrollbar-width: none;
&::-webkit-scrollbar {
display: none;
}
code {
font-size: 1rem;
display: block;
}
&>.chroma {
margin: 0;
}
&>.chroma .hl {
// border-radius: $ht-code-border-radius / 2;
display: block;
&::before{
content: "> ";
2023-04-18 01:29:12 +02:00
// font-family: "Noto Emoji";
font-family: inherit;
position: absolute;
left: 0;
color: #111;
}
}
2021-12-11 18:39:47 +01:00
&>div.chroma>table.lntable{
overflow: initial;
// margin: $ht-code-border-radius 0 $ht-code-border-radius 0;
& td:first-of-type {
& span:not(& span>span) {
padding: 0 .75em 0 .5em;
}
}
pre {
margin-block-start: 0.5em;
margin-block-end: 0.5em;
}
}
&>.chroma>code {
width: max-content;
margin-top: .5em;
margin-bottom: .5em;
margin-left: .5em;
&>span.hl{
margin-left: -.5em;
padding-left: .5em;
}
}
}
2021-12-11 18:39:47 +01:00
@media screen and (max-width: 760px) {
2023-04-18 01:29:12 +02:00
.highlight {
2021-12-11 18:39:47 +01:00
width: 90%;
}
}
// fix #48 => https://github.com/slashformotion/hugo-tufte/issues/48
ul>li>div.highlight {
width: 100%;
}