-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
35 lines (32 loc) · 1.05 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* Контейнер для кнопок */
.button-container {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
margin-top: 20px;
}
/* Основной стиль для кнопок */
.button-container button,
.custom-button { /* Добавим класс custom-button для JS */
padding: 10px 20px;
font-size: 16px;
border: 2px solid #333;
border-radius: 5px;
cursor: pointer;
background-color: #000; /* Черный фон */
color: white;
transition: all 0.3s ease; /* Плавный переход */
}
/* Эффект наведения */
.button-container button:hover,
.custom-button:hover {
background-color: #555; /* Темно-серый фон при наведении */
color: #ddd; /* Светло-серый текст */
border-color: #777;
}
/* Дополнительный эффект при нажатии */
.button-container button:active,
.custom-button:active {
transform: scale(0.95); /* Небольшое уменьшение размера */
}