Skip to content

Commit 9a84479

Browse files
update
1 parent 80a28c2 commit 9a84479

File tree

1 file changed

+56
-35
lines changed

1 file changed

+56
-35
lines changed

β€Žindex.html

+56-35
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,53 @@
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Rohit Mittapalli</title>
7-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-serif/0.1.1/font.min.css">
87
<style>
98
:root {
10-
--primary-color: #2C3E50;
11-
--accent-color: #34495E;
12-
--background-color: #FCFCFC;
13-
--text-color: #2C3E50;
14-
--subtle-color: #95A5A6;
9+
--primary-color: #1a2634;
10+
--accent-color: #2d3e50;
11+
--background-color: #f8f9fa;
12+
--text-color: #1a2634;
13+
--subtle-color: #6c7a89;
14+
--grid-color: rgba(0, 0, 0, 0.06);
1515
}
1616

1717
body {
18-
font-family: 'Crimson Text', Georgia, serif;
19-
line-height: 1.7;
18+
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
19+
line-height: 1.6;
2020
max-width: 700px;
21-
margin: 60px auto;
22-
padding: 0 40px;
21+
margin: 40px auto;
22+
padding: 0 20px;
2323
color: var(--text-color);
2424
background-color: var(--background-color);
2525
background-image:
26-
linear-gradient(to right, rgba(44, 62, 80, 0.05) 1px, transparent 1px),
27-
linear-gradient(to bottom, rgba(44, 62, 80, 0.05) 1px, transparent 1px);
28-
background-size: 20px 20px;
26+
linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
27+
linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
28+
background-size: 16px 16px;
2929
font-size: 15px;
3030
}
3131

3232
.container {
3333
background: white;
34-
padding: 40px 50px;
35-
box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
36-
border: 1px solid rgba(0, 0, 0, 0.1);
34+
padding: 40px;
35+
box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
36+
border: 1px solid rgba(0, 0, 0, 0.12);
37+
}
38+
39+
@media (max-width: 600px) {
40+
body {
41+
margin: 0;
42+
padding: 0;
43+
background: white;
44+
}
45+
.container {
46+
padding: 20px;
47+
box-shadow: none;
48+
border: none;
49+
}
3750
}
3851

3952
h1, h2 {
40-
font-family: 'Crimson Text', Georgia, serif;
53+
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
4154
}
4255

4356
h1 {
@@ -52,7 +65,7 @@
5265
font-size: 1.4em;
5366
color: var(--accent-color);
5467
font-weight: 600;
55-
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
68+
border-bottom: 1px solid var(--grid-color);
5669
padding-bottom: 0.3em;
5770
margin-top: 1.5em;
5871
}
@@ -64,26 +77,36 @@
6477
margin-bottom: 30px;
6578
}
6679

67-
.links a {
80+
.links {
81+
font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
82+
font-size: 0.95em;
83+
}
84+
85+
.links div {
6886
display: block;
87+
margin: 12px 0;
88+
}
89+
90+
.links a {
91+
display: inline-block;
6992
color: var(--text-color);
7093
text-decoration: none;
71-
margin: 10px 0;
7294
cursor: pointer;
95+
width: fit-content;
7396
}
7497

7598
.links a:hover {
7699
color: var(--accent-color);
77100
}
78101

79-
.content a, .company a {
102+
.content a {
80103
color: var(--text-color);
81104
text-decoration: none;
82105
background: linear-gradient(to bottom, transparent 95%, var(--accent-color) 95%);
83106
transition: all 0.2s ease;
84107
}
85108

86-
.content a:hover, .company a:hover {
109+
.content a:hover {
87110
color: var(--accent-color);
88111
}
89112

@@ -97,7 +120,7 @@
97120
pointer-events: none;
98121
opacity: 0;
99122
transition: opacity 0.2s;
100-
font-family: Georgia, serif;
123+
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
101124
}
102125

103126
.last-updated {
@@ -106,7 +129,7 @@
106129
margin-top: 40px;
107130
text-align: right;
108131
font-style: italic;
109-
border-top: 1px solid rgba(0, 0, 0, 0.1);
132+
border-top: 1px solid var(--grid-color);
110133
padding-top: 20px;
111134
}
112135

@@ -126,11 +149,11 @@
126149
<body>
127150
<div class="container">
128151
<h1>Rohit Mittapalli</h1>
129-
<div class="company">Currently scaling inference at <a href="#" data-clipboard="https://www.anthropic.com">Anthropic</a></div>
152+
<div class="company">Currently scaling inference at <a href="https://www.anthropic.com" target="_blank">Anthropic</a></div>
130153

131154
<div class="content">
132155
<h2>About Me</h2>
133-
<p>I'm currently working on scalable inference at <a href="#" data-clipboard="https://www.anthropic.com">Anthropic</a>. Previously, I was at <a href="https://www.appliedintuition.com" target="_blank">Applied Intuition</a> where I focused on building and scaling our data infrastructure, particularly working with Apache Spark and <a href="https://hudi.apache.org/powered-by#applied-intuition" target="_blank">Apache Hudi</a>. Before that, I worked on search infrastructure at <a href="https://www.uber.com" target="_blank">Uber</a>.</p>
156+
<p>I'm currently working on scalable inference at <a href="https://www.anthropic.com" target="_blank">Anthropic</a>. Previously, I was at <a href="https://www.appliedintuition.com" target="_blank">Applied Intuition</a> where I focused on building and scaling our data infrastructure, particularly working with Apache Spark and <a href="https://hudi.apache.org/powered-by#applied-intuition" target="_blank">Apache Hudi</a>. Before that, I worked on search infrastructure at <a href="https://www.uber.com" target="_blank">Uber</a>.</p>
134157

135158
<p>I graduated from <a href="https://www.gatech.edu" target="_blank">Georgia Tech</a> in 2021, where I had the privilege of researching under <a href="https://faculty.cc.gatech.edu/~judy/" target="_blank">Dr. Judy Hoffman</a>, focusing on computer vision and transfer learning across CV tasks.</p>
136159

@@ -139,11 +162,11 @@ <h2>About Me</h2>
139162

140163
<h2>Links</h2>
141164
<div class="links">
142-
<a href="resume.pdf" data-clipboard="resume.pdf" download>πŸ“„ Resume</a>
143-
<a href="#" data-clipboard="https://www.linkedin.com/in/rohitmittapalli">πŸ‘₯ LinkedIn</a>
144-
<a href="#" data-clipboard="https://scholar.google.com/citations?hl=en&user=zw9i5GwAAAAJ">πŸ“š Google Scholar</a>
145-
<a href="#" data-clipboard="https://github.com/rohitmittapalli">πŸ’» GitHub</a>
146-
<a href="#" data-clipboard="rohit.mittapalli@gmail.com">πŸ“§ Email</a>
165+
<div><a href="#" data-clipboard="rohit.mittapalli@gmail.com">πŸ“§ Email</a></div>
166+
<div><a href="https://github.com/rohitmittapalli" target="_blank">πŸ’» GitHub</a></div>
167+
<div><a href="https://scholar.google.com/citations?hl=en&user=zw9i5GwAAAAJ" target="_blank">πŸ“š Scholar</a></div>
168+
<div><a href="https://www.linkedin.com/in/rohitmittapalli" target="_blank">πŸ‘₯ LinkedIn</a></div>
169+
<div><a href="resume.pdf" target="_blank">πŸ“„ Resume</a></div>
147170
</div>
148171

149172
<div class="last-updated">Last Updated: November 2024</div>
@@ -152,13 +175,11 @@ <h2>Links</h2>
152175
<div class="tooltip" id="tooltip">Copied to clipboard!</div>
153176

154177
<script>
178+
// Only handle clipboard for email
155179
document.querySelectorAll('a[data-clipboard]').forEach(link => {
156180
link.addEventListener('click', (e) => {
157-
if (link.hasAttribute('download')) {
158-
return; // Allow normal download behavior for resume
159-
}
160181
e.preventDefault();
161-
const text = e.target.dataset.clipboard;
182+
const text = link.dataset.clipboard;
162183
navigator.clipboard.writeText(text);
163184

164185
const tooltip = document.getElementById('tooltip');

0 commit comments

Comments
Β (0)