From 3f1c1f1395a920795612b0a4e366d9213f76df85 Mon Sep 17 00:00:00 2001 From: Toby Chui Date: Wed, 19 Mar 2025 21:09:42 +0800 Subject: [PATCH] Added screenshot zoom feature --- docs/index.html | 84 ++++++++++++++++++++++++++++++++++++++----------- docs/main.css | 34 +++++++++++++++----- 2 files changed, 93 insertions(+), 25 deletions(-) diff --git a/docs/index.html b/docs/index.html index 856743c..6cfb3a0 100644 --- a/docs/index.html +++ b/docs/index.html @@ -95,6 +95,13 @@ +
+
+

This site is currently under development. Some information might not be ready. + // 本網站目前仍在開發中,部分資訊可能尚未準備好。 +

+
+

Zoraxy

@@ -236,34 +243,34 @@
- +
- +
- +
- +
- +
- +
- +
- +
- +



@@ -273,7 +280,7 @@


-

Review Videos // 介紹影片

+

Review Videos // 介紹影片

@@ -362,8 +369,9 @@
-

After the Zoraxy is started, navigate to http://localhost:8000 to continue account and system setup. - // 當 Zoraxy 執行檔 / 服務啟動後,使用瀏覽器開啟 http://localhost:8000 以繼續帳戶和系統設定。 +

After the Zoraxy is started, navigate to // 當 Zoraxy 執行檔 / 服務啟動後,使用瀏覽器開啟 + http://localhost:8000 + to continue account and system setup. // 以繼續帳戶和系統設定。



@@ -444,8 +452,8 @@
@@ -459,9 +467,9 @@ @@ -473,6 +481,46 @@ \ No newline at end of file diff --git a/docs/main.css b/docs/main.css index a1b9abb..aeaf18a 100644 --- a/docs/main.css +++ b/docs/main.css @@ -30,6 +30,17 @@ body.zh-cn *:not(i){ font-weight: 300 !important; } +.messageBanner{ + width: 100%; + background: #6cacff; + text-align: center; + color: white; + padding: 10px; +} +.messageBanner .header{ + font-weight: 500; +} + #backToTopBtn{ position: fixed; bottom: 1em; @@ -37,7 +48,7 @@ body.zh-cn *:not(i){ display:none; z-index: 999; border: 1px solid white; - background: #8debff; + background: #6cacff; } #backToTopBtn:hover{ @@ -173,7 +184,7 @@ body.zh-cn *:not(i){ font-size: 1.2em; } -/* About ArozOS */ +/* About Zoraxy */ .about-text-wrapper{ margin-top: 3em; } @@ -195,12 +206,21 @@ body.zh-cn *:not(i){ padding-top: 0.15em; } -/* Features */ +/* Screenshots */ #features{ margin-bottom: 3em; } -/* Tech Spec */ +#features .screenshot{ + transition: opacity 0.1s ease-in-out; + cursor: pointer; +} + +#features .screenshot:hover{ + opacity: 0.5; +} + +/* Videos */ #techspec .centered.title{ color: white; } @@ -213,7 +233,7 @@ body.zh-cn *:not(i){ overflow-x: scroll; display: block; white-space: nowrap; - scrollbar-color: #dee6f7 #5888f0; + scrollbar-color: #e7e7e7 rgba(0, 0, 0, 0.1); padding-top: 2em; padding-bottom: 3em; } @@ -225,8 +245,8 @@ body.zh-cn *:not(i){ .blackbanner{ width: 100%; - background: rgb(85,131,238); - background: linear-gradient(48deg, rgba(85,131,238,1) 21%, rgba(108,172,255,1) 73%); + background: rgb(108,172,255); + background: linear-gradient(48deg, rgba(108,172,255,1) 8%, rgba(141,235,255,1) 65%); min-height: 300px; }