forked from Vaibhav-S-Gowda/Web-Development-Experiments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_copilot_readme.html
More file actions
221 lines (195 loc) · 6.63 KB
/
github_copilot_readme.html
File metadata and controls
221 lines (195 loc) · 6.63 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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Developer Portfolio</title>
<style>
/* CSS Variables for easy theme switching */
[data-theme="dark"] {
--bg-color: #0d1117;
--container-bg: #0d1117;
--card-bg: #161b22;
--border-color: #30363d;
--text-main: #c9d1d9;
--text-muted: #8b949e;
--accent: #58a6ff;
--card-hover-border: #8b949e;
--toggle-bg: #30363d;
}
[data-theme="light"] {
--bg-color: #f6f8fa;
--container-bg: #ffffff;
--card-bg: #ffffff;
--border-color: #d0d7de;
--text-main: #24292f;
--text-muted: #57606a;
--accent: #0969da;
--card-hover-border: #0969da;
--toggle-bg: #afb8c1;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
background-color: var(--bg-color);
color: var(--text-main);
transition: background-color 0.3s ease, color 0.3s ease;
line-height: 1.6;
margin: 0;
padding: 20px;
}
/* Floating Theme Toggle */
.theme-switch-wrapper {
position: fixed;
top: 20px;
right: 20px;
display: flex;
align-items: center;
z-index: 100;
}
.theme-button {
cursor: pointer;
padding: 8px 15px;
border-radius: 20px;
border: 1px solid var(--border-color);
background: var(--toggle-bg);
color: var(--text-main);
font-size: 0.8rem;
font-weight: bold;
transition: all 0.2s ease;
}
.theme-button:hover {
transform: scale(1.05);
}
.container {
max-width: 850px;
margin: 40px auto;
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 40px;
background-color: var(--container-bg);
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
h1, h2, h3 { border-bottom: 1px solid var(--border-color); padding-bottom: 8px; }
h1 { font-size: 2rem; border-bottom: none; margin-top: 0; }
a { color: var(--accent); text-decoration: none; transition: 0.2s; }
a:hover { text-decoration: underline; }
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.stats-container img {
max-width: 100%;
height: auto;
border-radius: 6px;
margin-bottom: 10px;
}
/* Project Card Hover Animation */
.project-card {
background: var(--card-bg);
border: 1px solid var(--border-color);
padding: 20px;
border-radius: 8px;
margin-bottom: 20px;
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
box-shadow 0.3s ease,
border-color 0.3s ease;
}
.project-card:hover {
transform: translateY(-5px);
border-color: var(--card-hover-border);
box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.badge {
display: inline-block;
background: var(--toggle-bg);
border: 1px solid var(--border-color);
padding: 4px 12px;
border-radius: 20px;
font-size: 0.85rem;
margin: 4px;
transition: background 0.3s ease;
}
.footer {
font-size: 0.8rem;
color: var(--text-muted);
text-align: center;
margin-top: 40px;
}
</style>
</head>
<body>
<div class="theme-switch-wrapper">
<button class="theme-button" onclick="toggleTheme()" id="theme-btn">🌙 Dark Mode</button>
</div>
<div class="container">
<header>
<h1>Hi there! 👋</h1>
<p>Welcome to my GitHub profile! I'm a passionate developer dedicated to building innovative solutions and contributing to the open-source community.</p>
</header>
<hr style="border: 0; border-top: 1px solid var(--border-color); margin: 24px 0;">
<section>
<h2>🚀 About Me</h2>
<p>I believe in clean code, continuous learning, and sharing knowledge with the community.</p>
<ul>
<li>💻 Experienced in full-stack development</li>
<li>🎯 Passionate about solving complex problems</li>
</ul>
</section>
<section>
<h2>🛠️ Technical Skills</h2>
<div class="skills-grid">
<div>
<h3>Languages</h3>
<span class="badge">JavaScript/TypeScript</span>
<span class="badge">Python</span>
</div>
<div>
<h3>Frameworks</h3>
<span class="badge">React / Vue.js</span>
<span class="badge">Node.js</span>
</div>
</div>
</section>
<section>
<h2>📈 GitHub Stats</h2>
<div class="stats-container">
<img src="https://github-readme-stats.vercel.app/api?username=Vaibhav-S-Gowda&show_icons=true&theme=radical" alt="Stats">
</div>
</section>
<section>
<h2>🎯 Featured Projects</h2>
<div class="project-card">
<h3><a href="#">Project Name 1</a></h3>
<p>Brief description of what this project does and the technologies used.</p>
</div>
<div class="project-card">
<h3><a href="#">Project Name 2</a></h3>
<p>Brief description of what this project does and the technologies used.</p>
</div>
</section>
<section>
<h2>📞 Connect</h2>
<p>
<a href="#">LinkedIn</a> • <a href="#">Twitter</a> • <a href="#">Portfolio</a>
</p>
</section>
<div class="footer">
Last updated: 2026-03-06
</div>
</div>
<script>
function toggleTheme() {
const html = document.documentElement;
const btn = document.getElementById('theme-btn');
if (html.getAttribute('data-theme') === 'dark') {
html.setAttribute('data-theme', 'light');
btn.innerHTML = '☀️ Light Mode';
} else {
html.setAttribute('data-theme', 'dark');
btn.innerHTML = '🌙 Dark Mode';
}
}
</script>
</body>
</html>