Files
blog/app/globals.css
Gabriel Kaszewski 8a921b0423 Add new blog posts and update existing content
- Created "My 2023 Coding Edition" post detailing projects and experiences in Rust and game development.
- Added "My 2024 and 2025 roadmap" outlining goals and projects for the upcoming years.
- Introduced "Python Tutorial - Introduction" and "Python - Variables" posts to teach Python programming basics.
- Published "ROADMAP for 2023" to outline initial goals for the year.
- Added "My Rust little adventure" post summarizing various Rust projects undertaken.
- Released "Spanish Inquisition - 3.0.1 UPDATE" detailing the latest game update and features.
- Added multiple background images in AVIF format for website use.
- Removed unused SVG files to clean up the public directory.
2025-09-03 23:27:41 +02:00

62 lines
1.4 KiB
CSS

@import "tailwindcss";
@plugin "@tailwindcss/typography";
:root {
--background: #ffffff;
--foreground: #171717;
}
@theme {
--color-aero-blue: #7cb9e8;
--color-aero-green: #8ff0a4;
--color-sky-blue: #87ceeb;
--color-grass-green: #7cfc00;
--color-water: #00bfff;
--color-window-title: #0058e1;
--background-start: var(--color-sky-blue);
--background-end: var(--color-lime-300);
--font-display: var(--font-frutiger), "Arial", "Helvetica", "sans-serif";
}
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
background-color: #3cb1e7;
background-image:
/* A subtle white radial gradient for a "lens flare" or glossy spot effect */ radial-gradient(
circle at 10% 20%,
rgba(255, 255, 255, 0.4) 0%,
rgba(255, 255, 255, 0) 25%
),
/* The main blue sky gradient */
linear-gradient(to bottom, #54c5f9 0%, #87e0fd 70%),
/* The green hill at the bottom */
radial-gradient(circle at 50% 100%, #9cff9c 0%, #3cdc5c 40%, #24a844 80%);
background-attachment: fixed;
min-height: 100vh;
color: #333;
}
::selection {
background-color: #0058e1;
color: white;
}
.window-shadow {
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
}