MediaWiki:Gadget-wix-nav.css: Difference between revisions
Content deleted Content added
No edit summary |
No edit summary |
||
Line 213:
color: #fff;
}
/* ================================================================
NAV CARDS — data-wix-module="nav-cards"
Grid of clickable cards linking to sub-homepages.
Each card has an icon, label, description, and arrow.
================================================================ */
/* ── 9. Card Grid ───────────────────────────────────────────────
Responsive grid: 1 col mobile, 2 col tablet, 3 col desktop.
──────────────────────────────────────────────────────────────── */
.wix-nav-cards {
width: 100%;
display: grid;
grid-template-columns: 1fr;
gap: 6px;
}
@media (min-width: 520px) {
.wix-nav-cards {
grid-template-columns: repeat(2, 1fr);
gap: 8px;
}
}
@media (min-width: 900px) {
.wix-nav-cards {
grid-template-columns: repeat(3, 1fr);
}
}
/* ── 10. Card ───────────────────────────────────────────────────
Clickable row with icon, text, and arrow.
──────────────────────────────────────────────────────────────── */
.wix-nav-card {
display: flex;
align-items: center;
gap: 14px;
background: var(--wix-bg);
border: 1.5px solid var(--wix-border);
border-radius: 12px;
padding: 14px 16px;
cursor: pointer;
transition:
border-color 0.2s ease,
box-shadow 0.2s ease,
transform 0.2s ease;
user-select: none;
-webkit-user-select: none;
-webkit-tap-highlight-color: transparent;
color: var(--wix-text);
text-decoration: none;
}
.wix-nav-card:hover {
border-color: var(--wix-accent-light);
box-shadow: 0 2px 10px rgba(26, 82, 118, 0.08);
transform: translateY(-1px);
text-decoration: none;
color: var(--wix-text);
}
.wix-nav-card:active {
transform: scale(0.98);
box-shadow: none;
}
/* ── 11. Card Icon ──────────────────────────────────────────────
Rounded square with centered SVG icon.
──────────────────────────────────────────────────────────────── */
.wix-nav-card-ico {
width: 42px;
height: 42px;
flex-shrink: 0;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
background: var(--wix-bg-subtle);
color: var(--wix-text-muted);
transition:
background 0.2s ease,
color 0.2s ease;
}
.wix-nav-card:hover .wix-nav-card-ico {
background: var(--wix-accent);
color: #fff;
}
.wix-nav-card-ico svg {
width: 22px;
height: 22px;
}
/* ── 12. Card Text ──────────────────────────────────────────────
Label + description.
──────────────────────────────────────────────────────────────── */
.wix-nav-card-txt {
flex: 1;
min-width: 0;
}
.wix-nav-card-name {
font-size: 14px;
font-weight: 600;
letter-spacing: -0.1px;
line-height: 1.2;
}
.wix-nav-card-desc {
font-size: 12px;
color: var(--wix-text-muted);
margin-top: 1px;
}
/* ── 13. Card Arrow ─────────────────────────────────────────────
Right-pointing chevron, slides on hover.
──────────────────────────────────────────────────────────────── */
.wix-nav-card-arrow {
color: var(--wix-border);
display: flex;
align-items: center;
flex-shrink: 0;
transition:
color 0.2s ease,
transform 0.2s ease;
}
.wix-nav-card:hover .wix-nav-card-arrow {
color: var(--wix-accent);
transform: translateX(2px);
}
.wix-nav-card-arrow svg {
width: 14px;
height: 14px;
}
/* ── 14. Card Entrance Animation ────────────────────────────────
Staggered fade-in for up to 12 cards.
──────────────────────────────────────────────────────────────── */
.wix-nav-card {
animation: wixFadeIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.wix-nav-card:nth-child(1) { animation-delay: 0.02s; }
.wix-nav-card:nth-child(2) { animation-delay: 0.05s; }
.wix-nav-card:nth-child(3) { animation-delay: 0.08s; }
.wix-nav-card:nth-child(4) { animation-delay: 0.11s; }
.wix-nav-card:nth-child(5) { animation-delay: 0.14s; }
.wix-nav-card:nth-child(6) { animation-delay: 0.17s; }
.wix-nav-card:nth-child(7) { animation-delay: 0.20s; }
.wix-nav-card:nth-child(8) { animation-delay: 0.23s; }
.wix-nav-card:nth-child(9) { animation-delay: 0.26s; }
.wix-nav-card:nth-child(10) { animation-delay: 0.29s; }
.wix-nav-card:nth-child(11) { animation-delay: 0.32s; }
.wix-nav-card:nth-child(12) { animation-delay: 0.35s; }
| |||