Skip to content

Commit 475a9a2

Browse files
Update index.html
1 parent 9be35b0 commit 475a9a2

1 file changed

Lines changed: 23 additions & 18 deletions

File tree

index.html

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,17 @@
88
<style>
99
body {
1010
font-family: 'Roboto', sans-serif;
11-
background-color: #f0f4f8;
11+
background-color: #f4f7fa;
1212
margin: 0;
1313
padding: 0;
1414
}
1515

1616
header {
17-
background-color: #008080;
17+
background: linear-gradient(120deg, #00796b, #26a69a);
1818
color: white;
19-
padding: 30px 20px;
19+
padding: 40px 20px;
2020
text-align: center;
21+
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
2122
}
2223

2324
.container {
@@ -27,14 +28,14 @@
2728
}
2829

2930
h2 {
30-
color: #333;
31+
color: #222;
3132
margin-top: 40px;
3233
border-bottom: 2px solid #ccc;
3334
padding-bottom: 5px;
3435
}
3536

3637
p {
37-
color: #555;
38+
color: #444;
3839
}
3940

4041
ul {
@@ -44,31 +45,35 @@
4445
a {
4546
color: #0066cc;
4647
text-decoration: none;
48+
font-weight: 500;
4749
}
4850

4951
a:hover {
5052
text-decoration: underline;
53+
color: #004d99;
5154
}
5255

5356
.project-card {
5457
background-color: #fff;
5558
border: 1px solid #ddd;
56-
border-radius: 8px;
59+
border-radius: 10px;
5760
padding: 20px;
5861
margin-bottom: 20px;
59-
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
60-
transition: transform 0.2s ease-in-out;
62+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
63+
transition: all 0.3s ease-in-out;
6164
}
6265

6366
.project-card:hover {
64-
transform: scale(1.02);
67+
transform: translateY(-4px);
68+
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
6569
}
6670

6771
footer {
6872
text-align: center;
6973
padding: 20px;
70-
background-color: #f9f9f9;
71-
color: #777;
74+
background-color: #e0f2f1;
75+
color: #333;
76+
margin-top: 40px;
7277
}
7378
</style>
7479
</head>
@@ -89,26 +94,26 @@ <h2>🔗 Useful Links</h2>
8994
<h2>📊 Highlighted Projects</h2>
9095

9196
<div class="project-card">
92-
<strong>1. IPL Dashboard (Power BI + Streamlit)</strong><br/>
93-
<a href="https://github.com/niravtrivedi23/IPL-Streamlit-Dashboard" target="_blank">View Project</a>
94-
<p>A dashboard analyzing IPL cricket performance using Python and Streamlit.</p>
97+
<strong>1. IPL Dashboard (Power BI)</strong><br/>
98+
<a href="https://github.com/niravtrivedi23/IPL-Dashboard" target="_blank">View Project</a>
99+
<p>Analyzed IPL cricket data using Python and Streamlit with interactive visuals and filters.</p>
95100
</div>
96101

97102
<div class="project-card">
98-
<strong>2. Mutual Fund Analysis (Python + Pwer BI + Excel)</strong><br/>
103+
<strong>2. Mutual Fund Analysis (Python + Power BI + Excel)</strong><br/>
99104
<a href="https://github.com/niravtrivedi23/Mutual-Fund-Analysis" target="_blank">View Project</a>
100-
<p>Identified high-confidence mutual funds using historical data, visualization, and analysis.</p>
105+
<p>Analyzed mutual fund performance and identified low-risk options using Python and visualization tools.</p>
101106
</div>
102107

103108
<div class="project-card">
104109
<strong>3. Tapi River Sustainability (GEE + Python + Excel)</strong><br/>
105110
<a href="https://github.com/niravtrivedi23/Surat-Tapiriver-Analysis-GEE" target="_blank">View Project</a>
106-
<p>Used satellite data to study river width and turbidity changes from 1987–2023.</p>
111+
<p>Studied environmental changes in Surat’s Tapi River using Google Earth Engine and historical data.</p>
107112
</div>
108113
</div>
109114

110115
<footer>
111-
© 2024 Nirav Trivedi | Powered by GitHub Pages
116+
Nirav Trivedi | Powered by GitHub Pages
112117
</footer>
113118

114119
</body>

0 commit comments

Comments
 (0)