pablo.shortman.me/src/app/globals.css
2024-12-02 13:43:08 +01:00

155 lines
3.4 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
body {
font-family: Arial, Helvetica, sans-serif;
}
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 240 10% 3.9%;
--card: 0 0% 100%;
--card-foreground: 240 10% 3.9%;
--popover: 0 0% 100%;
--popover-foreground: 240 10% 3.9%;
--primary: 240 5.9% 10%;
--primary-foreground: 0 0% 98%;
--secondary: 240 4.8% 95.9%;
--secondary-foreground: 240 5.9% 10%;
--muted: 240 4.8% 95.9%;
--muted-foreground: 240 3.8% 46.1%;
--accent: 240 4.8% 95.9%;
--accent-foreground: 240 5.9% 10%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 0 0% 98%;
--border: 240 5.9% 90%;
--input: 240 5.9% 90%;
--ring: 240 10% 3.9%;
--chart-1: 12 76% 61%;
--chart-2: 173 58% 39%;
--chart-3: 197 37% 24%;
--chart-4: 43 74% 66%;
--chart-5: 27 87% 67%;
/* Border Radius */
--radius: 0.5rem;
}
.dark {
--background: 20 8% 8%;
--foreground: 0 0% 100%;
--card: 240 10% 3.9%;
--card-foreground: 0 0% 98%;
--popover: 240 10% 3.9%;
--popover-foreground: 0 0% 98%;
--primary: 17 90% 59%;
--primary-foreground: 0 0% 98%;
--secondary: 240 3.7% 15.9%;
--secondary-foreground: 0 0% 98%;
--muted: 20 6% 10%;
--muted-foreground: 0 5% 58%;
--accent: 240 3.7% 15.9%;
--accent-foreground: 0 0% 98%;
--destructive: 0 62.8% 30.6%;
--destructive-foreground: 0 0% 98%;
--border: 240 3.7% 15.9%;
--input: 240 3.7% 15.9%;
--ring: 240 4.9% 83.9%;
--chart-1: 220 70% 50%;
--chart-2: 160 60% 45%;
--chart-3: 30 80% 55%;
--chart-4: 280 65% 60%;
--chart-5: 340 75% 55%;
}
}
@layer base {
@font-face {
font-family: "Poppins";
src: url("./fonts/Poppins-Regular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Poppins";
src: url("./fonts/Poppins-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal;
}
}
@layer base {
* {
@apply border-border;
}
body {
@apply dark bg-background text-foreground;
}
html {
scroll-behavior: smooth;
}
.halftone {
--dotSize: 0.25rem;
--stop1: 3%;
--stop2: 60%;
}
.halftone::after {
/* Cover our element */
content: "";
position: absolute;
inset: 0;
/* Dotted background */
background-image: radial-gradient(
circle at center,
hsl(var(--foreground)) var(--dotSize),
transparent 0
);
background-size: 2rem 2rem;
background-position: 0 0, 0.65rem 0.65rem;
}
.halftone::after {
mask-image: linear-gradient(
hsl(var(--background) / 0),
hsl(var(--background) / 0.25),
hsl(var(--background) / 0)
);
}
.hero-figure-gradient {
background: linear-gradient(
hsl(var(--background) / 0.95),
1%,
hsl(var(--background))
);
}
}
nav.navbar {
background-color: transparent;
background-image: radial-gradient(
transparent 1px,
var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, hsl(var(--background)))
1px
);
background-size: 4px 4px;
backdrop-filter: blur(3px);
mask: linear-gradient(rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
opacity: 1;
}
nav.navbar::before {
display: block;
content: "";
position: absolute;
top: -1px;
left: 0;
right: 0;
height: 1px;
background: var(--accent);
opacity: 0.2;
}