aboutsummaryrefslogtreecommitdiffstats
path: root/static/style.css
diff options
context:
space:
mode:
authorJokler <jokler@protonmail.com>2020-02-09 22:19:38 +0100
committerJokler <jokler@protonmail.com>2020-02-22 23:20:10 +0100
commit1e0fb0a8fab5c9f2f8a58c2637830522863ef04f (patch)
treebfad95020178250e59f6fbb05caecb6712343e60 /static/style.css
parent2273403d5f7c0e8994d7cefcfe641475e76f1d87 (diff)
downloadpokebot-1e0fb0a8fab5c9f2f8a58c2637830522863ef04f.tar.gz
pokebot-1e0fb0a8fab5c9f2f8a58c2637830522863ef04f.zip
Webserver: Add API documentation and basic css
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css63
1 files changed, 63 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..09a985c
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,63 @@
+@font-face {
+ font-family: 'roboto-regular';
+ src: url('fonts/Roboto-Regular.ttf') format('truetype');
+}
+
+@font-face {
+ font-family: 'roboto-light';
+ src: url('fonts/Roboto-Light.ttf') format('truetype');
+}
+
+@font-face {
+ font-family: 'roboto-bold';
+ src: url('fonts/Roboto-Bold.ttf') format('truetype');
+}
+
+body {
+ background-color: #151515;
+}
+
+main {
+ margin: auto;
+ max-width: 800px;
+ padding: 1em;
+ background-color: #202020;
+ color: #eee;
+ font-family: 'roboto-regular', Arial;
+}
+
+nav > a {
+ font-size: 1.4rem;
+}
+
+a, a:visited {
+ color: #eee;
+}
+
+a:hover {
+ color: #ccc;
+}
+
+pre {
+ font-size: 0.9rem;
+ font-family: monospace;
+ background-color: #151515;
+ overflow: auto;
+ padding: 1em;
+}
+
+.code-background {
+ background-color: #151515;
+}
+
+.code-normal {
+ color: #c0c5ce;
+}
+
+.code-string {
+ color:#a3be8c;
+}
+
+.code-number {
+ color: #d08770;
+}