/
Alekron
/
Unbeatable_Benchmarking
Обзор
Документация
Войти
/
Alekron
/
Unbeatable_Benchmarking
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Frontend/css/table.css
141 строка
2 KB
Alekron
Initial Frontend
23 ноя 2025, 09:12
23 ноя 2025, 09:12
c461277
Код
Авторство
О чём код?
:root{ --bg:rgb(20, 16, 31); --panel:#1d1730; --accent:#6b5cff; --accent-2:#8a7bff; --muted:#9aa0c4; } *{margin:0;padding:0;box-sizing:border-box} body{ font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto; background:var(--bg); color:#e9e6f8; } .top-nav { position: fixed; top: 0; left: 0; right: 0; display: flex; justify-content: center; gap: 32px; padding: 20px 0; backdrop-filter: blur(10px); z-index: 1000; box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2); } .top-nav a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; padding: 8px 16px; border-radius: 8px; transition: all 0.25s ease; position: relative; } .top-nav a:hover { color: var(--text-main); background: rgba(94, 129, 244, 0.15); } .top-nav a.active { color: white; background: rgba(108, 87, 255, 0.3); } .top-nav a::after { content: ''; position: absolute; bottom: -2px; left: 50%; width: 0; height: 2px; background: var(--accent); transition: all 0.3s ease; transform: translateX(-50%); } .top-nav a:hover::after, .top-nav a.active::after { width: 60%; } .nav-link{ margin:0 10px; color:var(--muted); text-decoration:none; transition:0.2s; } .nav-link.active{ color:var(--accent); } .nav-link:hover{ color:white; } .page { margin: 80px auto 0; max-width: 1200px; padding: 0 20px; } .page-title { margin-bottom: 40px; font-size: 54px; font-weight: 600; color: #EDE9FF; text-align: center; } .big-photo-block{ width:100%; display:flex; justify-content:center; } .photo-mock{ width:90%; height:450px; background:#d3d3d3; border-radius:10px; } .bottom-input{ margin-top:40px; display:flex; justify-content:center; } .pill{ display:flex; align-items:center; gap:12px; padding:14px 18px; border-radius:40px; background:rgb(29, 28, 57); border:1px solid rgba(255,255,255,0.03); min-width:460px; } .input-text{ flex:1; font-size:1.5em; background:transparent; border:none; outline:none; color:white; } .cta{ font-size: 1.2em; padding:10px 18px; border-radius:28px; background:linear-gradient(90deg,var(--accent),var(--accent-2)); font-weight:600; color:white; border:none; cursor:pointer; }