8,960
edits
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
.gameplay-buttons { | |||
. | display: flex; | ||
flex-wrap: wrap; | |||
gap: 10px; | |||
justify-content: center; /* Центрирует кнопки по горизонтали */ | |||
margin: 20px 0; | |||
} | } | ||
.button: | .gameplay-button { | ||
background-color: # | display: inline-block; | ||
padding: 10px 20px; | |||
background-color: #1b1b1b; /* Темный фон, как на wiki */ | |||
color: white; | |||
text-decoration: none; | |||
border-radius: 5px; | |||
transition: background-color 0.3s, transform 0.3s; | |||
font-weight: bold; | |||
text-align: center; | |||
} | } | ||
.gameplay-button:hover { | |||
background-color: #ffa500; /* Цвет при наведении, как на wiki */ | |||
transform: scale(1.05); | |||
} | |||
/* Градиент снизу вверх для всех строк таблицы */ | /* Градиент снизу вверх для всех строк таблицы */ | ||