modified: main_dc/yalarba/easySite/easySite/app/components/layout/Footer.vue
add hover into footer for titels
This commit is contained in:
@@ -74,7 +74,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Вакансии и навигация -->
|
<!-- Вакансии -->
|
||||||
<div class="footer-section">
|
<div class="footer-section">
|
||||||
<h3 class="footer-title"><NuxtLink to="/vacations">Карьера</NuxtLink></h3>
|
<h3 class="footer-title"><NuxtLink to="/vacations">Карьера</NuxtLink></h3>
|
||||||
<div class="footer-links">
|
<div class="footer-links">
|
||||||
@@ -85,8 +85,9 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Навигация -->
|
||||||
<div class="footer-section">
|
<div class="footer-section">
|
||||||
<h3 class="footer-title">Полезное</h3>
|
<h3 id="poleznoe" class="footer-title">Полезное</h3>
|
||||||
<div class="footer-links">
|
<div class="footer-links">
|
||||||
<NuxtLink to="/objects" class="footer-link">🔍 Все объекты</NuxtLink>
|
<NuxtLink to="/objects" class="footer-link">🔍 Все объекты</NuxtLink>
|
||||||
<NuxtLink to="/objects/create" class="footer-link">➕ Добавить объект</NuxtLink>
|
<NuxtLink to="/objects/create" class="footer-link">➕ Добавить объект</NuxtLink>
|
||||||
@@ -213,7 +214,18 @@
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
margin-bottom: 0.5rem;
|
margin-bottom: 0.5rem;
|
||||||
color: var(--text-primary);
|
color: var(--text-primary);
|
||||||
transition: color 0.3s ease;
|
transition: text-shadow 0.3s ease, color 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-title:hover {
|
||||||
|
text-shadow: 0 0 5px #fff, /* Белая тень (основное свечение) */
|
||||||
|
0 0 10px #fff, /* Более широкая белая тень */
|
||||||
|
0 0 15px #00ffff, /* Голубой оттенок свечения */
|
||||||
|
0 0 20px #00ffff; /* Ещё шире голубой оттенок */
|
||||||
|
}
|
||||||
|
|
||||||
|
#poleznoe:hover {
|
||||||
|
text-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer-title-margin {
|
.footer-title-margin {
|
||||||
|
|||||||
Reference in New Issue
Block a user