8,960
edits
No edit summary |
No edit summary |
||
| Line 16: | Line 16: | ||
padding: 0.25em 0.5em; | padding: 0.25em 0.5em; | ||
text-decoration: none; | text-decoration: none; | ||
margin-left: -10px; | margin-left: -10px; | ||
text-align: center; | text-align: center; | ||
font-size: 15px; | font-size: 15px; | ||
color: red; /* Задает красный цвет иконок */ | |||
transition: color 0.3s ease, text-shadow 0.3s ease; /* Добавляет плавный переход для цвета и тени */ | |||
} | } | ||
body #p-personal li#p-themes ul li a:hover { | |||
color: #ff3333; /* Изменяет цвет на более светлый красный при наведении */ | |||
text-shadow: 0 0 5px rgba(255, 0, 0, 0.7); /* Добавляет подсветку при наведении */ | |||
} | |||