From b24daac16b74d8ffb6086d90619135813716e52a Mon Sep 17 00:00:00 2001 From: SrShadowy <43967231+SrShadowy@users.noreply.github.com> Date: Tue, 17 Sep 2024 01:22:06 -0300 Subject: [PATCH 1/6] Download page Why not download page using markdown and api of github? --- pages/download/index.html | 81 ++++++++++++++++++++++++++++ resources/stylesheets/download.css | 51 ++++++++++++++++++ resources/templates/generic-nav.html | 2 +- 3 files changed, 133 insertions(+), 1 deletion(-) create mode 100644 pages/download/index.html create mode 100644 resources/stylesheets/download.css diff --git a/pages/download/index.html b/pages/download/index.html new file mode 100644 index 00000000..a6108b88 --- /dev/null +++ b/pages/download/index.html @@ -0,0 +1,81 @@ + + + + + + + + +

Latest Updates on GitHub - Lime3DS

+
+ + + + + + + + + \ No newline at end of file diff --git a/resources/stylesheets/download.css b/resources/stylesheets/download.css new file mode 100644 index 00000000..c01db4fe --- /dev/null +++ b/resources/stylesheets/download.css @@ -0,0 +1,51 @@ +.button { + display: inline-block; + padding: 15px 30px; + margin: 10px; + border-radius: 5px; + color: white; + text-decoration: none; + font-size: 16px; + transition: background-color 0.3s; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +.windows { + background-color: #0078D7; +} + +.linux { + background-color: #FCC624; + color: #333; +} + +.mac { + background-color: #A4C8E1; +} + +.android { + background-color: #A4C639; +} + +.button:hover { + filter: brightness(90%); +} + +.navigation { + margin-top: 20px; +} + +#release { + margin-top: 30px; +} + +button { + padding: 10px 20px; + font-size: 14px; + cursor: pointer; +} + +button:disabled { + background-color: #ccc; + cursor: not-allowed; +} \ No newline at end of file diff --git a/resources/templates/generic-nav.html b/resources/templates/generic-nav.html index a031b1e4..0ea5f8b6 100644 --- a/resources/templates/generic-nav.html +++ b/resources/templates/generic-nav.html @@ -6,7 +6,7 @@