Newer
Older
express-blog / public / css / styles.css
@import "./theme.css";
/* Base styles */
html,
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
}
/* Container utility */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
.pattern-dots {
  position: relative;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.07) 1px,
    transparent 1px
  );
  background-size: 15px 15px;
  z-index: 0;
}
.pattern-dots::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 90%
  );
}
.pattern-dots > * {
  position: relative;
  z-index: 1;
}
.hide {
  display: none;
}
.inline {
  display: inline;
}
footer {
  background-color: var(--bg-footer);
  color: var(--text-light);
  padding: 2rem 0;
  text-align: center;
  border-top: none;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
footer p {
  font-size: 0.85rem;
  color: var(--text-footer-p);
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
}
footer p a {
  color: var(--link-footer);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
footer p a:hover {
  color: var(--text-light);
  text-decoration: underline;
}
footer img {
  vertical-align: middle;
  margin-left: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
}
footer img:hover {
  opacity: 1;
}
footer nav {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
footer nav p {
  margin: 0;
}
footer .social-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}
footer .social-contact p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
footer .social-contact p img,
footer .social-contact p svg {
  vertical-align: middle;
  margin: 0 0.25rem;
  width: 24px;
  height: 24px;
  opacity: 0.9;
  transition: opacity 0.2s ease-in-out;
}
footer .social-contact p img:hover,
footer .social-contact p svg:hover {
  opacity: 1;
}
.xml-sitemap-link {
  font-size: 0.85em;
  color: var(--text-muted-alt);
}
footer small {
  color: var(--text-placeholder);
  font-size: 10px;
  opacity: 0.3;
}
footer small a {
  color: inherit;
}
/* Header */
header#site-header {
  background-color: var(--bg-header);
  color: var(--text-light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}
header#site-header .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  position: relative;
}
/* Logo section - positioned above nav */
header#site-header .logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bolder;
  position: relative;
  text-decoration: none;
  color: inherit;
  gap: 1rem;
  margin-left: 10px;
  padding-left: 64px; /* Space for the icon */
}
header#site-header .site-title {
  color: inherit;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
header#site-header .site-title,
a {
  color: inherit;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
header#site-header .site-title a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--bg-light-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
header#site-header .site-title a:hover::after {
  transform: scaleX(1);
}
.pattern-lambda {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 50px,
    rgba(236, 240, 241, 0.08) 50px,
    rgba(236, 240, 241, 0.08) 52px
  );
  position: relative;
}
.pattern-lambda::before {
  content: "</> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </> </>";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  color: rgba(236, 240, 241, 0.05);
  letter-spacing: 2rem;
  line-height: 3rem;
  overflow: hidden;
  pointer-events: none;
}
/* Main content */
main.container {
  flex: 1;
  background-color: var(--bg-main);
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
main h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-primary);
  padding-bottom: 0.3rem;
}
main article p {
  font-size: 1rem;
  color: var(--text-article);
}
main {
  padding: 1rem;
}
.layout {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
  gap: 2rem;
}
header#site-header nav.site-nav {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 10;
}
header#site-header nav.site-nav a,
nav.site-nav .dropdown-content form button {
  text-decoration: none;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  transition: background-color 0.2s ease-in-out;
}
nav.site-nav .dropdown-content form button {
  all: unset;
  display: block;
  width: 100%;
  padding: 0.3rem 0.6rem;
  color: var(--accent-primary);
  cursor: pointer;
  font: inherit;
  font-weight: 600; /* Match the link font weight */
  text-align: left;
  user-select: none;
  box-sizing: border-box;
}
header#site-header nav.site-nav > a {
  color: var(--text-light);
}
header#site-header nav.site-nav a:hover,
header#site-header nav.site-nav a:focus,
nav.site-nav .dropdown-content form button:hover,
nav.site-nav .dropdown-content form button:focus {
  background-color: var(--bg-footer);
}
nav.site-nav .dropdown {
  position: relative;
  display: block;
  z-index: 11;
}
nav.site-nav .dropbtn {
  display: inline-block;
  cursor: pointer;
}
nav.site-nav .dropdown-content {
  z-index: 11;
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);

  flex-direction: column;
  white-space: nowrap;
  left: 0;
  top: 100%;
}
nav.site-nav .dropdown-content a {
  display: block;
  padding: 0.3rem 0.6rem;
  text-decoration: none;
  color: var(--accent-primary);
  font-weight: 600; /* Match the button font weight */
}
nav.site-nav .dropdown-content a:hover,
nav.site-nav .dropdown-content form button:hover {
  color: var(--text-light);
  background-color: var(--bg-footer); /* Match the main nav hover color */
}
header#site-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5em;
  padding: 0.5em;
}
nav.site-nav .dropdown-content form {
  margin: 0;
}
/* Navigation row with consistent left alignment */
.nav-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding-left: 64px; /* Same as icon width + gap to align with site title */
}
/* Logo icon that acts as home link - spans from site title to nav */
.nav-logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: flex-end;
  position: absolute;
  left: 1rem;
  top: 1rem;
  bottom: 1rem;
}
nav.site-nav .dropdown-content .dropdown-content {
  top: 0;
  left: 100%; /* shift nested submenu to the right */
  margin-left: 0.2rem; /* small gap */
  min-width: 160px;
  z-index: 12;
}
nav.site-nav .dropdown-content .dropdown:hover > .dropdown-content {
  display: block;
}
nav.site-nav > .dropdown:hover > .dropdown-content {
  display: block;
}
/* Only show direct submenu of nested dropdowns */
nav.site-nav .dropdown-content > .dropdown:hover > .dropdown-content {
  display: block;
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.sidebar {
  width: 250px;
  background-color: var(--bg-body);
  border-right: 1px solid var(--accent-primary);
  padding: 1em;
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
  position: relative;
}
/* Apply to all lists */
.sidebar nav ul {
  list-style: none;
  padding-left: 0;
}
.sidebar h4.month-label,
.sidebar a.post-label {
  text-transform: capitalize !important;
}
.sidebar .menu-year {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-primary);
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sidebar .menu-month {
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--accent-primary);
}
.sidebar .menu-month ul.posts-list {
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.3rem;
}
.sidebar .menu-month li.post-label a {
  color: var(--accent-primary);
  text-decoration: none;
  display: block;
  padding: 0.2rem 0;
  transition: color 0.2s ease-in-out;
}
.sidebar .menu-month li.post-label a:hover {
  color: var(--accent-blue);
  text-decoration: underline;
}
.sidebar .menu-year {
  margin-bottom: 1em;
}
.sidebar .month-label {
  font-weight: normal;
  display: block;
  margin-bottom: 0.3em;
}
.toc {
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  box-sizing: border-box;
  margin-bottom: 1em;
  padding: 1.5em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.toc.sticky {
  position: fixed;
  top: 20px;
  z-index: 1000;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--border-medium);
}
.toc.sticky.bottom-boundary {
  position: fixed;
  max-height: none;
  overflow-y: auto;
}
/* Scrollbar */
.toc::-webkit-scrollbar {
  width: 6px;
}
.toc::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}
.toc::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  transition: background 0.3s ease;
}
.toc::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}
/* Firefox Scrollbar */
.toc {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
/* TOC Content Styles */
.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc li {
  margin: 0.5rem 0;
  position: relative;
}
.toc li.h3 {
  margin-left: 1rem;
  font-size: 0.9rem;
}
.toc a {
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: var(--text-muted-dark);
  border-radius: 4px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  word-wrap: break-word;
  line-height: 1.4;
}
.toc a:hover {
  background-color: var(--bg-hover);
  color: var(--accent-primary);
  border-left-color: var(--accent-blue-bright);
  transform: translateX(2px);
}
.toc a:focus {
  outline: 2px solid var(--accent-blue-bright);
  outline-offset: 2px;
}
/* Active link highlighting */
.toc a.active {
  background-color: var(--bg-tag);
  color: var(--accent-tag);
  border-left-color: var(--accent-tag);
  font-weight: 600;
}
.toc-header {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accent-primary);
  border-bottom: 2px solid var(--border-medium);
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* Ensure proper spacing between sidebar sections */
.sidebar nav > * + .toc {
  margin-top: 2rem;
  border-top: 1px solid var(--border-medium);
  padding-top: 1.5rem;
}
/* Animation for smooth transitions */
.toc {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toc.sticky {
  animation: slideInSticky 0.3s ease-out;
}
@keyframes slideInSticky {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  main {
    padding: 1rem 0.5rem;
  }
  footer .container {
    padding: 1.5rem;
  }
  footer p {
    font-size: 0.8rem;
  }
  .toc {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .toc-header {
    font-size: 1rem;
  }

  .toc a {
    padding: 0.4rem 0.5rem;
    font-size: 0.9rem;
  }

  .toc li.h3 {
    margin-left: 0.5rem;
  }
}
@media (max-width: 900px) {
  main {
    margin-left: 0;
    margin-left: 200px;
  }
  main.container {
    margin: 0;
  }
  .layout {
    flex-direction: column;
  }
  .toc.sticky {
    position: relative;
    top: auto;
    left: auto;
    width: auto !important;
    max-height: 300px;
    z-index: auto;
  }
}
/* Navigation adjustments for small screens */
@media (max-width: 768px) {
  .layout {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
  }
  header#site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  header#site-header nav.site-nav {
    flex-direction: column;
    gap: 0;
    position: unset;
    top: 3em;
    left: 0;

    width: 100%;
    height: auto;
    float: none;
    padding: 0.5rem;
    border-bottom: 1px solid var(--text-article);

    text-align: left;
  }
  header#site-header nav.site-nav.hide {
    display: none;
  }
  header#site-header #siteNav.hide a {
    display: none;
  }
  nav.site-nav {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .nav-row {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-left: 0;
  }
  .nav-logo {
    position: relative;
    left: 0;
    margin-bottom: 0.5rem;
  }
  nav.site-nav ul {
    display: block;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
  }
  nav.site-nav ul li {
    margin: 0.25rem 0;
    border: none;
  }
  nav.site-nav ul li a {
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 0;
  }
  nav.site-nav a {
    text-transform: capitalize;
  }
  header#site-header .menu-toggle {
    display: block;
    width: 100%;
    text-align: left;
  }
  header#site-header .dropdown {
    position: relative;
  }
  header#site-header .dropdown-content {
    position: static;
  }
}
.icon {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  user-select: none;
}
.deep-dive-enhanced {
  background: linear-gradient(
    135deg,
    #0a192f 0%,
    var(--deep-dive-mid-1) 30%,
    var(--deep-dive-mid-2) 70%,
    var(--deep-dive-bg) 100%
  );
  border-radius: 8px;
  color: var(--deep-dive-glow);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 8px rgba(0, 206, 209, 0.4),
    0 0 20px rgba(0, 206, 209, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 20px rgba(0, 206, 209, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 206, 209, 0.2);
}
.deep-dive-enhanced:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 12px rgba(0, 206, 209, 0.6),
    0 0 30px rgba(0, 206, 209, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 0 25px rgba(0, 206, 209, 0.08);
  border-color: rgba(0, 206, 209, 0.4);
}
.deep-dive-enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(236, 240, 241, 0.08),
    transparent
  );
  animation: shimmer 4s;
}
.deep-dive-enhanced::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: linear-gradient(
    135deg,
    rgba(0, 206, 209, 0.03) 0%,
    transparent 50%,
    rgba(0, 206, 209, 0.03) 100%
  );
  border-radius: 6px;
  pointer-events: none;
}
.icon-text {
  position: relative;
  z-index: 2;
  text-shadow: 0 0 8px rgba(0, 206, 209, 0.5);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes pulse {
  0%,
  100% {
    text-shadow: 0 0 8px rgba(0, 206, 209, 0.5);
  }
  50% {
    text-shadow:
      0 0 12px rgba(0, 206, 209, 0.8),
      0 0 20px rgba(0, 206, 209, 0.3);
  }
}
/* Floating particles effect */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: 12px;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--deep-dive-glow);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s linear infinite;
}
.particle:nth-child(1) {
  left: 20%;
  animation-delay: -1s;
  animation-duration: 5s;
}
.particle:nth-child(2) {
  left: 50%;
  animation-delay: -2s;
  animation-duration: 7s;
}
.particle:nth-child(3) {
  left: 80%;
  animation-delay: -3s;
  animation-duration: 6s;
}
@keyframes float {
  0% {
    transform: translateY(70px) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10px) scale(1);
    opacity: 0;
  }
}
/* Corner accents */
.corner-accent {
  position: absolute;
  width: 6px;
  height: 1px;
  background: rgba(236, 240, 241, 0.3);
  opacity: 0.8;
}
.corner-accent.top-left {
  top: 4px;
  left: 4px;
  transform: rotate(45deg);
}
.corner-accent.bottom-right {
  bottom: 4px;
  right: 4px;
  transform: rotate(45deg);
}
.corner-accent.top-right {
  top: 4px;
  right: 4px;
  transform: rotate(-45deg);
}
.corner-accent.bottom-left {
  bottom: 4px;
  left: 4px;
  transform: rotate(-45deg);
}
@media print {
  @page {
    size: letter;
    margin: 0;
  }

  .no-print {
    display: none;
  }

  /* 1. Strip UI Elements  */
  header#site-header,
  footer,
  aside.sidebar,
  .no-print {
    display: none !important;
  }
  /* 2. Reset Layout Constraints */
  .layout {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
  }
  /* 3. Transform Main Content into "Paper" */
  main.container {
    width: 8.5in !important;
    height: 11in !important;
    padding: 0.5in !important;
    margin: 0 !important;
    box-shadow: none !important;
    background: white !important;
    color: black !important;
    overflow: hidden; /* Ensure single-page fit */
  }
  /* 4. Kill global dot patterns and 100vh */
  body.pattern-dots,
  html {
    background: white !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .pattern-dots::after {
    display: none !important;
  }
}
:root[data-view-type="paper"] #site-header,
:root[data-view-type="paper"] footer,
:root[data-view-type="paper"] aside.sidebar {
  display: none !important;
}