mobile-nav

 avatar
unknown
css
3 months ago
1.2 kB
7
Indexable
/* ──────────────────────────────────────
   MOBILE NAV OVERLAY
   Add this to the bottom of style.css
────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-darker);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
}

.mobile-nav ul li {
  margin-bottom: 8px;
}

.mobile-nav ul li a {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  transition: color var(--transition);
}

.mobile-nav ul li a:hover {
  color: var(--color-green-light);
}

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 24px;
  cursor: pointer;
  transition: color var(--transition);
}

.mobile-nav-close:hover { color: #fff; }
Editor is loading...
Leave a Comment