From 534134ca2e78c522fc1d66d0c84580bf744edf72 Mon Sep 17 00:00:00 2001 From: 80B Date: Thu, 7 Jan 2021 21:47:08 +0000 Subject: [PATCH] . --- index.html | 81 ++++++++++++++++++++++++ index.json | 1 + notes/N2021-01-06-201332604 | 1 + style.css | 121 ++++++++++++++++++++++++++++++++++++ 4 files changed, 204 insertions(+) create mode 100644 index.html create mode 100644 index.json create mode 100644 notes/N2021-01-06-201332604 create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..4dca567 --- /dev/null +++ b/index.html @@ -0,0 +1,81 @@ + + + + + + +Michael D. Lowis - About Me + + + + + + + + diff --git a/index.json b/index.json new file mode 100644 index 0000000..f2260fc --- /dev/null +++ b/index.json @@ -0,0 +1 @@ +{"T2021-01-06-201242746":"An example task","T2021-01-06-202728067":"Untitled Task","J2021-01-06":"Journal 2021-01-06","N2021-01-06-201332604":" An example note"} \ No newline at end of file diff --git a/notes/N2021-01-06-201332604 b/notes/N2021-01-06-201332604 new file mode 100644 index 0000000..5c4d7f6 --- /dev/null +++ b/notes/N2021-01-06-201332604 @@ -0,0 +1 @@ +# An example note \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..612af12 --- /dev/null +++ b/style.css @@ -0,0 +1,121 @@ +:root { + --fg-color: #222222; +} + +body { + font-family: Verdana, Geneva, sans-serif; + line-height: 1.5em; + padding: 0; + margin: 1em; + max-width: 900px; + width: 90%; + margin-left: auto; + margin-right: auto; + color: var(--fg-color); + background: #F5F5F0; +} + +h1, h2, h3, h4, h5, h6 { + margin: 1.5em 0em 0em 0em; + font-weight: 100; +} +h1 { font-size: 2.00em; } +h2 { font-size: 1.50em; } +h3 { font-size: 1.17em; } +h4 { font-size: 1.12em; } +h5 { font-size: 0.83em; } +h6 { font-size: 0.67em; } + +a { text-decoration: none; } +p { margin: 1em 0 0 0; } +td { border-top: 1px solid var(--fg-color); } +pre { white-space: pre-wrap; } + +hr { + border: 0; + height: 1px; + background: var(--fg-color); +} + +img, svg { + display: block; + margin-left: auto; + margin-right: auto; +} + +table { + width: 100%; + text-align: left; + border-collapse: collapse; + border-spacing: 0; +} + +blockquote { + border-left: 3px solid #0000EE; + margin: 0em 1em 0em 1em; + padding: 0em 1em 0em 1em; +} + +//code { +// display: inline; +// padding: 0.25em 0.25em 0.25em 0.25em; +// background-color: #ffffff; +// border: 1px solid var(--fg-color); +//} +// +//pre code { +// display: block; +// padding: 0.5em 1em 0.5em 1em; +//} + +header a { + color: var(--fg-color); + text-decoration: none; + font-size: 1.5rem; + margin-left: 1rem; + flex-grow: 1; + + line-height: 2.5; + display: inline-block; + vertical-align: middle; + +} + +nav, header { + display: flex; + flex-wrap: wrap; +} + +nav a { + font-size: 1rem; + margin: 0 1rem 0 0; + flex-shrink: 1; +} + +aside { + display: none; + position: fixed; + z-index: 1; + left: 0; + top: 0; + width: 100%; + height: 100%; + overflow: auto; + background-color: rgb(0,0,0); + background-color: rgba(0,0,0,0.4); +} + +aside section { + background: #fafafa; + margin: 15% auto; + padding: 10px; + width: 80%; + overflow: hidden; + position: relative; + display: block; + border-radius: 2px; + box-sizing: border-box; + box-shadow: 0 2px 2px 0px rgba(0,0,0,0.14), + 0 3px 1px -2px rgba(0,0,0,0.20), + 0 1px 5px 0px rgba(0,0,0,0.12); +} -- 2.52.0