/
Doomster
/
first
Обзор
Документация
Войти
/
Doomster
/
first
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
style.css
56 строк
1 KB
Doomster
Create: some.html, style.css, script.js
21 июн 2026, 11:44
Верифицирован
21 июн 2026, 11:44
ab3ce38
Код
Авторство
О чём код?
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Arial, sans-serif; background: linear-gradient(135deg, #667eea, #764ba2); min-height: 100vh; display: flex; justify-content: center; align-items: center; color: #fff; } .container { background: rgba(255, 255, 255, 0.1); padding: 40px; border-radius: 16px; text-align: center; backdrop-filter: blur(10px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); } h1 { font-size: 2.5rem; margin-bottom: 16px; transition: color 0.3s ease; } p { margin-bottom: 24px; opacity: 0.9; } button { background: #fff; color: #764ba2; border: none; padding: 12px 28px; font-size: 1rem; font-weight: bold; border-radius: 8px; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; } button:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); } button:active { transform: translateY(0); }