/
euorik
/
Site_FastAPI_JINA
Обзор
Документация
Войти
/
euorik
/
Site_FastAPI_JINA
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
static/css/style.css
96 строк
2 KB
euorik
Add shablon site FastAPI
13 июн 2026, 06:25
13 июн 2026, 06:25
81f89f5
Код
Авторство
О чём код?
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Playfair Display", serif; } body { display: flex; justify-content: center; align-items: center; min-height: 100hv; background: #162544; } header { position: fixed; top: 0; left: 0; width: 100%; padding: 20px 100px; display: flex; justify-content: space-between; align-items: center; z-index: 99; } .logo { font-size: 2em; color: #fff; user-select: none; } .navigation a { position: relative; font-size: 1.1em; color: #fff; text-decoration: none; font-weight: 500; margin-left: 40px; } .navigation a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 3px; background: #fff; border-radius: 5px; transform-origin: right; transform: scaleX(0); transition: transform .5s; } .navigation a:hover::after { transform-origin: left; transform: scaleX(1); } .navigation .btnLogin-popup { width: 130px; height: 50px; background: transparent; border: 2px solid #fff; outline: none; border-radius: 6px; cursor: pointer; font-size: 1.1em; color: #fff; font-weight: 500; margin-left: 40px; transition: .5s; } .navigation .btnLogin-popup:hover { background: #fff; color: #162938; } main { position: relative; width: 400px; height: 440px; background: transparent; border: 2px solid rgba(255, 255, 255, .5); border-radius: 20px; backdrop-filter: blur(20px); box-shadow: 0 0 30px rgba(0, 0, 0, .5); display: flex; justify-content: center; align-items: center; }