aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-02-14 22:40:09 +0100
committerRuben Beltran del Rio <git@r.bdr.sh>2024-02-14 22:40:09 +0100
commit3c39d1553de92cd6cac891f2c3b186701ec60332 (patch)
tree8d7fa72e1b70c33ed6b01b45e724338df3ea5ab7 /static
parent10a76a5bf0a9d051aa9432566088034c5ced714b (diff)
Remove unnecessary static files
Diffstat (limited to 'static')
-rw-r--r--static/css/style.css21
-rw-r--r--static/favicon.icobin198 -> 0 bytes
-rw-r--r--static/favicon.pngbin154 -> 0 bytes
-rw-r--r--static/images/header_background.pngbin311576 -> 0 bytes
-rw-r--r--static/images/header_foreground.pngbin307546 -> 0 bytes
-rw-r--r--static/js/blog.js26
6 files changed, 0 insertions, 47 deletions
diff --git a/static/css/style.css b/static/css/style.css
deleted file mode 100644
index 0261e9d..0000000
--- a/static/css/style.css
+++ /dev/null
@@ -1,21 +0,0 @@
-canvas {
- width: 64px;
- height: 64px;
- display: inline-block;
- background-color: gainsboro;
-}
-
-@media (prefers-color-scheme: dark) {
- body {
- color: white;
- background-color: black;
- }
-
- a {
- color: #5dc1fd;
- }
-
- a:visited {
- color: #ed6eff;
- }
-}
diff --git a/static/favicon.ico b/static/favicon.ico
deleted file mode 100644
index 2399da6..0000000
--- a/static/favicon.ico
+++ /dev/null
Binary files differ
diff --git a/static/favicon.png b/static/favicon.png
deleted file mode 100644
index d4c3bb0..0000000
--- a/static/favicon.png
+++ /dev/null
Binary files differ
diff --git a/static/images/header_background.png b/static/images/header_background.png
deleted file mode 100644
index 6d1989f..0000000
--- a/static/images/header_background.png
+++ /dev/null
Binary files differ
diff --git a/static/images/header_foreground.png b/static/images/header_foreground.png
deleted file mode 100644
index e0fadd1..0000000
--- a/static/images/header_foreground.png
+++ /dev/null
Binary files differ
diff --git a/static/js/blog.js b/static/js/blog.js
deleted file mode 100644
index 68c13da..0000000
--- a/static/js/blog.js
+++ /dev/null
@@ -1,26 +0,0 @@
-'use strict';
-
-/* globals window */
-
-((w) => {
-
- const internals = {
- // Application entry point, for now just band to keyboard
-
- main() {
-
- w.document.addEventListener('keydown', internals._onKeyDown);
- },
-
- // Handles key events to point to the correct blog post.
-
- _onKeyDown(e) {
-
- if (['1','2','3'].indexOf(e.key) > -1) {
- w.location.hash = e.key;
- }
- }
- };
-
- w.addEventListener('load', internals.main);
-})(window);