You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
835 B
48 lines
835 B
@import "tailwindcss";
|
|
|
|
:root {
|
|
--background: #ffffff;
|
|
--foreground: #171717;
|
|
--color-brown: #7D6E5E;
|
|
--color-pink: #EED2CC;
|
|
--color-cream: #FBF7F4;
|
|
--color-navy: #00171F;
|
|
}
|
|
|
|
body {
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
font-family: var(--font-inter), system-ui, -apple-system, sans-serif;
|
|
}
|
|
|
|
/* Smooth scrolling for anchor links */
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
/* Custom scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #7D6E5E;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #5d5247;
|
|
}
|
|
|
|
/* Form input focus styles */
|
|
input:focus,
|
|
textarea:focus {
|
|
border-color: #7D6E5E !important;
|
|
box-shadow: 0 0 0 2px rgba(125, 110, 94, 0.2) !important;
|
|
outline: none;
|
|
}
|