-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
232 lines (209 loc) · 6.86 KB
/
index.html
File metadata and controls
232 lines (209 loc) · 6.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>lyntaxxq | github.io</title>
<link href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;700&display=swap" rel="stylesheet">
<style>
:root {
--bg: #000;
--text: #f5f5f5;
--subtle: #bdbdbd;
--accent: #ffffff;
}
* { box-sizing: border-box; scroll-behavior: smooth; }
body {
margin: 0;
font-family: "Google Sans", sans-serif;
background: #1a1a1a;
color: var(--text);
line-height: 1.6;
}
header { padding: 4rem 1.5rem 2rem; max-width: 800px; margin: 0 auto; }
header h1 { margin: 0; font-size: 2.4rem; letter-spacing: -0.5px; }
nav { margin-top: 2rem; }
nav a {
color: var(--text);
text-decoration: none;
margin-right: 1.5rem;
font-weight: 500;
position: relative;
padding-bottom: 4px;
}
nav a::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0%;
height: 1.5px;
background: var(--accent);
transition: width 0.3s;
}
nav a:hover::after { width: 100%; }
section { max-width: 800px; margin: 4rem auto; padding: 0 1.5rem; text-align: left; }
section h2 { font-size: 1.6rem; margin-bottom: 1.5rem; border-left: 4px solid var(--accent); padding-left: 0.75rem; }
section p, ul li { color: var(--subtle); font-size: 1rem; }
ul { list-style: none; padding: 0; margin: 0; }
ul li { margin: 0.6rem 0; }
ul li strong { color: var(--text); }
footer {
text-align: left;
padding: 2rem 1.5rem;
color: var(--subtle);
font-size: 0.9rem;
max-width: 800px;
margin: 0 auto;
border-top: 2px solid transparent;
background: linear-gradient(to right, #555, #fff, #555) top/100% 2px no-repeat;
}
.fade-in { opacity: 0; transform: translateY(15px); transition: opacity 0.8s ease, transform 0.8s ease; }
.visible { opacity: 1; transform: translateY(0); }
a { color: var(--accent); }
a:hover { text-decoration: underline; }
@media (max-width: 600px) {
header h1 { font-size: 2rem; }
nav a { display: inline-block; margin-right: 1rem; }
}
#clock {
position: fixed;
top: 15px;
right: 20px;
color: #fff;
font-family: "Google Sans", sans-serif;
font-size: 1.1rem;
background: rgba(255,255,255,0.05);
padding: 6px 10px;
border-radius: 4px;
border: 1px solid rgba(255,255,255,0.1);
letter-spacing: 1px;
user-select: none;
z-index: 1000;
}
#clock:hover { background: rgba(255,255,255,0.15); transition: background 0.3s; }
#status {
position: fixed;
top: 15px;
left: 20px;
color: #fff;
font-family: "Google Sans", sans-serif;
font-size: 1.1rem;
background: rgba(255,255,255,0.05);
padding: 6px 10px;
border-radius: 4px;
border: 1px solid rgba(255,255,255,0.1);
letter-spacing: 0.5px;
user-select: none;
z-index: 1000;
}
#meowtrix {
position: fixed;
top: 70px;
left: 20px;
color: #fff;
font-family: "Google Sans", sans-serif;
font-size: 1.1rem;
background: rgba(255,255,255,0.05);
padding: 6px 10px;
border-radius: 4px;
border: 1px solid rgba(255,255,255,0.1);
letter-spacing: 0.5px;
user-select: none;
z-index: 1000;
}
#easter-egg {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #000;
color: #fff;
font-family: "Google Sans", sans-serif;
padding: 20px 30px;
border-radius: 12px;
border: 2px solid #ccc;
font-size: 1.2rem;
display: none;
z-index: 2000;
text-align: center;
box-shadow: 0 5px 20px rgba(0,0,0,0.3);
opacity: 0;
transition: opacity 0.5s ease;
}
#easter-egg.show {
display: block;
opacity: 1;
}
</style>
</head>
<body>
<div id="status">lyntaxxq is active.</div>
<div id="meowtrix"><a href="https://lyntaxxq.github.io/uselesstuffs/meowtrix.html" target="_blank">take me to the meowtrix!</a> (new.)</div>
<div id="clock"></div>
<div id="easter-egg">wow, you found me. im an easter egg 🥚.</div>
<header class="fade-in">
<h1>lyntaxxq</h1>
<nav>
<a href="#whoami">who am i?</a>
<a href="#langs">programming languages that i know</a>
<a href="#projects">projects</a>
<a href="#contact">contact</a>
</nav>
</header>
<section id="whoami" class="fade-in">
<h2>who am i?</h2>
<p>hello, i'm just a simple guy. like a monkey, i peel the banana, i eat the banana.</p>
</section>
<section id="langs" class="fade-in">
<h2>programming languages that i know</h2>
<ul>
<li>html and css</li>
<li>python, little csharp and apple plist.</li>
</ul>
</section>
<section id="projects" class="fade-in">
<h2>projects</h2>
<ul>
<li>GIGABYTE H110M S2-CF OpenCore EFI: <a href="https://github.com/lyntaxxq/H110M-S2-OC" target="_blank">here</a></li>
<li>private joyeuse vendor (sshhh): <a href="about:blank" target="_blank">not public for now</a></li>
</ul>
</section>
<section id="contact" class="fade-in">
<h2>contact with me</h2>
<p>Instagram: <a href="https://instagram.com/gorkemm._._" target="_blank">@gorkemmm._._</a></p>
</section>
<footer>
lyntaxxq. some private projects will be public later. like everything will be :)
</footer>
<script>
const fadeEls = document.querySelectorAll('.fade-in');
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if(entry.isIntersecting) entry.target.classList.add('visible');
});
}, { threshold: 0.2 });
fadeEls.forEach(el => observer.observe(el));
function updateClock() {
const now = new Date();
const optionsTime = { timeZone: 'Europe/Berlin', hour: '2-digit', minute: '2-digit', second: '2-digit', hour12: false };
const optionsDate = { timeZone: 'Europe/Berlin', weekday: 'short', year: 'numeric', month: '2-digit', day: '2-digit' };
const timeString = now.toLocaleTimeString('en-GB', optionsTime);
const dateString = now.toLocaleDateString('en-GB', optionsDate);
document.getElementById('clock').textContent = `${dateString} | ${timeString}`;
}
setInterval(updateClock, 1000);
updateClock();
const clockEl = document.getElementById('clock');
const eggEl = document.getElementById('easter-egg');
clockEl.addEventListener('click', () => {
eggEl.style.display = 'block';
setTimeout(() => eggEl.classList.add('show'), 10);
setTimeout(() => {
eggEl.classList.remove('show');
setTimeout(() => { eggEl.style.display = 'none'; }, 500);
}, 3000);
});
</script>
</body>
</html>