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
This commit is contained in:
39
src/App.css
Normal file
39
src/App.css
Normal file
@@ -0,0 +1,39 @@
|
||||
/* 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;
|
||||
}
|
||||
Reference in New Issue
Block a user