feat(footer): visible credit с маленьким лого hhivp
All checks were successful
deploy / deploy (push) Successful in 53s
All checks were successful
deploy / deploy (push) Successful in 53s
Заменил длинную строку «Сайт разработан и сопровождается…» на компактный credit-блок с маркой и текстом «Разработка — hhivp.com». SVG mark локально (public/hhivp-mark.svg) — без cross-origin запросов. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
4
public/hhivp-mark.svg
Normal file
4
public/hhivp-mark.svg
Normal file
@@ -0,0 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" role="img" aria-label="hhivp">
|
||||
<rect width="32" height="32" rx="6" fill="currentColor"/>
|
||||
<text x="16" y="22" font-family="-apple-system,BlinkMacSystemFont,Inter,Roboto,Arial,sans-serif" font-size="14" font-weight="700" text-anchor="middle" fill="#fff" letter-spacing="-0.5">hhivp</text>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 358 B |
@@ -11,8 +11,10 @@ const year = new Date().getFullYear();
|
||||
<a href="/privacy/">Конфиденциальность</a>
|
||||
</nav>
|
||||
<p class="developer">
|
||||
Сайт разработан и сопровождается техническим партнёром —{' '}
|
||||
<a href="https://hhivp.com/" rel="noopener" target="_blank">ООО «АйТи Решения»</a>
|
||||
<a href="https://hhivp.com/" rel="noopener" target="_blank" class="dev-credit">
|
||||
<img src="/hhivp-mark.svg" alt="" width="18" height="18" class="dev-credit-mark" />
|
||||
<span>Разработка — hhivp.com</span>
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
@@ -190,6 +190,23 @@ section h2::before {
|
||||
border-bottom: 1px dashed currentColor;
|
||||
}
|
||||
.footer-inner .developer a:hover { color: var(--accent); border-bottom-color: var(--accent); }
|
||||
.footer-inner .developer .dev-credit {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.45rem;
|
||||
border-bottom: none;
|
||||
}
|
||||
.footer-inner .developer .dev-credit:hover { color: var(--accent); }
|
||||
.footer-inner .developer .dev-credit:hover span { border-bottom-color: var(--accent); }
|
||||
.footer-inner .developer .dev-credit span {
|
||||
border-bottom: 1px dashed currentColor;
|
||||
}
|
||||
.footer-inner .developer .dev-credit-mark {
|
||||
flex-shrink: 0;
|
||||
display: block;
|
||||
vertical-align: middle;
|
||||
color: currentColor;
|
||||
}
|
||||
|
||||
/* ── Reading pages (privacy) ────────────────────────────────────── */
|
||||
.prose {
|
||||
|
||||
Reference in New Issue
Block a user