-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
298 lines (262 loc) · 8.64 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Juraj Kollár - Developer & Designer</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');
:root {
--bg-primary: #0f172a;
--bg-secondary: #1e293b;
--text-primary: #e2e8f0;
--text-secondary: #94a3b8;
--accent: #3b82f6;
--accent-dark: #2563eb;
--card-bg: rgba(30, 41, 59, 0.5);
--grid-bg: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Space Grotesk', -apple-system, system-ui, sans-serif;
}
.header-grid {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100%;
display: grid;
grid-template-columns: repeat(40, 1fr);
grid-template-rows: repeat(20, 1fr);
opacity: 0.4;
z-index: -1;
background: var(--grid-bg);
pointer-events: none;
}
.header-grid::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to bottom,
rgba(15, 23, 42, 0) 0%,
rgba(15, 23, 42, 0.8) 50%,
rgba(15, 23, 42, 1) 100%);
}
body {
background-color: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
nav {
background: var(--bg-secondary);
backdrop-filter: blur(10px);
padding: 1rem;
position: sticky;
top: 0;
z-index: 100;
margin-bottom: 2rem;
}
.nav-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
color: var(--text-primary);
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover {
color: var(--accent);
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.card {
background: var(--card-bg);
border-radius: 1rem;
padding: 1.5rem;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.card h2 {
color: var(--accent);
margin-bottom: 1rem;
font-size: 1.5rem;
}
.hero {
text-align: left;
margin-bottom: 4rem;
padding: 6rem 0;
position: relative;
overflow: hidden;
}
.hero h1 {
font-size: 4.5rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, var(--accent), #60a5fa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.1;
}
.tech-stack {
display: flex;
gap: 1rem;
margin-top: 2rem;
flex-wrap: wrap;
}
.tech-badge {
background: rgba(255, 255, 255, 0.1);
padding: 0.5rem 1rem;
border-radius: 9999px;
font-size: 0.875rem;
color: var(--text-secondary);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.subtitle {
color: var(--text-secondary);
font-size: 1.25rem;
margin-bottom: 2rem;
}
.btn {
background: var(--accent);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
text-decoration: none;
font-weight: 500;
transition: background 0.2s;
display: inline-block;
}
.btn:hover {
background: var(--accent-dark);
}
.project-links {
list-style: none;
margin-top: 1rem;
}
.project-links li {
margin-bottom: 0.5rem;
}
.project-links a {
color: var(--accent);
text-decoration: none;
transition: color 0.2s;
}
.project-links a:hover {
color: var(--accent-dark);
}
@keyframes neonFlash {
0%, 100% {
color: #fff;
text-shadow: 0 0 10px #0F0,
0 0 20px #0F0,
0 0 30px #0F0;
}
50% {
color: #0F0;
text-shadow: 0 0 20px #0F0,
0 0 30px #0F0,
0 0 40px #0F0;
}
}
.neovim-badge {
animation: neonFlash 2s infinite;
font-family: monospace;
font-weight: bold;
display: inline-block;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
background: rgba(0, 255, 0, 0.1);
margin-top: 1rem;
}
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hero h1 {
font-size: 2rem;
}
.container {
padding: 1rem;
}
}
</style>
</head>
<body>
<nav>
<div class="nav-content">
<h2>JK</h2>
<div class="nav-links">
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#design">Design</a>
</div>
</div>
</nav>
<div class="container">
<section class="hero">
<div class="header-grid"></div>
<h1>Juraj Kollár</h1>
<p class="subtitle">Python Developer | Designer | Flight Simmer</p>
<p>Hi! I'm a Python developer creating a text editor called XediX. I also do design work for various school events and social media posts for a book. Coding and design are my passions, and I enjoy combining both in my projects.</p>
<div class="tech-stack">
<span class="tech-badge">Python</span>
<span class="tech-badge">HTML/CSS</span>
<span class="tech-badge">Design</span>
<div class="neovim-badge">THIS GUY USES NEOVIM FRFRFRFR</div>
</div>
</section>
<div class="grid">
<div class="card">
<h2>Open Source Contributions</h2>
<ul class="project-links">
<li><a href="https://github.com/tylerbmusic/GeoFS-Landing-Stats">GeoFS Landing Stats</a></li>
<li><a href="https://github.com/brentvollebregt/auto-py-to-exe">Auto PY to EXE</a></li>
<li><a href="https://github.com/yamadashy/repomix">Repomix</a></li>
</ul>
</div>
<div class="card">
<h2>XediX Text Editor</h2>
<p>A Python-based text editor with syntax highlighting, file management, and more.</p>
<a href="https://github.com/mostypc123/XediX" class="btn">View on GitHub</a>
</div>
<div class="card">
<h2>HTML Element Generator</h2>
<p>Tired of writing HTML elements by yourself? Try this tool to generate them automatically.</p>
<a href="https://github.com/mostypc123/html-element-generator" class="btn">View on GitHub</a>
</div>
<div class="card">
<h2>Design Work</h2>
<p>Creating designs for school events and social media posts for "Vaky" by Zdenka Sečkárová Kollárová (in Slovak).</p>
<p style="margin-top: 1rem">I also edit videos btw</p>
</div>
</div>
</div>
</body>
</html>