Files
2025-12-31 00:49:32 +08:00

30 lines
616 B
CSS

/* head_69.css */
.__PFX__-h69-bar{
display:flex;
justify-content:space-between;
align-items:center;
padding:8px 12px;
border-bottom:1px solid var(--border-color);
}
.__PFX__-h69-drawer{
z-index: 999;
position:fixed;
left:0;
right:0;
bottom:-100%;
background:var(--bg-color);
padding:14px;
display:flex;
flex-wrap:wrap;
gap:8px;
transition:bottom .25s ease;
}
body.__PFX__-h69-open .__PFX__-h69-drawer{
bottom:0;
}
.__PFX__-h69-drawer a{
font-size:12px;
padding:6px 10px;
border-radius:999px;
border:1px solid var(--border-color);
}