From 2feb019c373c99fa3840d99724f5ee6f7c4dac36 Mon Sep 17 00:00:00 2001 From: Abdellah El Morabit Date: Mon, 18 Nov 2024 19:23:17 +0100 Subject: started switching to c, started the web gui, started the gtk gui, ending the swift version --- webGUI/index.html | 31 +++++++++++++++++++++++++++++++ webGUI/main.mjs | 1 + webGUI/pages/stats.html | 14 ++++++++++++++ webGUI/styles.css | 32 ++++++++++++++++++++++++++++++++ 4 files changed, 78 insertions(+) create mode 100644 webGUI/index.html create mode 100644 webGUI/main.mjs create mode 100644 webGUI/pages/stats.html create mode 100644 webGUI/styles.css (limited to 'webGUI') diff --git a/webGUI/index.html b/webGUI/index.html new file mode 100644 index 0000000..eb12eca --- /dev/null +++ b/webGUI/index.html @@ -0,0 +1,31 @@ + + + + + + + CONSOLE + + + + + + + + + + + + + + \ No newline at end of file diff --git a/webGUI/main.mjs b/webGUI/main.mjs new file mode 100644 index 0000000..c7464e5 --- /dev/null +++ b/webGUI/main.mjs @@ -0,0 +1 @@ +let modes = ["STATS", ""] \ No newline at end of file diff --git a/webGUI/pages/stats.html b/webGUI/pages/stats.html new file mode 100644 index 0000000..8fdbb74 --- /dev/null +++ b/webGUI/pages/stats.html @@ -0,0 +1,14 @@ + + + + + + + STATS - CONSOLE + + + + + + + \ No newline at end of file diff --git a/webGUI/styles.css b/webGUI/styles.css new file mode 100644 index 0000000..eefc162 --- /dev/null +++ b/webGUI/styles.css @@ -0,0 +1,32 @@ +body { + background-color: rgba(0, 10, 30, 1); + text-decoration: none; + color: white; + font: sans-serif; +} + +body button a { + border-radius: 10px; + text-decoration: none; +} + +a { + text-decoration: none; + color: wheat; +} + +.navigation { + max-width: fit-content; + margin-left: auto; + margin-right: auto; +} + +.navigation a { + display: block; + + background-color: rgba(0, 0, 0, 1); + border-radius: 10px; + border: none; + padding: 10px; + min-width: 100px; +} -- cgit v1.2.3-70-g09d2