39 lines
1.2 KiB
Cheetah
39 lines
1.2 KiB
Cheetah
<style>
|
||
.mt-home-link {
|
||
position: fixed;
|
||
top: calc(env(safe-area-inset-top, 0) + 0.75rem);
|
||
left: calc(env(safe-area-inset-left, 0) + 0.75rem);
|
||
z-index: 2000;
|
||
display: inline-flex;
|
||
align-items: center;
|
||
gap: 0.5rem;
|
||
padding: 0.5rem 0.875rem;
|
||
border: 1px solid #2a2520;
|
||
border-radius: 0.625rem;
|
||
background: rgba(20,17,13,0.9);
|
||
backdrop-filter: blur(8px);
|
||
-webkit-backdrop-filter: blur(8px);
|
||
color: #e8e0d0;
|
||
text-decoration: none;
|
||
font-family: "Inter", ui-serif, Georgia, serif;
|
||
font-size: 0.9375rem;
|
||
transition: background 0.15s, border-color 0.15s;
|
||
}
|
||
.mt-home-link:hover { background: rgba(34,28,22,0.95); border-color: #8e6824; color: #e8e0d0; }
|
||
.mt-home-link .mt-home-logo {
|
||
color: #ca9335;
|
||
font-size: 1.25rem;
|
||
line-height: 1;
|
||
font-family: ui-serif, Georgia, serif;
|
||
}
|
||
.mt-home-link .mt-home-text { letter-spacing: 0.02em; }
|
||
@media (max-width: 480px) {
|
||
.mt-home-link { padding: 0.5rem 0.625rem; font-size: 0.875rem; }
|
||
.mt-home-link .mt-home-text { display: none; }
|
||
}
|
||
</style>
|
||
<a class="mt-home-link" href="https://montana.quest/" title="На главную Монтаны">
|
||
<span class="mt-home-logo">Ɉ</span>
|
||
<span class="mt-home-text">Монтана</span>
|
||
</a>
|