Files
pacs-landing/src/App.css
asif 38764f2ed1 Initial commit: Complete PACS landing page
- Implemented React + Vite + Tailwind CSS setup
- Created responsive landing page for Palhara SKUS Primary Agriculture Credit Society
- Added hero carousel with 4 slides showcasing schemes
- Built services section with 6 service cards
- Implemented interactive revenue charts with dummy data
- Added FAQ section with accordion functionality
- Created complaint form UI
- Built comprehensive footer with links and contacts
- Configured custom theme colors (green, yellow, orange)
- Added Framer Motion animations throughout
- Implemented fully responsive design for mobile, tablet, and desktop
2025-11-26 12:01:39 +05:30

40 lines
574 B
CSS

/* Global Styles */
* {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #4ab44d;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #3a8f3c;
}
/* Selection */
::selection {
background-color: #4ab44d;
color: white;
}
::-moz-selection {
background-color: #4ab44d;
color: white;
}