feat: add assets
All checks were successful
Deploy to VPS (dist) / deploy (push) Successful in 1m37s

This commit is contained in:
Hewston Fox
2026-03-21 02:56:15 +02:00
parent d620f06ab8
commit a804f3c280
49 changed files with 21548 additions and 97 deletions

View File

@@ -0,0 +1,102 @@
:root {
--navigation-height: 74px;
--navigation-padding: var(--tg-viewport-safe-area-inset-bottom, 0px);
--navigation-total: calc(var(--navigation-height) + var(--navigation-padding));
}
@layer base {
.navigation {
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 10;
max-width: 500px;
margin: auto;
display: flex;
align-items: flex-end;
justify-content: space-evenly;
overflow: hidden;
}
.bar {
width: 54px;
border-radius: 27px 27px 0 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding-bottom: var(--navigation-padding);
cursor: pointer;
}
.safeContent {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 64px;
margin-top: -10px;
}
.icon {
width: 40px;
height: 40px;
margin-bottom: -6px;
}
.label {
font-size: 15px;
font-weight: 700;
text-align: center;
-webkit-text-stroke: 1px #331b01;
text-shadow: 0px 2px 2px #0000008c;
line-height: 1;
color: white;
}
.active .label {
color: #ffbd42;
}
.menuOverlay {
position: absolute;
right: 0;
bottom: calc(var(--navigation-total) + 16px);
z-index: 9;
padding-bottom: 8px;
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 8px;
overflow: hidden;
pointer-events: none;
}
.menuOverlay > * {
pointer-events: auto;
}
.menuBar {
height: 54px;
width: 94px;
border-radius: 27px 0 0 27px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
padding-right: 20px;
cursor: pointer;
}
.menuBarContent {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 54px;
height: 100%;
margin-left: -10px;
}
}