From 06a66e464da4259f3049360a6d3cac8eb82d93ce Mon Sep 17 00:00:00 2001 From: Piotr Roszatycki Date: Sun, 19 Jan 2025 00:50:24 +0100 Subject: [PATCH] Separate buttons per OS --- index.html | 217 +++++++++++++++++++++++++++++++++++++++++------------ style.css | 13 +++- 2 files changed, 176 insertions(+), 54 deletions(-) diff --git a/index.html b/index.html index 449ef86..b8b46d0 100644 --- a/index.html +++ b/index.html @@ -42,53 +42,98 @@

Free Open Source Kubernetes IDE

Freelens is a free Kubernetes UI for Linux, MacOS and Windows

- + + + + + + + + + + + +
+ + + + + +
+ + + + + +
+ + diff --git a/style.css b/style.css index 9e7a390..b7cbc2a 100644 --- a/style.css +++ b/style.css @@ -51,6 +51,11 @@ main { border-radius: 8px; /* Aggiunto bordo arrotondato */ } +table { + margin-left: auto; + margin-right: auto; +} + .description { margin-bottom: 20px; } @@ -106,7 +111,7 @@ main { -webkit-transform: rotate(-135deg); } -#download-links { +.download-links { display: none; background-color: #ffffff; /* Modificato a bianco per maggiore contrasto */ box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); @@ -123,7 +128,7 @@ main { overflow-y: auto; /* Permette lo scorrimento verticale */ } -#download-links.integrated { +.download-links { position: static; transform: none; margin: 10px auto; @@ -131,14 +136,14 @@ main { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Aggiorna ombra */ } -#download-links a { +.download-links a { color: black; padding: 12px 16px; text-decoration: none; display: block; } -#download-links a:hover { +.download-links a:hover { background-color: #f1f1f1; }