summaryrefslogtreecommitdiff
path: root/doc/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'doc/style.css')
-rw-r--r--doc/style.css48
1 files changed, 48 insertions, 0 deletions
diff --git a/doc/style.css b/doc/style.css
new file mode 100644
index 0000000..d6ff59a
--- /dev/null
+++ b/doc/style.css
@@ -0,0 +1,48 @@
+body {
+ color: #f6f5f4;
+ background: #181a1b;
+}
+
+#flex-root {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ width: 100%;
+}
+
+a {
+ color: #f57c85;
+}
+
+a:visited {
+ color: #fa6571;
+}
+
+#toc {
+ border-style: none solid none none;
+ border-width: 1px;
+ border-color: #f57c85;
+ flex: 1 15 0;
+ max-width: 15em;
+ min-height: 15em;
+}
+
+#content {
+ margin: 0 1em;
+ flex: 1 1 0;
+}
+
+#footer {
+ border-style: solid none none none;
+ border-width: 1px;
+ border-color: #f57c85;
+ padding: 1em;
+}
+
+#footer #prev {
+ float: left;
+}
+
+#footer #next {
+ float: right;
+}