tgadmin/webadmin/static/css/common.css
2024-07-25 15:19:15 +03:00

35 lines
721 B
CSS

/* Общие стили для страницы */
.page-wrapper {
position: relative;
}
/* Стили для пагинации */
.pagination {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 20px;
margin-bottom: 20px;
}
.pagination-button {
padding: 8px 16px;
background-color: #333;
color: #e0e0e0;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.pagination-button:hover {
background-color: #bb86fc;
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.pagination-button.active {
background-color: #bb86fc;
pointer-events: none;
}