From 0abf3511646446ee64f21d551dd0d2214fd624b7 Mon Sep 17 00:00:00 2001 From: Matt Singleton Date: Wed, 19 Jan 2022 18:58:02 -0600 Subject: organizing the repo a bit --- resources/error_template.html | 14 ++++++++++++++ resources/external_link.svg | 1 + resources/input_template.html | 16 ++++++++++++++++ resources/page_template.html | 13 +++++++++++++ resources/style.css | 29 +++++++++++++++++++++++++++++ 5 files changed, 73 insertions(+) create mode 100644 resources/error_template.html create mode 100644 resources/external_link.svg create mode 100644 resources/input_template.html create mode 100644 resources/page_template.html create mode 100644 resources/style.css (limited to 'resources') diff --git a/resources/error_template.html b/resources/error_template.html new file mode 100644 index 0000000..3daacb7 --- /dev/null +++ b/resources/error_template.html @@ -0,0 +1,14 @@ + + + + + + + + +

$status

+

$meta

+ + diff --git a/resources/external_link.svg b/resources/external_link.svg new file mode 100644 index 0000000..ce9bd89 --- /dev/null +++ b/resources/external_link.svg @@ -0,0 +1 @@ + diff --git a/resources/input_template.html b/resources/input_template.html new file mode 100644 index 0000000..defbb7a --- /dev/null +++ b/resources/input_template.html @@ -0,0 +1,16 @@ + + + + + + + + +
+ + + + + diff --git a/resources/page_template.html b/resources/page_template.html new file mode 100644 index 0000000..e049d56 --- /dev/null +++ b/resources/page_template.html @@ -0,0 +1,13 @@ + + + + + + + + +$body + + diff --git a/resources/style.css b/resources/style.css new file mode 100644 index 0000000..6b06966 --- /dev/null +++ b/resources/style.css @@ -0,0 +1,29 @@ +html { + font-size: 18px; + font-family: Garamond, Georgia, sans-serif; +} + +pre { + font-family: Courier, monospace; +} + +blockquote { + border-left: 5px solid #ddd; + padding: 0.6em 0.6em 0.2em; + font-style: italic; +} + +blockquote:before { + content: "\201C"; + display: inline-block; + padding-right: 0.4rem; + font-size: 4em; + line-height: 0; + vertical-align: -0.4em; + color: lightgrey; + margin-right: 0.1em; +} + +li.link::marker { + content: '⇒ '; +} -- cgit v1.2.3