-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
168 lines (150 loc) · 3.83 KB
/
index.html
File metadata and controls
168 lines (150 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Akshit Kobagapu</title>
<style>
:root {
--bg: #f5f7fb;
--card-bg: #ffffff;
--accent: #2563eb;
--accent-soft: #dbeafe;
--text-main: #111827;
--text-muted: #6b7280;
--shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
--radius-xl: 24px;
--max-width: 700px;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
sans-serif;
background: radial-gradient(circle at top left, #e0f2fe 0, #f9fafb 40%, #eef2ff 100%);
color: var(--text-main);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px 16px;
}
a {
text-decoration: none;
color: inherit;
}
.card {
max-width: var(--max-width);
width: 100%;
background: var(--card-bg);
border-radius: var(--radius-xl);
box-shadow: var(--shadow-soft);
padding: 28px 22px 24px;
text-align: center;
}
.photo {
width: 140px;
height: 140px;
border-radius: 999px;
object-fit: cover;
object-position: top; /* << fix hair cropping */
border: 4px solid #ffffff;
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
margin-bottom: 18px;
}
.name {
font-size: 1.6rem;
font-weight: 600;
margin-bottom: 4px;
}
.role {
font-size: 0.95rem;
color: var(--accent);
text-transform: uppercase;
letter-spacing: 0.14em;
margin-bottom: 14px;
}
.about {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 20px;
}
.buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.btn {
padding: 9px 18px;
border-radius: 999px;
font-size: 0.9rem;
border: 1px solid transparent;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
cursor: pointer;
transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
background 0.12s ease-out, border-color 0.12s ease-out;
}
.btn-primary {
background: var(--accent);
color: #ffffff;
box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
transform: translateY(-1px);
box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}
.btn-secondary {
background: transparent;
border-color: var(--accent-soft);
color: var(--text-main);
}
.btn-secondary:hover {
background: var(--accent-soft);
border-color: var(--accent);
}
@media (max-width: 480px) {
.card {
padding: 22px 18px 20px;
}
}
</style>
</head>
<body>
<main class="card">
<!-- 👇 Update the src path to where your photo really is -->
<img src="images/profile.jpg" alt="Akshit Kobagapu" class="photo" />
<h1 class="name">Akshit Kobagapu</h1>
<div class="role">Software Engineer</div>
<p class="about">
I develop engineering tools and automation used in automotive software projects.
I enjoy helping teams improve the way they build, test, and ship their code.
</p>
<div class="buttons">
<a
class="btn btn-primary"
href="https://github.com/code-steadfast"
target="_blank"
rel="noopener noreferrer"
>
View GitHub
</a>
<a
class="btn btn-secondary"
href="https://www.linkedin.com/in/akshit-kobagapu/"
target="_blank"
rel="noopener noreferrer"
>
Connect on LinkedIn
</a>
</div>
</main>
</body>
</html>