-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.html
More file actions
334 lines (295 loc) · 11.7 KB
/
Copy pathtools.html
File metadata and controls
334 lines (295 loc) · 11.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Tools and Resources by Indranil Mal - Computational Utilities and Academic Information">
<meta name="keywords" content="Computational Tools, Basis Set Viewer, Academic Resources, Fellowships India">
<meta name="author" content="Indranil Mal">
<title>Tools & Resources | Indranil Mal</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
crossorigin="anonymous" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
}
/* Unified site nav: with logo + icons */
nav.site-nav {
background: #fff;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
position: sticky; top: 0; z-index: 1000;
}
.nav-container {
max-width: 1200px; margin: 0 auto; padding: 0.85rem 1.5rem;
display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.nav-logo {
font-size: 1.1rem; font-weight: 700; color: #2c3e50;
text-decoration: none; letter-spacing: -0.01em;
}
.nav-logo:hover { color: #3498db; }
.nav-menu { display: flex; gap: 1.4rem; list-style: none; flex-wrap: wrap; }
.nav-menu a {
text-decoration: none; color: #555; font-weight: 500;
font-size: 0.92rem; transition: color 0.2s;
display: inline-flex; align-items: center; gap: 0.4rem;
}
.nav-menu a:hover, .nav-menu a.active { color: #3498db; }
.nav-menu a i { font-size: 0.85rem; }
@media (max-width: 760px) {
.nav-container { padding: 0.7rem 1rem; flex-wrap: wrap; }
.nav-menu { gap: 0.85rem; width: 100%; justify-content: flex-start; }
.nav-menu a { font-size: 0.86rem; }
}
/* Header */
header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 3rem 2rem;
text-align: center;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
font-weight: 700;
}
header p {
font-size: 1.1rem;
opacity: 0.9;
}
/* Container */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
/* Section */
section {
background-color: white;
margin: 2rem 0;
padding: 2.5rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
section h2 {
color: #2c3e50;
font-size: 2rem;
margin-bottom: 1.5rem;
padding-bottom: 0.5rem;
border-bottom: 3px solid #3498db;
}
/* Card Grid */
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.tool-card {
background: #fff;
border: 2px solid #e1e8ed;
border-radius: 8px;
padding: 2rem;
transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.tool-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
border-color: #3498db;
}
.tool-card h3 {
color: #2c3e50;
font-size: 1.4rem;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 0.8rem;
}
.tool-card h3 i {
color: #3498db;
}
.tool-card p {
color: #666;
margin-bottom: 1.5rem;
line-height: 1.7;
}
.btn {
display: inline-block;
background: #3498db;
color: white;
padding: 0.8rem 1.5rem;
border-radius: 5px;
text-decoration: none;
font-weight: 500;
transition: background 0.3s;
}
.btn:hover {
background: #2980b9;
}
.tag-update {
background: #e7f3fe;
color: #3498db;
padding: 2px 8px;
border-radius: 12px;
font-size: 0.75rem;
font-weight: 600;
margin-left: auto;
}
/* Updates List */
.updates-list {
list-style: none;
}
.update-item {
background: #f8f9fa;
border-left: 4px solid #3498db;
padding: 1rem 1.5rem;
margin-bottom: 1rem;
border-radius: 4px;
}
.update-date {
font-size: 0.85rem;
color: #666;
margin-bottom: 0.3rem;
}
.update-content {
font-weight: 500;
color: #2c3e50;
}
footer {
background: #2c3e50;
color: white;
text-align: center;
padding: 2rem;
margin-top: 3rem;
}
footer a {
color: #3498db;
text-decoration: none;
}
@media (max-width: 768px) {
header h1 {
font-size: 2rem;
}
.container {
padding: 1rem;
}
section {
padding: 1.5rem;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="site-nav">
<div class="nav-container">
<a href="index.html" class="nav-logo">Indranil Mal</a>
<ul class="nav-menu">
<li><a href="index.html"><i class="fas fa-home"></i> Home</a></li>
<li><a href="index.html#research"><i class="fas fa-flask"></i> Research</a></li>
<li><a href="publications.html"><i class="fas fa-book"></i> Publications</a></li>
<li><a href="collaborators.html"><i class="fas fa-users"></i> Collaborators</a></li>
<li><a href="scientific-tools.html"><i class="fas fa-project-diagram"></i> Scientific Tools DB</a></li>
<li><a href="tools.html" class="active"><i class="fas fa-tools"></i> Tools</a></li>
<li><a href="index.html#contact"><i class="fas fa-envelope"></i> Contact</a></li>
</ul>
</div>
</nav>
<!-- Header -->
<header>
<h1>Tools & Resources</h1>
<p>Computational Utilities, Academic Resources, and Latest Updates</p>
</header>
<div class="container">
<!-- Tools Section -->
<section id="tools">
<h2><i class="fas fa-hammer"></i> Developed Tools</h2>
<div class="card-grid">
<!-- Scientific Tools Database -->
<div class="tool-card" style="border-color: #764ba2; background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);">
<h3><i class="fas fa-project-diagram" style="color: #764ba2;"></i> Scientific Tools Database <span class="tag-update" style="background:#764ba2;color:#fff;">847 codes</span></h3>
<p>
Interactive mind map of <strong>847 curated computational materials science tools</strong> spanning DFT, TDDFT, DMFT, GW/BSE, tight-binding, phonons, MD, structure prediction, post-processing, frameworks, and ML potentials. Search, browse and drill down into any code with linked papers and official sources.
</p>
<a href="scientific-tools.html" class="btn" style="background: #764ba2;">Explore Database <i class="fas fa-arrow-right"></i></a>
</div>
<!-- Basis Set Viewer -->
<div class="tool-card">
<h3><i class="fas fa-layer-group"></i> Basis Set Viewer</h3>
<p>
An interactive tool to visualize and compare Gaussian basis sets.
Useful for computational chemists and physicists working with DFT codes.
Supports various element selections and format exports.
</p>
<a href="tools/basis-set-viewer.html" class="btn">Launch Tool <i class="fas fa-arrow-right"></i></a>
</div>
<!-- Placeholder for future tool -->
<div class="tool-card" style="opacity: 0.7; background: #fcfcfc;">
<h3><i class="fas fa-flask"></i> More Coming Soon</h3>
<p>
New computational utilities for materials science are currently under development.
Stay tuned for updates!
</p>
<span class="btn" style="background: #ccc; cursor: default;">In Development</span>
</div>
</div>
</section>
<!-- Resources Section -->
<section id="resources">
<h2><i class="fas fa-book-reader"></i> Academic Resources</h2>
<div class="card-grid">
<!-- Fellowship Landscape -->
<div class="tool-card" style="border-left-color: #2ecc71;">
<div style="display: flex; align-items: center; margin-bottom: 1rem;">
<h3 style="margin-bottom: 0; color: #2c3e50;"><i class="fas fa-graduation-cap"
style="color: #2ecc71;"></i> Fellowships in India</h3>
<span class="tag-update">UPDATED 2025</span>
</div>
<p>
A comprehensive guide to the academic fellowship and salary landscape in India for 2025-26.
Covers PhD, Postdoc, and Faculty positions with detailed salary breakdowns and comparisons.
</p>
<a href="resources/fellowships.html" class="btn" style="background: #2ecc71;">View Guide <i
class="fas fa-arrow-right"></i></a>
</div>
</div>
</section>
<!-- Updates / Vacancies Section -->
<section id="updates">
<h2><i class="fas fa-bell"></i> Updates </h2>
<div class="updates-list">
<div class="update-item">
<div class="update-date"><i class="far fa-calendar-alt"></i> December 2025</div>
<div class="update-content">
Currently looking for motivated Undergrad or Grad students for internship projects
in Computational Materials Science tool developments. <a href="index.html#contact" style="color: #3498db;">Contact
me</a> for details.
</div>
</div>
<div class="update-item">
<div class="update-date"><i class="far fa-calendar-alt"></i> November 2025</div>
<div class="update-content">
Updated the "Fellowships in India" guide with the latest DST/SERB revision norms.
</div>
</div>
</div>
</section>
</div>
<footer>
<p>© 2025 Indranil Mal.</p>
</footer>
</body>
</html>