From ac472d333607ec114105e14b4f3c5c97501c33d6 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 1 May 2021 18:08:55 +0200 Subject: [PATCH] Remove the content folder from gitignore. --- .gitignore | 2 - content/www/css/main.css | 124 +++++++++++++++++++++++++++++++++++++++ content/www/index.html | 5 ++ 3 files changed, 129 insertions(+), 2 deletions(-) create mode 100644 content/www/css/main.css create mode 100644 content/www/index.html diff --git a/.gitignore b/.gitignore index 028c273..8b9703a 100644 --- a/.gitignore +++ b/.gitignore @@ -27,5 +27,3 @@ game/android/build/* .dir-locals.el build.config - -content/* \ No newline at end of file diff --git a/content/www/css/main.css b/content/www/css/main.css new file mode 100644 index 0000000..2b201af --- /dev/null +++ b/content/www/css/main.css @@ -0,0 +1,124 @@ +body { + padding: 0; + margin: 0; + background-color: rgb(191, 191, 191); +} + +a:visited { + color: blue; +} + +header { + color: white; + margin: 0; + padding: 0.8em 0.8em 0.8em 0.8em; + font-size: 24; + background-color: rgb(26, 29, 31); +} + +.header_link a { + color: rgb(129, 186, 240); + font-size: 18; +} + +.header_link { + font-size: 18; + margin: 0em 1em; +} + +.menu_active { + background-color: rgb(89, 21, 13); +} + +ul.menu { + background-color: rgb(46, 45, 45); + padding: 1em 1em 1em 1em; + margin: 0; +} + +ul.menu li { + display: inline; + color: white; + padding: 0em 0.3em; +} + +ul.menu li a { + color: white; + text-align: center; + padding: 1em 1em; + text-decoration: none; +} + +ul.menu li a:hover { + background-color: rgb(60, 60, 60); +} + +.content { + background-color: rgb(255, 255, 255); + margin: 1em 6em; + background-color: rgb(240, 240, 240); +} + +.inner_content { + padding: 1em 1em 0em 1em; + background-color: rgb(240, 240, 240); +} + +.list_entry { + margin: 0.5em 0em; + padding: 0.5em 0.5em; + border: 1px solid rgb(100, 100, 100); + border-radius: 3px; + background-color: rgb(255, 255, 255); +} + +footer { + border-top: 1px solid rgb(107, 107, 107); + text-align: center; + font-size: 12; + margin-top: 2em; + padding-top: 1em; + padding-bottom: 1em; + background-color: rgb(36, 40, 48); + color: white; +} + +footer a { + color: rgb(129, 186, 240); +} + +footer a:visited { + color: rgb(129, 186, 240); +} + +ul.pagination { + padding: 1em 1em 1em 1em; + margin: 0; + text-align: center; +} + +ul.pagination li { + display: inline; + border: 1px solid black; + padding: 0.2em 0em; + margin: 0em 0.2em 0em 0.2em; +} + +ul.pagination li a { + color: black; + text-align: center; + text-decoration: none; + padding: 0.2em 0.4em; +} + +ul.pagination li.disabled { + color: rgb(138, 138, 138); + text-align: center; + text-decoration: none; + padding: 0.2em 0.4em; +} + +ul.pagination li a:hover { + background-color: rgb(60, 60, 60); + color: white; +} \ No newline at end of file diff --git a/content/www/index.html b/content/www/index.html new file mode 100644 index 0000000..5a7c2d1 --- /dev/null +++ b/content/www/index.html @@ -0,0 +1,5 @@ + + +

Welcome

+ + \ No newline at end of file