Dantes (обсуждение | вклад) Нет описания правки |
Dantes (обсуждение | вклад) Нет описания правки |
||
| Строка 1: | Строка 1: | ||
.lore-dropdown { | |||
position: relative; | position: relative; | ||
display: inline-block; | display: inline-block; | ||
} | } | ||
.lore-toggle { | |||
background-color: #1c1c1c; | background-color: #1c1c1c; | ||
color: #e0e0e0; | color: #e0e0e0; | ||
| Строка 18: | Строка 18: | ||
} | } | ||
.lore-toggle:hover { | |||
background-color: #2a2a2a; | background-color: #2a2a2a; | ||
border-color: #69a3c8; | border-color: #69a3c8; | ||
| Строка 24: | Строка 24: | ||
} | } | ||
.lore-list { | |||
display: none; | display: none; | ||
position: absolute; | position: absolute; | ||
| Строка 37: | Строка 37: | ||
} | } | ||
.lore-list li a { | |||
color: white; | color: white; | ||
padding: 8px 12px; | padding: 8px 12px; | ||
| Строка 45: | Строка 45: | ||
} | } | ||
.lore-list li a:hover { | |||
background-color: #444; | background-color: #444; | ||
} | } | ||
Версия от 07:28, 10 мая 2025
.lore-dropdown {
position: relative;
display: inline-block;
}
.lore-toggle {
background-color: #1c1c1c;
color: #e0e0e0;
padding: 8px 16px;
cursor: pointer;
font-weight: bold;
border: 2px solid #4b7a9a;
border-radius: 6px;
display: inline-block;
transition: background-color 0.3s, border-color 0.3s, color 0.3s;
font-family: 'Segoe UI', sans-serif;
box-shadow: inset 0 0 4px rgba(75,122,154,0.4);
}
.lore-toggle:hover {
background-color: #2a2a2a;
border-color: #69a3c8;
color: #ffffff;
}
.lore-list {
display: none;
position: absolute;
background-color: #2a2a2a;
min-width: 160px;
z-index: 1;
list-style: none;
margin: 0;
padding: 4px 0;
border-radius: 4px;
box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.lore-list li a {
color: white;
padding: 8px 12px;
text-decoration: none;
display: block;
font-family: 'Segoe UI', sans-serif;
}
.lore-list li a:hover {
background-color: #444;
}