diff --git a/index.html b/index.html index 6841173..00bb14a 100644 --- a/index.html +++ b/index.html @@ -199,23 +199,37 @@
-
-
-

Download Emerald Legacy Launcher

+
+
+

Get Emerald Legacy

+

Select your operating system to view available installers and architectures.

-
- - Download for Windows - - - Download for Linux - - - Download for macOS - + +
+
+
+

Windows

+ +
+
+
+

Linux

+ +
+
+
+

macOS

+ +
+
+ +
+
⚠️
+
+

Windows SmartScreen

+

Because the launcher is unsigned, Windows may show a warning. Click "More info" + and then "Run anyway" to proceed safely.

+
diff --git a/src/style.css b/src/style.css index a32fe52..c124ad8 100644 --- a/src/style.css +++ b/src/style.css @@ -784,4 +784,73 @@ body { .item-icon i.fa-rust { color: #f74c00; +} + +.os-grid { + display: grid; + grid-template-columns: repeat(3, 1fr); + gap: 20px; + margin-top: 10px; +} + +.os-card { + background: #cecece; + border: 4px solid #f0f0f0; + border-right-color: #7b7b7b; + border-bottom-color: #7b7b7b; + padding: 30px 20px; + text-align: center; + display: flex; + flex-direction: column; + align-items: center; + gap: 20px; + position: relative; + transition: transform 0.1s; +} + +.os-card::before { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + border: 2px solid #1a1a1a; + pointer-events: none; +} + +.os-icon { + font-size: 4rem; + color: #4c4c4c; + text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2); +} + +.os-card h3 { + font-size: 1.8rem; + color: #1a1a1a; + text-transform: uppercase; +} + +.os-btn { + width: 100% !important; + height: 50px !important; + font-size: 1.2rem !important; +} + +.os-card:hover .fa-windows { + color: #00a4ef; +} + +.os-card:hover .fa-linux { + color: #fcc624; +} + +.os-card:hover .fa-apple { + color: #fff; +} + +@media (max-width: 800px) { + .os-grid { + grid-template-columns: 1fr; + } } \ No newline at end of file