From 132efcec34dbde1e9bbe426215d6084025249655 Mon Sep 17 00:00:00 2001 From: Jonathan Carter Date: Wed, 18 Dec 2024 18:18:22 +0200 Subject: [PATCH] some initial themes toying --- src/static/system-installer-blippie.css | 37 +++++++++++++++++++++++ src/static/system-installer-dark.css | 40 +++++++++++++++++++++++++ src/static/system-installer-light.css | 37 +++++++++++++++++++++++ 3 files changed, 114 insertions(+) create mode 100644 src/static/system-installer-blippie.css create mode 100644 src/static/system-installer-dark.css create mode 100644 src/static/system-installer-light.css diff --git a/src/static/system-installer-blippie.css b/src/static/system-installer-blippie.css new file mode 100644 index 0000000..de6ad4e --- /dev/null +++ b/src/static/system-installer-blippie.css @@ -0,0 +1,37 @@ +html { + /* Overwrite the white that is set by bulma.css */ +body { + display: flex; + font-family: Noto Sans; + color: white; + overflow: hidden; + min-width: 1050px; + min-height: 600px; +} + +.frame { + border-radius: 10px; + background-color: #0f1933; + padding: 15px 15px 15px 15px; + width: 100%; + min-height: 600px; + position: absolute; + top: 0px; + bottom: 0px; +} + +.applet a:link a:hover a:active { + color: yellow; +} + +.applet { + width: 100%; + height: 470px; + bottom: 0px; + overflow-y: scroll; + overflow-x: hidden; +} + +.radio:hover { + color: #f1f1f1; +} diff --git a/src/static/system-installer-dark.css b/src/static/system-installer-dark.css new file mode 100644 index 0000000..f557281 --- /dev/null +++ b/src/static/system-installer-dark.css @@ -0,0 +1,40 @@ +html { + /* Overwrite the white that is set by bulma.css */ + background: transparent; +} + +body { + display: flex; + font-family: Noto Sans; + color: white; + overflow: hidden; + min-width: 1050px; + min-height: 600px; +} + +.frame { + border-radius: 10px; + background-color: #404040; + padding: 15px 15px 15px 15px; + width: 100%; + min-height: 600px; + position: absolute; + top: 0px; + bottom: 0px; +} + +.applet a:link a:hover a:active { + color: yellow; +} + +.applet { + width: 100%; + height: 470px; + bottom: 0px; + overflow-y: scroll; + overflow-x: hidden; +} + +.radio:hover { + color: #f1f1f1; +} diff --git a/src/static/system-installer-light.css b/src/static/system-installer-light.css new file mode 100644 index 0000000..15f7acd --- /dev/null +++ b/src/static/system-installer-light.css @@ -0,0 +1,37 @@ +html { + /* Overwrite the white that is set by bulma.css */ + background-color: transparent; +} + +body { + display: flex; + font-family: Noto Sans; + color: white; + overflow: hidden; + min-width: 1050px; + min-height: 600px; +} + +.frame { + border-radius: 10px; + background-color: #e9e8e4; + padding: 15px; + max-width: 1050px; +} + +.applet a:link a:hover a:active { + color: yellow; +} + +.applet { + color: #383838; + width: 1040px; + height: 470px; + overflow-y: scroll; + overflow-x: hidden; + padding-right: 20px; +} + +.radio:hover { + color: #404040; +}