mirror of
https://github.com/loikein/hugo-tufte.git
synced 2025-08-14 22:32:44 +02:00
Improve code blocks styling (#13)
* add highlight config for code highlighter * add default pygment css "github" * fix styles for code blocks * remove dead html from margin note *These don't appear to do anything? * Fix scrolling in code block * More CSS fixes for code blocks * ignore generated scss files. Probably other generated files too * Use scss to generate more powerful styles for code blocks * Document new code blocks style option Improve code blocks styling
This commit is contained in:
parent
835a8701f8
commit
ba23674640
11 changed files with 311 additions and 124 deletions
static/css
|
@ -1,289 +0,0 @@
|
|||
/* ------------------------------------------------------------------------ */
|
||||
/* hugo-tufte.css */
|
||||
/* Contains extensions to the original tufte.css styles to */
|
||||
/* accomodate a blog-like site. */
|
||||
/* ------------------------------------------------------------------------ */
|
||||
|
||||
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@351&display=swap');
|
||||
|
||||
/* When setting the primary font stack, apply it to the Pure grid units along */
|
||||
/* with `html`, `button`, `input`, `select`, and `textarea`. Pure Grids use */
|
||||
/* specific font stacks to ensure the greatest OS/browser compatibility. */
|
||||
html, button, input, select, textarea, p, nav, section, article, header, footer, .pure-g [class *= "pure-u"] {
|
||||
font-family: "et-book", -apple-system, "San Francisco", "Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Open Sans","Helvetica Neue", "Lucida Grand", sans-serif;
|
||||
}
|
||||
|
||||
/* Hugo code blocks are <pre><code class="language-$lang">...</code></pre> */
|
||||
/*@media screen and (max-width: 760px) {
|
||||
pre code {
|
||||
}
|
||||
}*/
|
||||
|
||||
code {
|
||||
font-family: "Fira Code", Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
||||
font-size: 1.125rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
div.highlight{
|
||||
/* width: 52.5%; */
|
||||
}
|
||||
/* blockquote {
|
||||
width: 52.5%;
|
||||
|
||||
} */
|
||||
div.highlight::hover{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
pre code {
|
||||
width: 52.5%;
|
||||
display: block;
|
||||
font-size: 1rem;
|
||||
padding-left: 2.5%;
|
||||
overflow-x: scroll;
|
||||
}
|
||||
|
||||
/*@media (max-width: 760px) {
|
||||
pre code {
|
||||
width: 90%;
|
||||
padding: 0;
|
||||
}
|
||||
}*/
|
||||
|
||||
/* ------------------------------------------------------------------------ */
|
||||
/* Brand details, such as a sidebar or top display. */
|
||||
/* ------------------------------------------------------------------------ */
|
||||
header.brand{
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
/* Main brand title */
|
||||
header.brand h1 {
|
||||
margin: 0;
|
||||
font-weight: 400;
|
||||
color: rgba(65, 70, 75, 1);
|
||||
}
|
||||
|
||||
header.brand h2 {
|
||||
margin: 0;
|
||||
padding-top: 0rem;
|
||||
/*font-style: normal;*/
|
||||
/*font-weight: 200;*/
|
||||
color: rgba(100, 105, 110, 1);
|
||||
}
|
||||
|
||||
header.brand hr {
|
||||
text-align: left;
|
||||
margin-left: 0;
|
||||
width: 75%;
|
||||
border-color: rgba(250, 250, 250, 0.25);
|
||||
}
|
||||
|
||||
nav.menu ul {
|
||||
list-style: none;
|
||||
display: block;
|
||||
/*text-align:center;*/
|
||||
margin-top: 0.75rem;
|
||||
padding: 0;
|
||||
max-width: 45rem;
|
||||
/* Width is the same as tufte.css body */
|
||||
font-size: .9rem;
|
||||
width: 87.5%;
|
||||
}
|
||||
|
||||
nav.menu li {
|
||||
display: inline-block;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
nav.menu li a {
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
color: rgba(65, 70, 75, 1);
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
nav.menu li a:hover,
|
||||
nav.menu li a:active,
|
||||
nav.menu li a:focus {
|
||||
background: inherit;
|
||||
color: darkgray;
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------------------ */
|
||||
/* Generic content, such as the index list pages */
|
||||
/* ------------------------------------------------------------------------ */
|
||||
|
||||
/* Content Title styling. This is mostly to avoid underlying links. */
|
||||
h1.content-title {
|
||||
/*max-width: 50rem;*/
|
||||
}
|
||||
h1.content-title a:link,
|
||||
h1.content-title a:visited {
|
||||
background: transparent;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
h1.content-title a:hover,
|
||||
h1.content-title a:focus {
|
||||
color: darkgray;
|
||||
}
|
||||
|
||||
/* Content meta-data such as author, publication date, etc. */
|
||||
.content-meta {
|
||||
display: block;
|
||||
/*color: rgba(155, 155, 155, 1);*/
|
||||
color: rgba(100, 105, 110, 1);
|
||||
font-size: 1.1rem;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.content-meta .author {
|
||||
/*color: rgb(90, 20, 55)*/
|
||||
color: rgba(65, 70, 75, 1);
|
||||
}
|
||||
|
||||
|
||||
.post-avatar {
|
||||
border-radius: 50px;
|
||||
float: right;
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------------------ */
|
||||
/* Styling for listing pages. */
|
||||
/* ------------------------------------------------------------------------ */
|
||||
.list-page ul {
|
||||
list-style-type: none;
|
||||
margin: -0.25em;
|
||||
width: 87.5%;
|
||||
max-width: 45rem;
|
||||
}
|
||||
.list-page li {
|
||||
margin: 0;
|
||||
/*font-size: 95%;*/
|
||||
}
|
||||
.list-date {
|
||||
display: inline;
|
||||
font-size: 0.75em;
|
||||
/* padding-right: 2em; */
|
||||
/* margin-right: 2em; */
|
||||
}
|
||||
|
||||
/* Table of Contents */
|
||||
.toc summary {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: -1.5rem;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.toc {
|
||||
/*float: right;*/
|
||||
/*padding: 0rem 1rem 1rem 1rem;*/
|
||||
/*margin-top: 1rem;*/
|
||||
/*border-left: 1px solid #eee;*/
|
||||
}
|
||||
|
||||
.toc ul {
|
||||
list-style: none;
|
||||
display: block;
|
||||
/*margin-top: 0.75rem;*/
|
||||
padding: 0;
|
||||
width: 87.5%;
|
||||
}
|
||||
|
||||
.toc li {
|
||||
line-height: 0.5rem;
|
||||
margin: 1rem;
|
||||
}
|
||||
|
||||
table {
|
||||
margin-top: 1em;
|
||||
font-size: 1.4rem;
|
||||
width: auto; /* making booktabs style tables the unstyled default in case someone uses Markdown styling */
|
||||
/* margin: 0 auto; */
|
||||
/* border-spacing: 0px; */
|
||||
border-top: 2px solid #111;
|
||||
border-bottom: 2px solid #111;
|
||||
}
|
||||
|
||||
th, td{
|
||||
font-size: 1.25rem;
|
||||
line-height: 1.71428571;
|
||||
}
|
||||
|
||||
td {
|
||||
padding-right: 0.75em;
|
||||
}
|
||||
|
||||
/* Footer, but with a different name to avoid conflicts with tufte.css */
|
||||
footer.page-footer{
|
||||
padding-top: 1em;
|
||||
margin-top: 3em;
|
||||
color: #aaa;
|
||||
width: 95%;
|
||||
max-width: 45rem;
|
||||
}
|
||||
footer.page-footer p {
|
||||
font-size: 1.2rem;
|
||||
margin: 0em;
|
||||
/* light font looked odd on chrome */
|
||||
/*font-weight: lighter;*/
|
||||
}
|
||||
footer.page-footer a {
|
||||
color: rgba(65, 70, 75, 1);
|
||||
text-decoration: none;
|
||||
background: transparent;
|
||||
}
|
||||
footer.page-footer hr {
|
||||
text-align: left;
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
border-color: rgba(250, 250, 250, 0.25);
|
||||
}
|
||||
|
||||
footer.page-footer ul.page-footer-menu {
|
||||
list-style: none;
|
||||
display: block;
|
||||
/*text-align:center;*/
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
footer.page-footer ul.page-footer-menu li {
|
||||
display: inline-block;
|
||||
margin-right: 0.5rem;
|
||||
font-size: 55%;
|
||||
}
|
||||
|
||||
.copyright {
|
||||
}
|
||||
.copyright p {
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------------------ */
|
||||
/* Post Archive. */
|
||||
/* ------------------------------------------------------------------------ */
|
||||
/* We utilize the html5 summary tags in order to create a post archive */
|
||||
/* with built-in folding. */
|
||||
details {
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
details summary {
|
||||
vertical-align: top;
|
||||
padding: .3em .5em;
|
||||
outline: none;
|
||||
/*color: rgba(65, 70, 75, 1);*/
|
||||
}
|
||||
|
||||
details summary.year {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
details[open] summary {
|
||||
}
|
||||
|
|
@ -1,82 +0,0 @@
|
|||
/* Background */ .chroma { background-color: #ffffff }
|
||||
/* Other */ .chroma .x { }
|
||||
/* Error */ .chroma .err { }
|
||||
/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
|
||||
/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; width: auto; overflow: auto; display: block; }
|
||||
/* LineHighlight */ .chroma .hl { display: block; width: 100%;background-color: #ffffcc }
|
||||
/* LineNumbersTable */ .chroma .lnt { margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
|
||||
/* LineNumbers */ .chroma .ln { margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
|
||||
/* Keyword */ .chroma .k { font-weight: bold }
|
||||
/* KeywordConstant */ .chroma .kc { font-weight: bold }
|
||||
/* KeywordDeclaration */ .chroma .kd { font-weight: bold; font-style: italic }
|
||||
/* KeywordNamespace */ .chroma .kn { font-weight: bold }
|
||||
/* KeywordPseudo */ .chroma .kp { font-weight: bold }
|
||||
/* KeywordReserved */ .chroma .kr { font-weight: bold }
|
||||
/* KeywordType */ .chroma .kt { font-weight: bold }
|
||||
/* Name */ .chroma .n { }
|
||||
/* NameAttribute */ .chroma .na { }
|
||||
/* NameBuiltin */ .chroma .nb { font-weight: bold; font-style: italic }
|
||||
/* NameBuiltinPseudo */ .chroma .bp { font-weight: bold; font-style: italic }
|
||||
/* NameClass */ .chroma .nc { color: #666666; font-weight: bold; font-style: italic }
|
||||
/* NameConstant */ .chroma .no { color: #666666; font-weight: bold; font-style: italic }
|
||||
/* NameDecorator */ .chroma .nd { }
|
||||
/* NameEntity */ .chroma .ni { }
|
||||
/* NameException */ .chroma .ne { }
|
||||
/* NameFunction */ .chroma .nf { color: #666666; font-weight: bold; font-style: italic }
|
||||
/* NameFunctionMagic */ .chroma .fm { }
|
||||
/* NameLabel */ .chroma .nl { }
|
||||
/* NameNamespace */ .chroma .nn { color: #666666; font-weight: bold; font-style: italic }
|
||||
/* NameOther */ .chroma .nx { }
|
||||
/* NameProperty */ .chroma .py { }
|
||||
/* NameTag */ .chroma .nt { }
|
||||
/* NameVariable */ .chroma .nv { color: #666666; font-weight: bold; font-style: italic }
|
||||
/* NameVariableClass */ .chroma .vc { }
|
||||
/* NameVariableGlobal */ .chroma .vg { }
|
||||
/* NameVariableInstance */ .chroma .vi { }
|
||||
/* NameVariableMagic */ .chroma .vm { }
|
||||
/* Literal */ .chroma .l { }
|
||||
/* LiteralDate */ .chroma .ld { }
|
||||
/* LiteralString */ .chroma .s { color: #666666; font-style: italic }
|
||||
/* LiteralStringAffix */ .chroma .sa { color: #666666; font-style: italic }
|
||||
/* LiteralStringBacktick */ .chroma .sb { color: #666666; font-style: italic }
|
||||
/* LiteralStringChar */ .chroma .sc { color: #666666; font-style: italic }
|
||||
/* LiteralStringDelimiter */ .chroma .dl { color: #666666; font-style: italic }
|
||||
/* LiteralStringDoc */ .chroma .sd { color: #666666; font-style: italic }
|
||||
/* LiteralStringDouble */ .chroma .s2 { color: #666666; font-style: italic }
|
||||
/* LiteralStringEscape */ .chroma .se { color: #666666; font-style: italic }
|
||||
/* LiteralStringHeredoc */ .chroma .sh { color: #666666; font-style: italic }
|
||||
/* LiteralStringInterpol */ .chroma .si { color: #666666; font-style: italic }
|
||||
/* LiteralStringOther */ .chroma .sx { color: #666666; font-style: italic }
|
||||
/* LiteralStringRegex */ .chroma .sr { color: #666666; font-style: italic }
|
||||
/* LiteralStringSingle */ .chroma .s1 { color: #666666; font-style: italic }
|
||||
/* LiteralStringSymbol */ .chroma .ss { color: #666666; font-style: italic }
|
||||
/* LiteralNumber */ .chroma .m { }
|
||||
/* LiteralNumberBin */ .chroma .mb { }
|
||||
/* LiteralNumberFloat */ .chroma .mf { }
|
||||
/* LiteralNumberHex */ .chroma .mh { }
|
||||
/* LiteralNumberInteger */ .chroma .mi { }
|
||||
/* LiteralNumberIntegerLong */ .chroma .il { }
|
||||
/* LiteralNumberOct */ .chroma .mo { }
|
||||
/* Operator */ .chroma .o { }
|
||||
/* OperatorWord */ .chroma .ow { font-weight: bold }
|
||||
/* Punctuation */ .chroma .p { }
|
||||
/* Comment */ .chroma .c { color: #888888; font-style: italic }
|
||||
/* CommentHashbang */ .chroma .ch { color: #888888; font-style: italic }
|
||||
/* CommentMultiline */ .chroma .cm { color: #888888; font-style: italic }
|
||||
/* CommentSingle */ .chroma .c1 { color: #888888; font-style: italic }
|
||||
/* CommentSpecial */ .chroma .cs { color: #888888; font-weight: bold }
|
||||
/* CommentPreproc */ .chroma .cp { color: #888888; font-weight: bold }
|
||||
/* CommentPreprocFile */ .chroma .cpf { color: #888888; font-weight: bold }
|
||||
/* Generic */ .chroma .g { }
|
||||
/* GenericDeleted */ .chroma .gd { }
|
||||
/* GenericEmph */ .chroma .ge { }
|
||||
/* GenericError */ .chroma .gr { }
|
||||
/* GenericHeading */ .chroma .gh { }
|
||||
/* GenericInserted */ .chroma .gi { }
|
||||
/* GenericOutput */ .chroma .go { }
|
||||
/* GenericPrompt */ .chroma .gp { }
|
||||
/* GenericStrong */ .chroma .gs { }
|
||||
/* GenericSubheading */ .chroma .gu { }
|
||||
/* GenericTraceback */ .chroma .gt { }
|
||||
/* GenericUnderline */ .chroma .gl { }
|
||||
/* TextWhitespace */ .chroma .w { }
|
Loading…
Add table
Add a link
Reference in a new issue