From 4b7a7357118bd42a9065cea943c0f1b2b038fb1e Mon Sep 17 00:00:00 2001 From: yogurtmenn Date: Tue, 20 May 2025 12:23:15 +0000 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B3=D1=80=D1=83=D0=B7=D0=B8?= =?UTF-8?q?=D1=82=D1=8C=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=B2=20=C2=AB?= =?UTF-8?q?/=C2=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- style.css | 95 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..a129638 --- /dev/null +++ b/style.css @@ -0,0 +1,95 @@ +body { + margin: 0; + font-family: 'Segoe UI', sans-serif; + color: white; + background-color: #1b1b1f; + text-align: center; + position: relative; + overflow-x: hidden; +} + +.background { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: linear-gradient(145deg, #0f1115, #20242a); + z-index: -2; +} + +.logo-container { + position: relative; + display: flex; + justify-content: center; + align-items: center; + margin-bottom: -40px; +} + +.logo { + width: 240px; + border-radius: 20px; + opacity: 0.95; + z-index: 1; +} + +header h1, +header p { + position: relative; + z-index: 2; +} + +header { + padding-top: 60px; + margin-bottom: 30px; +} + +h1 { + font-size: 48px; + margin-bottom: 10px; + color: #39c5bb; +} + +p { + font-size: 20px; + color: #aaa; +} + +.download-btn { + background: #39c5bb; + color: #fff; + padding: 15px 30px; + text-decoration: none; + border-radius: 30px; + font-size: 18px; + transition: background 0.3s ease; + display: inline-block; + margin-top: 20px; +} + +.download-btn:hover { + background: #2fa39b; +} + +.screenshots { + margin-top: 60px; +} + +.screenshots h2 { + color: #eee; + margin-bottom: 20px; +} + +.screenshots img { + width: 300px; + margin: 10px; + border-radius: 10px; + box-shadow: 0 0 10px rgba(57, 197, 187, 0.3); +} + +footer { + margin-top: 60px; + padding: 20px; + font-size: 14px; + color: #666; +}