aboutsummaryrefslogtreecommitdiffstats
path: root/web_server/static
diff options
context:
space:
mode:
authorFelix Kaaman <tmtu@tmtu.ee>2020-02-22 23:27:01 +0100
committerGitHub <noreply@github.com>2020-02-22 23:27:01 +0100
commit763b8c6579f3ae571f7287c72b9fb4f8b6e89349 (patch)
treebc55a0e79107a93bc3e605a0cae32926dc4c52fc /web_server/static
parent2792ba9c8a7120a91b3bd2c6075e737690e73405 (diff)
parent326cfa543c6263818aad7dec4a869bc8139ec14c (diff)
downloadpokebot-763b8c6579f3ae571f7287c72b9fb4f8b6e89349.tar.gz
pokebot-763b8c6579f3ae571f7287c72b9fb4f8b6e89349.zip
Merge pull request #33 from Mavulp/webserver
Webserver
Diffstat (limited to 'web_server/static')
-rw-r--r--web_server/static/fonts/.gitkeep0
-rw-r--r--web_server/static/style.css63
2 files changed, 63 insertions, 0 deletions
diff --git a/web_server/static/fonts/.gitkeep b/web_server/static/fonts/.gitkeep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/web_server/static/fonts/.gitkeep
diff --git a/web_server/static/style.css b/web_server/static/style.css
new file mode 100644
index 0000000..09a985c
--- /dev/null
+++ b/web_server/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;
+}