2018-08-02 22:47:49 +01:00
|
|
|
* {
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
2019-01-21 16:10:27 +00:00
|
|
|
font-family: "Courier", monospace;
|
2019-01-15 21:28:58 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
line-height: 1.5em;
|
2019-01-05 11:56:12 +00:00
|
|
|
}
|
|
|
|
|
2018-08-02 22:47:49 +01:00
|
|
|
body {
|
2019-01-21 16:10:27 +00:00
|
|
|
color: #eee;
|
|
|
|
background-color: #222;
|
2019-01-15 21:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body > header,
|
|
|
|
body > footer {
|
|
|
|
background-color: #111;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0.6em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > main,
|
|
|
|
body > nav,
|
|
|
|
body > header > section,
|
|
|
|
body > footer > section {
|
|
|
|
max-width: 88ch;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
dt {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6, hr,
|
|
|
|
dt {
|
|
|
|
margin: 2em 0 0.6em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
main p {
|
|
|
|
margin: 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
border-bottom: 4px double #999;
|
2019-01-21 16:10:27 +00:00
|
|
|
text-transform:uppercase;
|
2019-03-22 15:49:24 +00:00
|
|
|
text-align: center;
|
|
|
|
padding-bottom: 1em;
|
2019-01-15 21:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
article > footer > dl > dt,
|
|
|
|
h2 {
|
|
|
|
border-bottom: 1px solid #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
article > footer > dl > dt,
|
|
|
|
h3,
|
|
|
|
hr {
|
|
|
|
border-bottom: 1px dotted #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
border-bottom: 1px dashed #999;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
svg {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
fill: currentColor;
|
2019-01-31 21:23:16 +00:00
|
|
|
vertical-align:middle;
|
2019-01-15 21:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body > svg {
|
|
|
|
display: none;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2018-12-31 17:22:31 +00:00
|
|
|
color: #f90;
|
2018-08-02 22:47:49 +01:00
|
|
|
text-decoration: none;
|
2018-09-04 21:58:25 +01:00
|
|
|
border-bottom: 1px solid transparent;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
2019-01-15 21:28:58 +00:00
|
|
|
color: #eee;
|
|
|
|
border-bottom: 1px solid #eee;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
sup {
|
|
|
|
vertical-align: unset;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
sup:before {
|
|
|
|
content: '[';
|
Back To Pandoc
So, Python Markdown is a bottomless pit of horrors, including crippling parsing bugs,
random out of nowhere, lack of features. It's definitely much faster, than
Pandoc, but Pandoc doesn't go full retard where there's a regex in a fenced code block,
that happens to be a regex for markdown elements.
Also added some ugly post string replacements to make Pandoc fenced code output work
with Prism:
instead of the Pandoc <pre class="codelang"><code>, Prism wants
<pre><code class="language-codelang>, so I added a regex sub, because it's 00:32.
2018-08-04 00:28:55 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
sup:after {
|
|
|
|
content: ']';
|
2018-11-03 09:48:37 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
input, button, label {
|
|
|
|
-webkit-appearance:none;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
nav > ul {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav > ul > li {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > header form {
|
|
|
|
display: inline-block;
|
|
|
|
padding-left: 0.6em;
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > header a {
|
|
|
|
font-weight: bold;
|
|
|
|
border-bottom: 3px solid transparent;
|
|
|
|
padding-bottom: 0.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > header a:hover,
|
|
|
|
body > header a.active {
|
|
|
|
border-bottom: 3px solid #eee;
|
|
|
|
color: #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > header a svg {
|
|
|
|
display: block;
|
|
|
|
margin: 0.1em auto;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
border-left: 3px solid #999;
|
|
|
|
margin: 2em 0 2em 1em;
|
|
|
|
padding: 0 0 0 1em;
|
|
|
|
color: #aaa;
|
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
input {
|
|
|
|
width: 8em;
|
|
|
|
padding: 0 0.3em;
|
|
|
|
border: none;
|
|
|
|
background-color: #333;
|
|
|
|
color: #ccc;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
.hidden, .theme,
|
|
|
|
.theme input, input[type=submit] {
|
|
|
|
display: none;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
.theme input + label {
|
|
|
|
color: #f90;
|
|
|
|
cursor: pointer;
|
|
|
|
border-bottom: 3px solid transparent;
|
|
|
|
padding-bottom: 0.1em;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
.theme input:hover + label,
|
|
|
|
.theme input:checked + label {
|
|
|
|
border-bottom: 3px solid #eee;
|
|
|
|
color: #eee;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
body > footer {
|
|
|
|
margin-top: 2em;
|
|
|
|
}
|
|
|
|
|
2019-02-08 23:32:52 +00:00
|
|
|
body > footer > section > * {
|
2019-01-21 16:10:27 +00:00
|
|
|
margin-bottom: 0.6em;
|
2019-01-15 21:28:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body > footer .email span {
|
|
|
|
display: none;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2018-11-16 22:39:12 +00:00
|
|
|
video,
|
2018-08-02 22:47:49 +01:00
|
|
|
figure img {
|
|
|
|
display: block;
|
|
|
|
max-height: 98vh;
|
|
|
|
max-width: 100%;
|
|
|
|
width:auto;
|
|
|
|
height:auto;
|
|
|
|
margin: 0 auto;
|
|
|
|
border: 1px solid #000;
|
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
figure {
|
|
|
|
margin: 2em 0;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
figcaption {
|
|
|
|
margin-top: 1em;
|
2018-11-15 14:06:35 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
figcaption > dl {
|
|
|
|
margin-top: 1em;
|
|
|
|
color: #666;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
figcaption > dl * {
|
|
|
|
display: inline-block;
|
2018-12-11 14:06:18 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
figcaption > dl dt {
|
|
|
|
display: none;
|
2018-12-11 14:06:18 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
figcaption > dl dd {
|
|
|
|
margin: 0 0.3em;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-03-22 15:49:24 +00:00
|
|
|
.vcard img {
|
2019-01-15 21:28:58 +00:00
|
|
|
height: 1em;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
code, pre {
|
2019-01-21 16:10:27 +00:00
|
|
|
color: #3c3;
|
2018-08-02 22:47:49 +01:00
|
|
|
border: 1px solid #666;
|
|
|
|
direction: ltr;
|
|
|
|
word-break: break-all;
|
|
|
|
word-wrap: break-word;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
overflow:initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
padding: 0.6em;
|
Back To Pandoc
So, Python Markdown is a bottomless pit of horrors, including crippling parsing bugs,
random out of nowhere, lack of features. It's definitely much faster, than
Pandoc, but Pandoc doesn't go full retard where there's a regex in a fenced code block,
that happens to be a regex for markdown elements.
Also added some ugly post string replacements to make Pandoc fenced code output work
with Prism:
instead of the Pandoc <pre class="codelang"><code>, Prism wants
<pre><code class="language-codelang>, so I added a regex sub, because it's 00:32.
2018-08-04 00:28:55 +01:00
|
|
|
position: relative;
|
2019-01-15 21:28:58 +00:00
|
|
|
margin: 1em 0;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
2019-01-15 21:28:58 +00:00
|
|
|
padding: 0.05em 0.2em;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pre > code {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2018-12-27 19:48:06 +00:00
|
|
|
pre > code::before {
|
Back To Pandoc
So, Python Markdown is a bottomless pit of horrors, including crippling parsing bugs,
random out of nowhere, lack of features. It's definitely much faster, than
Pandoc, but Pandoc doesn't go full retard where there's a regex in a fenced code block,
that happens to be a regex for markdown elements.
Also added some ugly post string replacements to make Pandoc fenced code output work
with Prism:
instead of the Pandoc <pre class="codelang"><code>, Prism wants
<pre><code class="language-codelang>, so I added a regex sub, because it's 00:32.
2018-08-04 00:28:55 +01:00
|
|
|
content: attr(lang);
|
|
|
|
float: right;
|
2018-08-04 09:30:26 +01:00
|
|
|
color: #999;
|
2018-11-03 09:48:37 +00:00
|
|
|
border-left: 1px solid #666;
|
|
|
|
border-bottom: 1px solid #666;
|
2019-01-15 21:28:58 +00:00
|
|
|
padding: 0 0.3em;
|
|
|
|
margin: -0.6em -0.6em 0 0;
|
Back To Pandoc
So, Python Markdown is a bottomless pit of horrors, including crippling parsing bugs,
random out of nowhere, lack of features. It's definitely much faster, than
Pandoc, but Pandoc doesn't go full retard where there's a regex in a fenced code block,
that happens to be a regex for markdown elements.
Also added some ugly post string replacements to make Pandoc fenced code output work
with Prism:
instead of the Pandoc <pre class="codelang"><code>, Prism wants
<pre><code class="language-codelang>, so I added a regex sub, because it's 00:32.
2018-08-04 00:28:55 +01:00
|
|
|
}
|
|
|
|
|
2018-08-02 22:47:49 +01:00
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
td, th {
|
2018-08-02 22:47:49 +01:00
|
|
|
padding: 0.3em;
|
|
|
|
border: 1px solid #777;
|
|
|
|
text-align:left;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2018-08-04 09:30:26 +01:00
|
|
|
th, tr:nth-child(even) {
|
|
|
|
background-color: rgba(255, 255, 255, .1);
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-21 16:10:27 +00:00
|
|
|
main > header > p {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2019-03-22 15:49:24 +00:00
|
|
|
article > header {
|
|
|
|
border-bottom: 4px double #999;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.h-feed article > header {
|
|
|
|
border: none;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
main ul {
|
|
|
|
margin-left: 2em;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
main ol {
|
|
|
|
margin-left: 3em;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
li p {
|
|
|
|
margin: 0;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
.footnotes hr:before {
|
|
|
|
content: 'Links';
|
2018-08-02 22:47:49 +01:00
|
|
|
color: #ccc;
|
2019-01-15 21:28:58 +00:00
|
|
|
font-weight: bold;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2019-02-07 19:27:15 +00:00
|
|
|
.comments .u-url,
|
Back To Pandoc
So, Python Markdown is a bottomless pit of horrors, including crippling parsing bugs,
random out of nowhere, lack of features. It's definitely much faster, than
Pandoc, but Pandoc doesn't go full retard where there's a regex in a fenced code block,
that happens to be a regex for markdown elements.
Also added some ugly post string replacements to make Pandoc fenced code output work
with Prism:
instead of the Pandoc <pre class="codelang"><code>, Prism wants
<pre><code class="language-codelang>, so I added a regex sub, because it's 00:32.
2018-08-04 00:28:55 +01:00
|
|
|
.footnotes a {
|
2018-08-02 22:47:49 +01:00
|
|
|
display: inline-block;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
vertical-align: top;
|
2019-01-15 21:28:58 +00:00
|
|
|
max-width: 96%;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
Back To Pandoc
So, Python Markdown is a bottomless pit of horrors, including crippling parsing bugs,
random out of nowhere, lack of features. It's definitely much faster, than
Pandoc, but Pandoc doesn't go full retard where there's a regex in a fenced code block,
that happens to be a regex for markdown elements.
Also added some ugly post string replacements to make Pandoc fenced code output work
with Prism:
instead of the Pandoc <pre class="codelang"><code>, Prism wants
<pre><code class="language-codelang>, so I added a regex sub, because it's 00:32.
2018-08-04 00:28:55 +01:00
|
|
|
.footnote-back {
|
2019-01-15 21:28:58 +00:00
|
|
|
margin: 0 0 0 0.6em;
|
2019-01-15 21:28:03 +00:00
|
|
|
}
|
|
|
|
|
2019-01-21 16:10:27 +00:00
|
|
|
main > section > article {
|
|
|
|
padding-left: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > nav {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > nav > ul > li {
|
|
|
|
margin: 0 0.6em;
|
|
|
|
}
|
|
|
|
|
2018-11-16 22:39:12 +00:00
|
|
|
@media all and (min-width: 58em) {
|
2019-02-08 23:32:52 +00:00
|
|
|
body > header > section {
|
2018-12-27 19:48:06 +00:00
|
|
|
text-align: left;
|
2018-08-02 22:47:49 +01:00
|
|
|
display: flex;
|
2018-08-08 09:42:42 +01:00
|
|
|
justify-content:space-between;
|
2018-08-02 22:47:49 +01:00
|
|
|
}
|
|
|
|
|
2018-08-08 09:42:42 +01:00
|
|
|
body > header a svg {
|
|
|
|
display: inline-block;
|
Back To Pandoc
So, Python Markdown is a bottomless pit of horrors, including crippling parsing bugs,
random out of nowhere, lack of features. It's definitely much faster, than
Pandoc, but Pandoc doesn't go full retard where there's a regex in a fenced code block,
that happens to be a regex for markdown elements.
Also added some ugly post string replacements to make Pandoc fenced code output work
with Prism:
instead of the Pandoc <pre class="codelang"><code>, Prism wants
<pre><code class="language-codelang>, so I added a regex sub, because it's 00:32.
2018-08-04 00:28:55 +01:00
|
|
|
}
|
2019-01-15 21:28:03 +00:00
|
|
|
|
2019-01-15 21:28:58 +00:00
|
|
|
body > header form {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2018-11-19 14:36:06 +00:00
|
|
|
}
|
2018-12-27 19:48:06 +00:00
|
|
|
|
|
|
|
body > img {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 10em;
|
|
|
|
height: auto;
|
2019-03-22 15:49:24 +00:00
|
|
|
}
|