aboutsummaryrefslogtreecommitdiffstats
path: root/static/css/pagedown.css
diff options
context:
space:
mode:
authorMatt Kohls <mattkohls13@gmail.com>2020-06-06 18:16:00 -0400
committerMatt Kohls <mattkohls13@gmail.com>2020-06-06 18:16:00 -0400
commit0da6ee8846f597ac897646a2f33521a1efe0655c (patch)
treefb927345bbe9306a9f0efe5eeb4b080442974a16 /static/css/pagedown.css
downloadpagedown-0da6ee8846f597ac897646a2f33521a1efe0655c.tar.gz
pagedown-0da6ee8846f597ac897646a2f33521a1efe0655c.tar.bz2
pagedown-0da6ee8846f597ac897646a2f33521a1efe0655c.zip
Initial work on theme
Diffstat (limited to 'static/css/pagedown.css')
-rw-r--r--static/css/pagedown.css89
1 files changed, 89 insertions, 0 deletions
diff --git a/static/css/pagedown.css b/static/css/pagedown.css
new file mode 100644
index 0000000..11e33e6
--- /dev/null
+++ b/static/css/pagedown.css
@@ -0,0 +1,89 @@
+html, body {
+ min-height: 100%;
+ height: 100%;
+ margin: 1em
+}
+
+body {
+ color: #212529;
+ background-color: #fff;
+ font-family: sans-serif
+}
+
+img, video {
+ display: block;
+ max-width: 80%;
+ box-shadow: 1px 1px 5px 0 rgba(0,0,0,.4);
+ margin: 0 auto
+}
+
+pre {
+ font-family: monospace;
+ background: #eee;
+ padding: .5rem;
+ margin: 0 -.5rem;
+ overflow-x: auto
+}
+
+nav {
+ margin: 0 auto;
+ clear: both
+}
+
+nav a:not(:first-child) {
+ margin-left: 1rem
+}
+
+nav .brand {
+ font-size: 1.25rem;
+ position: relative;
+ top: 1px
+}
+
+label {
+ display: inline-block;
+ margin-bottom: .25rem
+}
+
+h1 {
+ font-family: serif
+}
+
+h2 {
+ font-family: serif
+}
+
+h3 {
+ font-family: serif
+}
+
+h4 {
+ font-family: serif
+}
+
+header {
+ width: 50%;
+ margin-top: .5rem;
+}
+
+table {
+ border-collapse: collapse;
+ border: 0px
+}
+
+th {
+ border-bottom: 1px solid #212121
+}
+
+th, td {
+ padding: 5px;
+}
+
+tr:nth-child(even) {
+ background-color: #f6f6f6
+}
+
+footer {
+ width: 50%;
+ margin: 0 0 1rem
+}