2026-06-03 04:07:53 +00:00
|
|
|
/*
|
2026-06-03 04:40:32 +00:00
|
|
|
* Godspark Refinement — Zensical Theme
|
|
|
|
|
* Nature + futuristic aurora pastel/iridescent upgrade.
|
|
|
|
|
* Additive CSS layer. Preserves toolbar readability.
|
2026-06-03 04:07:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
:root {
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Refined iris palette */
|
|
|
|
|
--gp-bg: #f6fbf7;
|
|
|
|
|
--gp-surface: #ffffff;
|
|
|
|
|
--gp-text: #1c2b1c;
|
|
|
|
|
--gp-text-muted: #4e5e4b;
|
2026-06-03 08:18:56 +00:00
|
|
|
--gp-primary: #4a8262; /* darker sage — visible link color */
|
2026-06-03 04:40:32 +00:00
|
|
|
--gp-secondary: #a8c5b6;
|
|
|
|
|
--gp-tertiary: #e9dfc6;
|
|
|
|
|
--gp-accent: #b9a5d7; /* soft aurora purple */
|
|
|
|
|
|
|
|
|
|
/* Iridescent atmosphere tokens */
|
|
|
|
|
--gp-iris-1: #f1f6f3;
|
|
|
|
|
--gp-iris-2: #eef3f6;
|
|
|
|
|
--gp-iris-3: #f6f2f8;
|
|
|
|
|
--gp-iris-4: #f5f1ec;
|
|
|
|
|
|
|
|
|
|
--gp-aurora-iris: linear-gradient(
|
|
|
|
|
135deg,
|
|
|
|
|
var(--gp-iris-1), var(--gp-iris-2), var(--gp-iris-3), var(--gp-iris-4)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
--gp-card-bg: rgba(255, 255, 255, 0.74);
|
|
|
|
|
--gp-card-border: rgba(122, 170, 150, 0.22);
|
|
|
|
|
--gp-card-shadow: 0 8px 28px rgba(122, 170, 150, 0.10);
|
|
|
|
|
--gp-card-hover: 0 18px 40px rgba(122, 170, 150, 0.16);
|
|
|
|
|
|
|
|
|
|
--gp-glow: rgba(141, 184, 160, 0.35);
|
|
|
|
|
--gp-glow-intense: rgba(160, 130, 210, 0.45);
|
|
|
|
|
|
|
|
|
|
--gp-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
|
|
|
|
|
--gp-duration: 0.78s;
|
|
|
|
|
--gp-distance: 20px;
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Base atmosphere */
|
2026-06-03 04:07:53 +00:00
|
|
|
body {
|
2026-06-03 04:40:32 +00:00
|
|
|
background-color: var(--gp-bg);
|
|
|
|
|
background-image:
|
|
|
|
|
radial-gradient(ellipse at 12% -8%, rgba(210, 230, 240, 0.38), transparent 56%),
|
|
|
|
|
radial-gradient(ellipse at 88% 108%, rgba(215, 210, 235, 0.34), transparent 58%),
|
|
|
|
|
var(--gp-aurora-iris);
|
2026-06-03 04:07:53 +00:00
|
|
|
background-attachment: fixed;
|
2026-06-03 04:40:32 +00:00
|
|
|
background-size: 100% 100%, 100% 100%, 200% 200%;
|
|
|
|
|
color: var(--gp-text);
|
2026-06-03 04:07:53 +00:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2026-06-03 04:40:32 +00:00
|
|
|
text-rendering: optimizeLegibility;
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (prefers-reduced-motion: no-preference) {
|
2026-06-03 04:40:32 +00:00
|
|
|
body.godspark-breathe {
|
|
|
|
|
animation: gp-breathe 36s ease-in-out infinite;
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
2026-06-03 04:40:32 +00:00
|
|
|
@keyframes gp-breathe {
|
|
|
|
|
0%, 100% { background-position: 0 0, 0 0, 0% 50%; }
|
|
|
|
|
50% { background-position: 0 0, 0 0, 100% 50%; }
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Typography */
|
2026-06-03 04:07:53 +00:00
|
|
|
h1, h2, h3, h4, h5, h6,
|
2026-06-03 04:40:32 +00:00
|
|
|
article h1, article h2, article h3 {
|
2026-06-03 04:07:53 +00:00
|
|
|
font-weight: 650;
|
2026-06-03 04:40:32 +00:00
|
|
|
letter-spacing: -0.012em;
|
2026-06-03 04:07:53 +00:00
|
|
|
line-height: 1.2;
|
2026-06-03 04:40:32 +00:00
|
|
|
color: var(--gp-text);
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
2026-06-03 04:40:32 +00:00
|
|
|
color: var(--gp-primary);
|
2026-06-03 04:07:53 +00:00
|
|
|
text-decoration-thickness: 1px;
|
|
|
|
|
text-underline-offset: 3px;
|
2026-06-03 04:40:32 +00:00
|
|
|
transition: color 0.22s var(--gp-ease), text-decoration-color 0.22s;
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
a:hover {
|
2026-06-03 04:40:32 +00:00
|
|
|
color: var(--gp-accent);
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Layout helpers */
|
2026-06-03 04:07:53 +00:00
|
|
|
.zensical article,
|
|
|
|
|
.zensical .content,
|
2026-06-03 04:40:32 +00:00
|
|
|
main, article {
|
2026-06-03 04:07:53 +00:00
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
.zensical article > *,
|
|
|
|
|
.zensical .content > *,
|
|
|
|
|
main > *,
|
|
|
|
|
article > *,
|
|
|
|
|
section {
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Cards */
|
2026-06-03 04:07:53 +00:00
|
|
|
.zensical .card,
|
|
|
|
|
section.card,
|
|
|
|
|
div.card,
|
2026-06-03 04:40:32 +00:00
|
|
|
article.card,
|
|
|
|
|
article section,
|
|
|
|
|
main section {
|
|
|
|
|
background: var(--gp-card-bg);
|
|
|
|
|
border: 1px solid var(--gp-card-border);
|
|
|
|
|
border-radius: 22px;
|
|
|
|
|
backdrop-filter: blur(14px) saturate(145%);
|
|
|
|
|
-webkit-backdrop-filter: blur(14px) saturate(145%);
|
2026-06-03 04:07:53 +00:00
|
|
|
padding: 1.6rem 1.8rem;
|
2026-06-03 04:40:32 +00:00
|
|
|
box-shadow: var(--gp-card-shadow);
|
2026-06-03 04:07:53 +00:00
|
|
|
transition:
|
2026-06-03 04:40:32 +00:00
|
|
|
transform var(--gp-duration) var(--gp-ease),
|
|
|
|
|
box-shadow var(--gp-duration) var(--gp-ease),
|
2026-06-03 04:07:53 +00:00
|
|
|
border-color 0.3s ease;
|
|
|
|
|
}
|
|
|
|
|
.zensical .card:hover,
|
|
|
|
|
section.card:hover,
|
|
|
|
|
div.card:hover,
|
|
|
|
|
article.card:hover {
|
2026-06-03 04:40:32 +00:00
|
|
|
transform: translateY(-4px);
|
|
|
|
|
border-color: rgba(122, 170, 150, 0.48);
|
|
|
|
|
box-shadow: var(--gp-card-hover);
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Homepage hero panels */
|
|
|
|
|
.hero-media,
|
|
|
|
|
.godspark-hero {
|
|
|
|
|
margin: 1.2rem 0 2rem;
|
|
|
|
|
border-radius: 22px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border: 1px solid var(--gp-card-border);
|
|
|
|
|
background:
|
|
|
|
|
linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.30)),
|
|
|
|
|
var(--gp-aurora-iris);
|
|
|
|
|
background-blend-mode: overlay;
|
|
|
|
|
backdrop-filter: blur(10px) saturate(120%);
|
|
|
|
|
-webkit-backdrop-filter: blur(10px) saturate(120%);
|
|
|
|
|
box-shadow: var(--gp-card-shadow);
|
|
|
|
|
}
|
|
|
|
|
.hero-media img,
|
|
|
|
|
.godspark-hero img {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: auto;
|
|
|
|
|
max-height: 380px;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
}
|
|
|
|
|
.hero-media figcaption,
|
|
|
|
|
.godspark-hero figcaption {
|
|
|
|
|
padding: 0.8rem 1rem;
|
|
|
|
|
color: var(--gp-text-muted);
|
|
|
|
|
font-size: 0.92rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.intro-lead {
|
|
|
|
|
font-size: 1.18rem;
|
|
|
|
|
line-height: 1.65;
|
|
|
|
|
color: var(--gp-text-muted);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Front-page lists */
|
|
|
|
|
.index main ul,
|
|
|
|
|
.index main ol {
|
|
|
|
|
padding-left: 1.2rem;
|
|
|
|
|
line-height: 1.75;
|
|
|
|
|
}
|
|
|
|
|
.index main ul li::marker,
|
|
|
|
|
.index main ol li::marker {
|
|
|
|
|
color: var(--gp-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* CTA buttons (additive only) */
|
|
|
|
|
button.cta,
|
|
|
|
|
a.cta,
|
|
|
|
|
.zensical .cta,
|
|
|
|
|
button[class*="godspark"],
|
|
|
|
|
a[class*="godspark"] {
|
|
|
|
|
background: linear-gradient(120deg, var(--gp-primary), var(--gp-accent));
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 550;
|
|
|
|
|
border: 1px solid rgba(122, 170, 150, 0.24);
|
|
|
|
|
border-radius: 999px;
|
|
|
|
|
padding: 0.55em 1.5em;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: opacity 0.28s, box-shadow 0.28s, transform 0.28s var(--gp-ease);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.45em;
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
button.cta:hover,
|
|
|
|
|
a.cta:hover,
|
|
|
|
|
.zensical .cta:hover,
|
|
|
|
|
button[class*="godspark"]:hover,
|
|
|
|
|
a[class*="godspark"]:hover {
|
|
|
|
|
opacity: 0.96;
|
|
|
|
|
box-shadow: 0 12px 26px var(--gp-glow);
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
}
|
|
|
|
|
button.cta::after,
|
|
|
|
|
a.cta::after,
|
|
|
|
|
.zensical .cta::after,
|
|
|
|
|
button[class*="godspark"]::after,
|
|
|
|
|
a[class*="godspark"]::after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
background:
|
|
|
|
|
linear-gradient(120deg, transparent, rgba(255,255,255,0.42), transparent);
|
|
|
|
|
background-size: 220% 100%;
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
background-position: -130% 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
border-radius: inherit;
|
|
|
|
|
}
|
|
|
|
|
.zensical .cta:hover::after,
|
|
|
|
|
button[class*="godspark"]:hover::after,
|
|
|
|
|
a[class*="godspark"]:hover::after {
|
|
|
|
|
animation: gp-sheen 7s var(--gp-ease) infinite;
|
|
|
|
|
}
|
|
|
|
|
@keyframes gp-sheen {
|
|
|
|
|
0% { background-position: -140% 0; }
|
|
|
|
|
55% { background-position: 80% 0; }
|
|
|
|
|
100% { background-position: 80% 0; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Code (preserve toolbar button readability) */
|
2026-06-03 04:07:53 +00:00
|
|
|
pre {
|
|
|
|
|
background: rgba(255, 255, 255, 0.82);
|
2026-06-03 04:40:32 +00:00
|
|
|
border: 1px solid var(--gp-card-border);
|
2026-06-03 04:07:53 +00:00
|
|
|
border-radius: 14px;
|
|
|
|
|
padding: 1.1rem 1.3rem;
|
|
|
|
|
}
|
|
|
|
|
code, kbd {
|
2026-06-03 04:40:32 +00:00
|
|
|
background: rgba(122, 170, 150, 0.10);
|
|
|
|
|
border: 1px solid rgba(122, 170, 150, 0.18);
|
2026-06-03 04:07:53 +00:00
|
|
|
border-radius: 7px;
|
2026-06-03 04:40:32 +00:00
|
|
|
color: var(--gp-text);
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Blockquotes */
|
2026-06-03 04:07:53 +00:00
|
|
|
blockquote {
|
2026-06-03 04:40:32 +00:00
|
|
|
border-left: 3px solid var(--gp-secondary);
|
|
|
|
|
background: rgba(141, 184, 160, 0.08);
|
2026-06-03 04:07:53 +00:00
|
|
|
border-radius: 0 12px 12px 0;
|
|
|
|
|
padding: 0.9rem 1.2rem;
|
|
|
|
|
margin: 1.4rem 0;
|
2026-06-03 04:40:32 +00:00
|
|
|
color: var(--gp-text-muted);
|
2026-06-03 04:07:53 +00:00
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* HR */
|
2026-06-03 04:07:53 +00:00
|
|
|
hr {
|
|
|
|
|
border: none;
|
|
|
|
|
height: 1px;
|
|
|
|
|
background: linear-gradient(90deg,
|
|
|
|
|
transparent,
|
2026-06-03 04:40:32 +00:00
|
|
|
var(--gp-primary),
|
|
|
|
|
var(--gp-secondary),
|
2026-06-03 04:07:53 +00:00
|
|
|
transparent);
|
|
|
|
|
margin: 2.4rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Tables */
|
2026-06-03 04:07:53 +00:00
|
|
|
table {
|
|
|
|
|
border-collapse: separate;
|
|
|
|
|
border-spacing: 0;
|
|
|
|
|
border-radius: 14px;
|
|
|
|
|
overflow: hidden;
|
2026-06-03 04:40:32 +00:00
|
|
|
box-shadow: 0 2px 12px rgba(122, 170, 150, 0.07);
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
th {
|
2026-06-03 08:18:56 +00:00
|
|
|
background: linear-gradient(135deg, #3d6b52, #5a8a6e, #92ad9e);
|
2026-06-03 04:07:53 +00:00
|
|
|
color: #fff;
|
|
|
|
|
font-weight: 550;
|
2026-06-03 08:18:56 +00:00
|
|
|
letter-spacing: 0.02em;
|
|
|
|
|
padding: 0.7rem 1rem;
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
td {
|
2026-06-03 04:40:32 +00:00
|
|
|
background: var(--gp-surface);
|
|
|
|
|
border-bottom: 1px solid rgba(122, 170, 150, 0.12);
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Scroll reveals */
|
2026-06-03 04:07:53 +00:00
|
|
|
.godspark-reveal {
|
|
|
|
|
opacity: 0;
|
2026-06-03 04:40:32 +00:00
|
|
|
transform: translateY(var(--gp-distance));
|
2026-06-03 04:07:53 +00:00
|
|
|
transition:
|
2026-06-03 04:40:32 +00:00
|
|
|
opacity var(--gp-duration) var(--gp-ease),
|
|
|
|
|
transform var(--gp-duration) var(--gp-ease);
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
.godspark-reveal.is-visible {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
.godspark-reveal.is-visible > * {
|
|
|
|
|
opacity: 0;
|
2026-06-03 04:40:32 +00:00
|
|
|
transform: translateY(var(--gp-distance));
|
2026-06-03 04:07:53 +00:00
|
|
|
transition:
|
2026-06-03 04:40:32 +00:00
|
|
|
opacity var(--gp-duration) var(--gp-ease),
|
|
|
|
|
transform var(--gp-duration) var(--gp-ease);
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
.godspark-reveal.is-visible > *:nth-child(1) { transition-delay: 0.00s; }
|
|
|
|
|
.godspark-reveal.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
|
|
|
|
|
.godspark-reveal.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
|
|
|
|
|
.godspark-reveal.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
|
|
|
|
|
.godspark-reveal.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
|
|
|
|
|
.godspark-reveal.is-visible > *:nth-child(6) { transition-delay: 0.40s; }
|
|
|
|
|
.godspark-reveal.is-visible > * {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: translateY(0);
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Cursor glow (opt-in attribute) */
|
|
|
|
|
[gp-glow]::after,
|
|
|
|
|
.gp-glow-active::after {
|
2026-06-03 04:07:53 +00:00
|
|
|
content: "";
|
|
|
|
|
position: fixed;
|
2026-06-03 04:40:32 +00:00
|
|
|
width: 400px;
|
|
|
|
|
height: 400px;
|
2026-06-03 04:07:53 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
|
pointer-events: none;
|
2026-06-03 04:40:32 +00:00
|
|
|
z-index: 999998;
|
2026-06-03 04:07:53 +00:00
|
|
|
background: radial-gradient(
|
|
|
|
|
circle,
|
2026-06-03 04:40:32 +00:00
|
|
|
rgba(141, 184, 160, 0.30) 0%,
|
|
|
|
|
rgba(160, 130, 210, 0.16) 32%,
|
|
|
|
|
transparent 68%
|
2026-06-03 04:07:53 +00:00
|
|
|
);
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
opacity: 0;
|
2026-06-03 04:40:32 +00:00
|
|
|
left: -400px;
|
|
|
|
|
top: -400px;
|
|
|
|
|
transition: opacity 0.45s ease;
|
|
|
|
|
will-change: left, top, opacity;
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
2026-06-03 04:40:32 +00:00
|
|
|
[gp-glow]::after,
|
|
|
|
|
.gp-glow-active::after {
|
2026-06-03 04:07:53 +00:00
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
2026-06-03 04:40:32 +00:00
|
|
|
[gp-glow]::after,
|
|
|
|
|
.gp-glow-active::after {
|
2026-06-03 04:07:53 +00:00
|
|
|
display: none !important;
|
|
|
|
|
}
|
|
|
|
|
.godspark-reveal {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: none;
|
|
|
|
|
transition: none;
|
|
|
|
|
}
|
|
|
|
|
.godspark-reveal.is-visible > * {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: none;
|
|
|
|
|
transition: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Scrollbar */
|
2026-06-03 04:07:53 +00:00
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 10px;
|
|
|
|
|
}
|
|
|
|
|
::-webkit-scrollbar-track {
|
2026-06-03 04:40:32 +00:00
|
|
|
background: var(--gp-bg);
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
background: linear-gradient(180deg,
|
2026-06-03 04:40:32 +00:00
|
|
|
var(--gp-primary),
|
|
|
|
|
var(--gp-accent),
|
|
|
|
|
var(--gp-secondary));
|
2026-06-03 04:07:53 +00:00
|
|
|
border-radius: 99px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Neutralize default Zensical color cycling without breaking toolbar icons */
|
|
|
|
|
.md-header,
|
|
|
|
|
.md-header__inner,
|
|
|
|
|
.md-header__button,
|
|
|
|
|
.md-icon,
|
|
|
|
|
[data-md-color-component="header"] {
|
|
|
|
|
animation: none !important;
|
|
|
|
|
}
|
|
|
|
|
h1, h2, h3, h4, h5, h6,
|
|
|
|
|
article h1, article h2, article h3 {
|
|
|
|
|
animation: none !important;
|
|
|
|
|
background: none !important;
|
|
|
|
|
-webkit-text-fill-color: var(--gp-text);
|
|
|
|
|
background-clip: unset !important;
|
|
|
|
|
color: var(--gp-text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Selection/focus */
|
|
|
|
|
::selection {
|
|
|
|
|
background: var(--gp-primary);
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
:focus-visible {
|
|
|
|
|
outline: 2px solid var(--gp-primary);
|
|
|
|
|
outline-offset: 3px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:58:13 +00:00
|
|
|
.beacon-icons a .md-icon,
|
|
|
|
|
.beacon-icons button .md-icon {
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 08:18:56 +00:00
|
|
|
/* Larger logo in header */
|
|
|
|
|
.md-header__button.md-logo {
|
|
|
|
|
padding: 0.4rem;
|
|
|
|
|
}
|
|
|
|
|
.md-header__button.md-logo img {
|
|
|
|
|
height: 3.2rem;
|
|
|
|
|
width: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hide the site name text in the header nav bar, keep layout intact */
|
|
|
|
|
.md-header__title .md-ellipsis {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:42:46 +00:00
|
|
|
/* Homepage refined */
|
|
|
|
|
|
|
|
|
|
.wp-divider {
|
|
|
|
|
border: none;
|
|
|
|
|
height: 1px;
|
|
|
|
|
margin: 2.8rem auto 3.2rem;
|
|
|
|
|
max-width: 86%;
|
|
|
|
|
background: linear-gradient(
|
|
|
|
|
90deg,
|
|
|
|
|
transparent,
|
|
|
|
|
var(--gp-secondary),
|
|
|
|
|
var(--gp-primary),
|
|
|
|
|
var(--gp-accent),
|
|
|
|
|
transparent
|
|
|
|
|
);
|
|
|
|
|
opacity: 0.42;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-spacer {
|
|
|
|
|
height: 0;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Contribution section card */
|
|
|
|
|
.wp-section {
|
|
|
|
|
background: var(--gp-card-bg);
|
|
|
|
|
border: 1px solid var(--gp-card-border);
|
|
|
|
|
border-radius: 26px;
|
|
|
|
|
padding: 2rem 2.2rem;
|
|
|
|
|
backdrop-filter: blur(14px) saturate(145%);
|
|
|
|
|
-webkit-backdrop-filter: blur(14px) saturate(145%);
|
|
|
|
|
box-shadow: var(--gp-card-shadow);
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-section h2,
|
|
|
|
|
.wp-section h3 {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: var(--gp-text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-section ul,
|
|
|
|
|
.wp-section ol {
|
|
|
|
|
padding-left: 1.35rem;
|
|
|
|
|
line-height: 1.8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-section li {
|
|
|
|
|
margin: 0.28rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.wp-section li::marker {
|
|
|
|
|
color: var(--gp-primary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tighter hero composition on index */
|
|
|
|
|
.index .godspark-hero {
|
|
|
|
|
margin-bottom: 0.6rem;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
border: none;
|
|
|
|
|
background: transparent;
|
|
|
|
|
backdrop-filter: none;
|
|
|
|
|
-webkit-backdrop-filter: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.index .godspark-hero img {
|
|
|
|
|
max-height: 420px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 10:17:44 +00:00
|
|
|
/* ── Page hero images — full-width, caption overlay ── */
|
|
|
|
|
.page-hero,
|
|
|
|
|
.page-infographic {
|
|
|
|
|
position: relative;
|
|
|
|
|
margin: 0.6rem 0 1.2rem;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
line-height: 0;
|
|
|
|
|
}
|
|
|
|
|
.page-hero img,
|
|
|
|
|
.page-infographic img {
|
|
|
|
|
display: block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: auto;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
}
|
|
|
|
|
.page-hero figcaption,
|
|
|
|
|
.page-infographic figcaption {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
padding: 0.2rem 0.55rem;
|
|
|
|
|
background: rgba(255, 255, 255, 0.72);
|
|
|
|
|
backdrop-filter: blur(4px);
|
|
|
|
|
-webkit-backdrop-filter: blur(4px);
|
|
|
|
|
border-radius: 8px 0 0 0;
|
|
|
|
|
color: var(--gp-text-muted);
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
line-height: 1.35;
|
|
|
|
|
max-width: 55%;
|
|
|
|
|
}
|
|
|
|
|
.page-hero figcaption a,
|
|
|
|
|
.page-infographic figcaption a {
|
|
|
|
|
color: var(--gp-primary);
|
|
|
|
|
font-style: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── AI-generated image credit — tiny, no emoji ── */
|
|
|
|
|
.ai-credit {
|
|
|
|
|
font-size: 0.68rem;
|
|
|
|
|
color: var(--gp-text-muted);
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* ── Footer badges ── */
|
|
|
|
|
.md-copyright__badges {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
.md-copyright__zensical {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.3em;
|
|
|
|
|
}
|
|
|
|
|
.md-copyright__grebedoc {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
line-height: 0;
|
|
|
|
|
}
|
|
|
|
|
.md-copyright__grebedoc img {
|
|
|
|
|
image-rendering: pixelated;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 11:35:02 +00:00
|
|
|
/* ── Comments section ── */
|
|
|
|
|
#__comments {
|
|
|
|
|
font-size: 1.15rem;
|
|
|
|
|
font-weight: 650;
|
|
|
|
|
margin: 2.5rem 0 0.8rem;
|
|
|
|
|
padding-bottom: 0.4rem;
|
|
|
|
|
border-bottom: 2px solid var(--gp-secondary);
|
|
|
|
|
}
|
|
|
|
|
#cusdis_thread {
|
|
|
|
|
min-height: 280px;
|
|
|
|
|
padding: 0.8rem 0;
|
|
|
|
|
}
|
|
|
|
|
#cusdis_thread iframe {
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-03 04:40:32 +00:00
|
|
|
/* Print */
|
2026-06-03 04:07:53 +00:00
|
|
|
@media print {
|
|
|
|
|
body {
|
|
|
|
|
background: #fff !important;
|
|
|
|
|
color: #000 !important;
|
|
|
|
|
}
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
|
color: #000 !important;
|
|
|
|
|
}
|
2026-06-03 04:40:32 +00:00
|
|
|
.gp-glow-active::after,
|
|
|
|
|
[gp-glow]::after {
|
|
|
|
|
display: none !important;
|
|
|
|
|
}
|
2026-06-03 04:07:53 +00:00
|
|
|
}
|