Skip to content

Commit 544ae3f

Browse files
CopilotNotAwar
andcommitted
Fix CSS syntax errors and improve content
Co-authored-by: NotAwar <48431495+NotAwar@users.noreply.github.com>
1 parent 3ab1caf commit 544ae3f

File tree

4 files changed

+50
-29
lines changed

4 files changed

+50
-29
lines changed

assets/css/style.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ body {
142142
position: relative;
143143

144144
svg {
145-
fill: var (--text-primary);
145+
fill: var(--text-primary);
146146
}
147147
}
148148
}
@@ -274,7 +274,7 @@ a {
274274

275275
p {
276276
margin-bottom: 1.5rem;
277-
color: var (--text-secondary);
277+
color: var(--text-secondary);
278278
}
279279

280280
// Hero Section
@@ -713,7 +713,7 @@ p {
713713
background-color: var(--black-tertiary);
714714
padding: 30px;
715715
border-radius: 10px;
716-
box-shadow: 0 5px 15px var (--shadow-color);
716+
box-shadow: 0 5px 15px var(--shadow-color);
717717
text-align: center;
718718
transition: var(--transition);
719719
border: 1px solid var(--border-color);

assets/js/main.js

Lines changed: 44 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ document.addEventListener('DOMContentLoaded', function() {
263263
`);
264264
});
265265

266-
// CSS for ripple effect
266+
// CSS for ripple effect and animations
267267
const style = document.createElement('style');
268268
style.textContent = `
269269
.btn {
@@ -280,33 +280,54 @@ style.textContent = `
280280
pointer-events: none;
281281
}
282282
283-
// Initialize typing animation for hero subtitle
284-
function initTypewriter() {
285-
const typewriterElement = document.getElementById('typewriter');
286-
if (!typewriterElement) return;
287-
288-
// Get the title from the data attribute or fallback
289-
const text = typewriterElement.getAttribute('data-text') || "Senior Cloud Engineer & Cloud Native Competency Lead";
290-
291-
// Set initial state
292-
typewriterElement.textContent = '';
293-
typewriterElement.style.width = '0';
294-
295-
// Add typing class after a short delay to prevent layout shift
296-
setTimeout(() => {
297-
typewriterElement.textContent = text;
298-
typewriterElement.classList.add('typing');
299-
}, 1000);
300-
}
301-
302-
// Initialize typewriter effect
303-
initTypewriter();
304-
305283
@keyframes ripple-animation {
306284
to {
307285
transform: scale(4);
308286
opacity: 0;
309287
}
310288
}
289+
290+
@keyframes particleFloat {
291+
to {
292+
transform: translateY(-100px);
293+
opacity: 0;
294+
}
295+
}
296+
297+
.cursor-trail {
298+
position: fixed;
299+
width: 6px;
300+
height: 6px;
301+
background: var(--gold-primary);
302+
border-radius: 50%;
303+
pointer-events: none;
304+
z-index: 9999;
305+
animation: trailFade 0.8s ease-out forwards;
306+
}
307+
308+
@keyframes trailFade {
309+
to {
310+
opacity: 0;
311+
transform: scale(0);
312+
}
313+
}
314+
315+
.particle {
316+
position: absolute;
317+
width: 3px;
318+
height: 3px;
319+
background: var(--gold-primary);
320+
border-radius: 50%;
321+
animation: particleFloat 1.5s ease-out forwards;
322+
}
323+
324+
.konami-activated {
325+
animation: rainbow 2s linear infinite;
326+
}
327+
328+
@keyframes rainbow {
329+
0% { filter: hue-rotate(0deg); }
330+
100% { filter: hue-rotate(360deg); }
331+
}
311332
`;
312333
document.head.appendChild(style);

events/speaking.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
---
66

77
<div class="container speaking-page">
8-
<h1>Want to listen to me yap?</h1>
8+
<h1>Speaking Engagements</h1>
99

10-
<p>Check out where I've been speaking and where you can catch me next!</p>
10+
<p>I enjoy sharing knowledge about cloud-native technologies, Kubernetes, and DevOps practices. Here's where I've spoken and upcoming events where you can catch my talks!</p>
1111

1212
<div class="sessionize-events-container">
1313
<div id="sessionize-events">

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h2 class="hero-subtitle" id="typewriter" data-text="{{ site.data.profile.headli
1919

2020
<section class="speaking-preview">
2121
<h2>Upcoming Events</h2>
22-
<p>I regularly speak at conferences and events about [your topics]. Check out my <a href="/speaking/">speaking page</a> for a complete list.</p>
22+
<p>I regularly speak at conferences and events about cloud-native technologies, Kubernetes, and DevOps practices. Check out my <a href="/speaking/">speaking page</a> for a complete list.</p>
2323

2424
<div class="sessionize-events-container">
2525
<script type="text/javascript" src="https://sessionize.com/api/speaker/sessions/8zkgq232gg/0x1x3fb393x"></script>

0 commit comments

Comments
 (0)