- Add all Next.js application files - Include components, app structure, and public assets - Remove empty bewerbung placeholder folder - Update .gitignore for Next.js project 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
66 lines
1.1 KiB
CSS
66 lines
1.1 KiB
CSS
@import "tailwindcss";
|
|
|
|
:root {
|
|
--color-primary: #3dc9b3;
|
|
--color-primary-dark: #309383;
|
|
--color-text: #353535;
|
|
--color-text-light: #8c9398;
|
|
--color-bg-light: #f3f5f8;
|
|
--color-bg-dark: #242830;
|
|
}
|
|
|
|
@theme inline {
|
|
--font-varela: "Varela Round", system-ui, sans-serif;
|
|
|
|
--color-primary: #3dc9b3;
|
|
--color-primary-dark: #309383;
|
|
--color-text: #353535;
|
|
--color-text-light: #8c9398;
|
|
--color-bg-light: #f3f5f8;
|
|
--color-bg-dark: #242830;
|
|
}
|
|
|
|
body {
|
|
color: var(--color-text);
|
|
font-family: var(--font-varela);
|
|
}
|
|
|
|
/* Smooth scroll behavior */
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
/* Custom scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: var(--color-bg-light);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--color-primary);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--color-primary-dark);
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes fade-in {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.animate-fade-in {
|
|
animation: fade-in 1s ease-out;
|
|
}
|