From 5b9f0c8eeb1fb412b5f584c6c15cd8849d6d2fc3 Mon Sep 17 00:00:00 2001 From: None <62809003+Arrowar@users.noreply.github.com> Date: Fri, 9 May 2025 10:39:12 +0200 Subject: [PATCH] Create style.css --- .github/.site/css/style.css | 329 ++++++++++++++++++++++++++++++++++++ 1 file changed, 329 insertions(+) create mode 100644 .github/.site/css/style.css diff --git a/.github/.site/css/style.css b/.github/.site/css/style.css new file mode 100644 index 0000000..ee47051 --- /dev/null +++ b/.github/.site/css/style.css @@ -0,0 +1,329 @@ +@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap'); + +:root { + --primary-color: #8c52ff; + --secondary-color: #6930c3; + --accent-color: #00e5ff; + --background-color: #121212; + --card-background: #1e1e1e; + --text-color: #f8f9fa; + --shadow-color: rgba(0, 0, 0, 0.25); + --card-hover: #2a2a2a; + --border-color: #333333; + --header-bg: rgba(18, 18, 18, 0.95); +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; + transition: all 0.2s ease; +} + +body { + font-family: 'Inter', 'Segoe UI', sans-serif; + background-color: var(--background-color); + color: var(--text-color); + line-height: 1.6; + min-height: 100vh; + display: flex; + flex-direction: column; +} + +header { + background-color: var(--header-bg); + backdrop-filter: blur(10px); + position: fixed; + width: 100%; + padding: 15px 0; + z-index: 1000; + box-shadow: 0 2px 12px var(--shadow-color); +} + +.container { + max-width: 1400px; + margin: 0 auto; + padding: 20px; + flex: 1; +} + +.site-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); + gap: 24px; + padding: 2rem 0; +} + +.site-item { + min-height: 280px; + background-color: var(--card-background); + border-radius: 16px; + padding: 30px; + box-shadow: 0 6px 20px var(--shadow-color); + transition: transform 0.3s ease, box-shadow 0.3s ease; + display: flex; + flex-direction: column; + align-items: center; + border: 1px solid var(--border-color); + position: relative; + overflow: hidden; +} + +.site-item::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 4px; + background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); +} + +.site-item:hover { + transform: translateY(-5px); + box-shadow: 0 12px 30px var(--shadow-color); +} + +.site-item img { + width: 80px; + height: 80px; + margin-bottom: 1.5rem; + border-radius: 16px; + object-fit: cover; + border: 2px solid var(--border-color); +} + +.site-content { + text-align: center; + width: 100%; +} + +.site-item h3 { + font-size: 1.4rem; + font-weight: 600; + margin-bottom: 0.5rem; + color: var(--primary-color); +} + +.domain { + color: var(--text-color); + opacity: 0.8; + font-size: 0.9rem; + margin-bottom: 1.5rem; + word-break: break-all; +} + +.site-item a { + margin-top: 1rem; + background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); + color: white; + text-decoration: none; + font-weight: 500; + padding: 12px 28px; + border-radius: 8px; + width: fit-content; + margin: 0 auto; + display: flex; + align-items: center; + gap: 8px; +} + +.site-item a:hover { + opacity: 0.9; + transform: translateY(-2px); +} + +footer { + background: var(--card-background); + border-top: 1px solid var(--border-color); + margin-top: auto; + padding: 40px 20px; + position: relative; +} + +.footer-content { + max-width: 1200px; + margin: 0 auto; + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 30px; + position: relative; + padding: 10px 0; +} + +.footer-section { + padding: 20px; + border-radius: 12px; + transition: transform 0.3s ease, background-color 0.3s ease; + background-color: var(--card-background); + border: 1px solid var(--border-color); +} + +.footer-section:hover { + transform: translateY(-5px); + background-color: var(--card-hover); +} + +.footer-title { + color: var(--accent-color); + font-size: 1.3rem; + margin-bottom: 1.5rem; + padding-bottom: 0.5rem; + position: relative; + letter-spacing: 0.5px; +} + +.footer-title::after { + content: ''; + position: absolute; + bottom: 0; + left: 0; + width: 60px; + height: 3px; + border-radius: 2px; + background: linear-gradient(90deg, var(--primary-color), var(--accent-color)); +} + +.footer-links { + list-style: none; +} + +.footer-links li { + margin-bottom: 0.8rem; +} + +.footer-links a { + color: var(--text-color); + text-decoration: none; + display: flex; + align-items: center; + gap: 8px; + opacity: 0.8; + transition: all 0.3s ease; + padding: 8px 12px; + border-radius: 8px; + background-color: transparent; +} + +.footer-links a:hover { + opacity: 1; + color: var(--accent-color); + transform: translateX(8px); + background-color: rgba(140, 82, 255, 0.1); +} + +.footer-links i { + width: 20px; + text-align: center; + font-size: 1.2rem; + color: var(--primary-color); + transition: transform 0.3s ease; +} + +.footer-links a:hover i { + transform: scale(1.2); +} + +.github-stats { + display: flex; + gap: 10px; + margin-top: 10px; + font-size: 0.8rem; +} + +.github-badge { + background-color: var(--background-color); + padding: 4px 8px; + border-radius: 4px; + display: flex; + align-items: center; + gap: 4px; +} + +.github-badge i { + color: var(--accent-color); +} + +.footer-description { + margin-top: 15px; + font-size: 0.9rem; + color: var(--text-color); + opacity: 0.8; + line-height: 1.5; +} + +.update-info { + text-align: center; + margin-top: 30px; + padding-top: 30px; + border-top: 1px solid var(--border-color); +} + +.update-note { + color: var(--accent-color); + font-size: 0.9rem; + opacity: 0.9; +} + +@media (max-width: 768px) { + .footer-content { + grid-template-columns: 1fr; + text-align: center; + } + + .footer-title::after { + left: 50%; + transform: translateX(-50%); + } + + .footer-links a { + justify-content: center; + } + + .footer-links a:hover { + transform: translateY(-5px); + } + + .footer-section { + margin-bottom: 20px; + } +} + +.loader { + border: 3px solid var(--border-color); + border-top: 3px solid var(--primary-color); + border-right: 3px solid var(--accent-color); + border-radius: 50%; + width: 50px; + height: 50px; + animation: spin 1s linear infinite; +} + +@keyframes spin { + 0% { transform: rotate(0deg); } + 100% { transform: rotate(360deg); } +} + +@media (max-width: 768px) { + .site-item { + padding: 25px; + } + + .site-item img { + width: 70px; + height: 70px; + } +} + +.old-domain, .time-change { + color: var(--text-color); + opacity: 0.7; + font-size: 0.85rem; + margin-bottom: 0.5rem; + word-break: break-all; +} + +.label { + color: var(--accent-color); + font-weight: 500; +}