добавление кнопки авторизации в хедер

This commit is contained in:
Lobstervova
2026-02-03 09:18:09 +03:00
parent 8f319465da
commit a8e895139a
5 changed files with 229 additions and 4 deletions

View File

@@ -15,6 +15,27 @@
color: white !important;
}
/* Добавляем новые стили для иконки авторизации */
.auth-btn {
background: #e74c3c;
color: white;
border: none;
border-radius: 50px;
padding: 8px 20px;
font-weight: 600;
transition: all 0.3s;
display: flex;
align-items: center;
gap: 8px;
text-decoration: none;
}
.auth-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
color: white;
}
.love-gradient {
background: linear-gradient(135deg, #e74c3c 0%, #fd79a8 100%);
color: white;