From b259dec52b84e0ffb108262ff6bccfd69fe78836 Mon Sep 17 00:00:00 2001 From: TRUkae Date: Wed, 17 Sep 2025 11:48:55 +0000 Subject: [PATCH] Upload files to "/" --- styles.css | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 styles.css diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..fa0e180 --- /dev/null +++ b/styles.css @@ -0,0 +1,56 @@ +body { + min-height: 100vh; + margin: 0; + background: #0d1021; + display: flex; + align-items: center; + justify-content: center; + font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif; +} + +.mefx-container { + text-align: center; +} + +.mefx-title { + color: #4fdcff; + font-size: 2.8rem; + font-weight: 700; + letter-spacing: 2px; + margin-bottom: 2.5rem; + text-shadow: + 0 0 8px #4fdcff, + 0 0 24px #1ec8ff, + 0 0 2px #fff; + font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif; +} + +.mefx-button-group { + display: flex; + gap: 1.5rem; + justify-content: center; +} + +.mefx-btn { + background: rgba(18, 34, 60, 0.8); + color: #4fdcff; + border: 2px solid #4fdcff; + border-radius: 8px; + padding: 1rem 2.5rem; + font-size: 1.2rem; + font-weight: 700; + letter-spacing: 1px; + text-shadow: 0 0 6px #4fdcff, 0 0 12px #1ec8ff; + box-shadow: 0 0 16px #1ec8ff44, 0 0 2px #4fdcff; + text-decoration: none; + transition: background 0.3s, color 0.2s, box-shadow 0.2s, border-color 0.2s; + font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif; +} + +.mefx-btn:hover, .mefx-btn:focus { + background: rgba(18, 34, 60, 1); + color: #fff; + border-color: #fff; + box-shadow: 0 0 24px #4fdcff, 0 0 32px #1ec8ff; + outline: none; +}