From 76aed6ef732de38d82245b3d674f70bab30221e5 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Fri, 3 Jul 2015 22:31:49 -0400 Subject: Fuck it, serve the files directly. --- .html/media/css/_list.html | 94 ++++++++++++++++++++++++++++++ .html/media/css/grimoire.css | 135 +++++++++++++++++++++++++++++++++++++++++++ .html/media/css/index.html | 94 ++++++++++++++++++++++++++++++ .html/media/css/reset.css | 48 +++++++++++++++ 4 files changed, 371 insertions(+) create mode 100644 .html/media/css/_list.html create mode 100644 .html/media/css/grimoire.css create mode 100644 .html/media/css/index.html create mode 100644 .html/media/css/reset.css (limited to '.html/media/css') diff --git a/.html/media/css/_list.html b/.html/media/css/_list.html new file mode 100644 index 0000000..b17b4d1 --- /dev/null +++ b/.html/media/css/_list.html @@ -0,0 +1,94 @@ + + + + + The Codex » + ls /media/css + + + + + + + + +
+ + + + + +
+

ls /media/css

+ + + + + + +
+

Files

+ +
  • grimoire.css
  • + +
  • reset.css
  • + +
    + +
    + + + + + + + + +
    + + \ No newline at end of file diff --git a/.html/media/css/grimoire.css b/.html/media/css/grimoire.css new file mode 100644 index 0000000..e817dd4 --- /dev/null +++ b/.html/media/css/grimoire.css @@ -0,0 +1,135 @@ +/* typography */ +body { + font-family: 'Baskerville', 'Buenard', serif; + font-size: 20px; + line-height: 30px; +} + +code { + font-family: 'Menlo', monospace; + font-size: 80%; +} + +em { + font-style: italic; +} + +strong { + font-weight: bold; +} + +blockquote { + margin-left: 40px; + color: #555; +} + +:link { + text-decoration: none; +} + +hr { + border: none; + border-top: 1px solid #AAA; + margin-left: 80px; + margin-right: 80px; +} + +h1, h2, h3, h4, h5, h6 { + font-weight: bold; +} + +h1 { + font-size: 40px; + line-height: 60px; + margin-bottom: 15px; +} +h2 { + font-size: 30px; + line-height: 45px; + margin-bottom: 15px; +} +h3 { + font-size: 20px; + line-height: 30px; + margin-bottom: 15px; +} + +/* layout */ +#shell { + margin-left: auto; + margin-right: auto; + width: 840px; +} + +#shell > * { + margin-top: 15px; + margin-bottom: 15px; + padding: 0 10px; +} + +#article, +#listing { + padding-left: 50px; +} +h1, h2, h3, h4, h5, h6 { + margin-left: -40px; +} + +#article p, +#article pre, +#article ul, +#article ol, +#article dl, +#listing ul { + margin-bottom: 15px; +} + +#article pre { + margin-left: 40px; +} + +#article > p > img { + margin-left: auto; + margin-right: auto; + display: block; +} + +#article ul { + list-style-type: disc; +} +#article ol { + list-style-type: decimal; +} + +#article ul, +#article ol, +#article dl { + padding-left: 40px; +} + +#article dd { + padding-left: 40px; +} + +#breadcrumbs li { + display: inline-block; +} +#breadcrumbs li.not-last:after { + content: '•'; +} + +@media print { + #breadcrumbs, + #comments, + #footer { + display: none; + } + + a:link { + color: black; + } + :link:after { + content: " (" attr(href) ")"; + font-size: 16px; + } +} \ No newline at end of file diff --git a/.html/media/css/index.html b/.html/media/css/index.html new file mode 100644 index 0000000..b17b4d1 --- /dev/null +++ b/.html/media/css/index.html @@ -0,0 +1,94 @@ + + + + + The Codex » + ls /media/css + + + + + + + + +
    + + + + + +
    +

    ls /media/css

    + + + + + + +
    +

    Files

    + +
  • grimoire.css
  • + +
  • reset.css
  • + +
    + +
    + + + + + + + + +
    + + \ No newline at end of file diff --git a/.html/media/css/reset.css b/.html/media/css/reset.css new file mode 100644 index 0000000..e29c0f5 --- /dev/null +++ b/.html/media/css/reset.css @@ -0,0 +1,48 @@ +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} -- cgit v1.2.3