AuctionRouter / frontend /app /globals.css
dakshtaneja's picture
SF Mono stack for code in answers
4cc8577
Raw
History Blame Contribute Delete
4.05 kB
@import "tailwindcss";
:root {
--background: #000000;
--foreground: #e7e5e4;
--accent: #f97316;
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-pixel: var(--font-pixel);
}
body {
background: var(--background);
color: var(--foreground);
/* SF Pro on Apple devices; the platform equivalent elsewhere */
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui,
"Segoe UI", Roboto, sans-serif;
font-size: 17px;
image-rendering: pixelated;
}
/* CRT scanlines, scoped to whatever element carries .crt */
.crt {
position: relative;
}
.crt::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background: repeating-linear-gradient(
0deg,
rgba(0, 0, 0, 0.22) 0px,
rgba(0, 0, 0, 0.22) 1px,
transparent 1px,
transparent 3px
);
}
/* Bayer-ish dither texture (used on cards / header) */
.dither {
background-image: repeating-conic-gradient(
rgba(249, 115, 22, 0.05) 0% 25%,
transparent 0% 50%
);
background-size: 4px 4px;
}
/* Chunky pixel panel: square corners + hard offset shadow */
.pixel-panel {
border: 2px solid #44403c;
box-shadow: 4px 4px 0 0 rgba(249, 115, 22, 0.12);
background: #0a0806;
}
.pixel-panel-accent {
border-color: var(--accent);
box-shadow: 4px 4px 0 0 rgba(249, 115, 22, 0.35);
}
/* Pixel button press effect */
.pixel-btn {
border: 2px solid var(--accent);
box-shadow: 3px 3px 0 0 #7c2d12;
transition: none;
}
.pixel-btn:active:not(:disabled) {
transform: translate(3px, 3px);
box-shadow: 0 0 0 0 #7c2d12;
}
.pixel-btn:disabled {
border-color: #44403c;
box-shadow: 3px 3px 0 0 #1c1917;
}
/* Orange neon glow */
.glow-text {
text-shadow:
0 0 6px rgba(249, 115, 22, 0.9),
0 0 18px rgba(249, 115, 22, 0.5),
0 0 32px rgba(249, 115, 22, 0.25);
}
.glow-border {
box-shadow:
4px 4px 0 0 #000,
0 0 14px rgba(249, 115, 22, 0.35),
inset 0 0 10px rgba(249, 115, 22, 0.07);
}
@keyframes glowPulse {
0%, 100% {
text-shadow:
0 0 6px rgba(249, 115, 22, 0.9),
0 0 18px rgba(249, 115, 22, 0.5);
}
50% {
text-shadow:
0 0 10px rgba(249, 115, 22, 1),
0 0 28px rgba(249, 115, 22, 0.8),
0 0 48px rgba(249, 115, 22, 0.4);
}
}
.glow-pulse {
animation: glowPulse 2.4s ease-in-out infinite;
}
/* 8-bit bidder bounce (step keyframes = chunky retro motion) */
@keyframes bidderBounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-6px); }
}
.bidder-bounce {
animation: bidderBounce 0.6s steps(2, end) infinite;
}
@keyframes bidPop {
0% { transform: translateY(4px); opacity: 0; }
15% { transform: translateY(0); opacity: 1; }
80% { transform: translateY(-2px); opacity: 1; }
100% { transform: translateY(-8px); opacity: 0; }
}
.bid-pop {
animation: bidPop 1.6s steps(4, end) infinite;
}
@keyframes gavelSlam {
0%, 60%, 100% { transform: rotate(0deg); }
70% { transform: rotate(-35deg); }
80% { transform: rotate(10deg); }
}
.gavel-slam {
transform-origin: bottom right;
animation: gavelSlam 3.2s steps(3, end) infinite;
}
/* Blinking cursor */
@keyframes blink {
0%, 49% { opacity: 1; }
50%, 100% { opacity: 0; }
}
.blink {
animation: blink 1s step-end infinite;
}
/* Chunky retro scrollbars */
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-track {
background: #000;
border-left: 2px solid #292524;
}
::-webkit-scrollbar-thumb {
background: #57534e;
border: 2px solid #000;
}
::-webkit-scrollbar-thumb:hover {
background: var(--accent);
}
/* Code blocks use the stock Atom One Dark theme (imported in
Markdown.tsx). Keep our pre's black box: transparent bg, no double
padding; the theme supplies the token colors. */
.md-body pre code.hljs {
background: transparent;
padding: 0;
}
/* Code in answers: SF Mono on Apple devices, platform mono elsewhere */
.md-body code,
.md-body pre {
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 0.9em;
}