mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-20 23:42:12 +03:00
49 lines
1.1 KiB
CSS
49 lines
1.1 KiB
CSS
@media (min-width: 23em) {
|
|
.nav-menu {
|
|
display: flex;
|
|
padding: 0;
|
|
width: 22em;
|
|
}
|
|
.nav-menu section {
|
|
padding: 8px 0;
|
|
width: 50%;
|
|
}
|
|
@keyframes phanpying {
|
|
0% {
|
|
background-position: 0 0, 0 0, 3em 85%;
|
|
}
|
|
100% {
|
|
background-position: 0 0, 0 0, 2em 90%;
|
|
}
|
|
}
|
|
.nav-menu section:last-child {
|
|
background-color: var(--bg-faded-color);
|
|
background-image: linear-gradient(
|
|
to right,
|
|
var(--divider-color) 1px,
|
|
transparent 1px
|
|
),
|
|
linear-gradient(to bottom left, var(--bg-blur-color), transparent),
|
|
url(../assets/phanpy-bg.svg);
|
|
background-repeat: no-repeat;
|
|
/* background-size: auto, auto, 200%; */
|
|
background-position: 0 0, 0 0, 2em 90%;
|
|
background-blend-mode: normal, normal, overlay;
|
|
box-shadow: inset 0 0 1px var(--bg-color);
|
|
position: sticky;
|
|
top: 0;
|
|
animation: phanpying 0.2s ease-in-out both;
|
|
}
|
|
.nav-menu section:last-child > .szh-menu__divider:first-child {
|
|
display: none;
|
|
}
|
|
.nav-menu .szh-menu__item span {
|
|
white-space: normal;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 40em) {
|
|
.nav-menu {
|
|
width: 28em;
|
|
}
|
|
}
|