From dfa6e001c50f1b446731e7a6b5eeefe428892e74 Mon Sep 17 00:00:00 2001 From: Pavel Sviderski Date: Fri, 9 May 2025 22:56:07 +1000 Subject: [PATCH] chore: cross over kubernetes on landing hero --- website/index.html | 43 +++++++++++++++++++++++++++++++++++-------- website/style.css | 20 ++++++++++++++++++++ 2 files changed, 55 insertions(+), 8 deletions(-) diff --git a/website/index.html b/website/index.html index 2fc10e10..99d8846e 100644 --- a/website/index.html +++ b/website/index.html @@ -66,7 +66,9 @@
  • Get Started + href="https://github.com/psviderski/uncloud/?tab=readme-ov-file#-quick-start"> + Get Started +
  • @@ -86,18 +88,41 @@

    - Stay simple
    + Stay simple + Kubernetes + + + + + + + + +
    Ship more

    - Uncloud is a lightweight Docker clustering tool for running and scaling web apps on your servers - — from cloud VMs to bare metal. - No Kubernetes required. + Uncloud is a lightweight Docker clustering tool for running and scaling web apps on your + servers — from cloud VMs to bare metal. No Kubernetes required.

    diff --git a/website/style.css b/website/style.css index 32ea2fbb..7a31b641 100644 --- a/website/style.css +++ b/website/style.css @@ -1185,6 +1185,10 @@ input[type="search"]::-webkit-search-results-decoration { transition: y 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), width 0.1s ease-out; } +.pointer-events-none{ + pointer-events: none; +} + .visible{ visibility: visible; } @@ -1201,6 +1205,10 @@ input[type="search"]::-webkit-search-results-decoration { position: relative; } +.inset-0{ + inset: 0px; +} + .top-2{ top: 0.5rem; } @@ -1209,6 +1217,10 @@ input[type="search"]::-webkit-search-results-decoration { z-index: -10; } +.z-10{ + z-index: 10; +} + .z-30{ z-index: 30; } @@ -1290,6 +1302,10 @@ input[type="search"]::-webkit-search-results-decoration { display: block; } +.inline-block{ + display: inline-block; +} + .inline{ display: inline; } @@ -1338,6 +1354,10 @@ input[type="search"]::-webkit-search-results-decoration { height: 2rem; } +.h-full{ + height: 100%; +} + .min-h-screen{ min-height: 100vh; }