Initial commit with tests and deployment pipeline
Test and Deploy Website / test-and-deploy (push) Successful in 1m12s
Test and Deploy Website / test-and-deploy (push) Successful in 1m12s
This commit is contained in:
@@ -0,0 +1,293 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Robert Müller — Software Engineer & Architect</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
:root {
|
||||
--bg-dark: #090d16;
|
||||
--panel-bg: rgba(255, 255, 255, 0.03);
|
||||
--panel-hover: rgba(255, 255, 255, 0.06);
|
||||
--border-color: rgba(255, 255, 255, 0.08);
|
||||
--accent-color: #6366f1;
|
||||
--accent-glow: rgba(99, 102, 241, 0.3);
|
||||
--accent-secondary: #06b6d4;
|
||||
--text-main: #f8fafc;
|
||||
--text-muted: #94a3b8;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Outfit', sans-serif;
|
||||
background-color: var(--bg-dark);
|
||||
color: var(--text-main);
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
overflow-x: hidden;
|
||||
padding: 2rem 1rem;
|
||||
}
|
||||
|
||||
/* Animated Ambient Lights */
|
||||
.ambient-glow {
|
||||
position: absolute;
|
||||
width: 60vw;
|
||||
height: 60vw;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(6, 182, 212, 0.05) 50%, rgba(0,0,0,0) 70%);
|
||||
filter: blur(120px);
|
||||
z-index: 0;
|
||||
top: -10vw;
|
||||
left: -10vw;
|
||||
animation: drift 25s infinite alternate ease-in-out;
|
||||
}
|
||||
|
||||
.ambient-glow-2 {
|
||||
position: absolute;
|
||||
width: 50vw;
|
||||
height: 50vw;
|
||||
border-radius: 50%;
|
||||
background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, rgba(99, 102, 241, 0.05) 50%, rgba(0,0,0,0) 70%);
|
||||
filter: blur(120px);
|
||||
z-index: 0;
|
||||
bottom: -10vw;
|
||||
right: -10vw;
|
||||
animation: drift 20s infinite alternate-reverse ease-in-out;
|
||||
}
|
||||
|
||||
@keyframes drift {
|
||||
0% { transform: translate(0, 0) scale(1); }
|
||||
100% { transform: translate(5vw, 5vw) scale(1.1); }
|
||||
}
|
||||
|
||||
/* Container Card */
|
||||
.container {
|
||||
background: var(--panel-bg);
|
||||
backdrop-filter: blur(24px);
|
||||
-webkit-backdrop-filter: blur(24px);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 24px;
|
||||
padding: 4rem 3rem;
|
||||
width: 100%;
|
||||
max-width: 650px;
|
||||
text-align: center;
|
||||
z-index: 10;
|
||||
box-shadow: 0 30px 60px -15px rgba(0,0,0,0.6);
|
||||
transition: border-color 0.5s ease;
|
||||
}
|
||||
|
||||
.container:hover {
|
||||
border-color: rgba(99, 102, 241, 0.25);
|
||||
}
|
||||
|
||||
/* Badge */
|
||||
.badge {
|
||||
display: inline-block;
|
||||
background: rgba(99, 102, 241, 0.08);
|
||||
border: 1px solid rgba(99, 102, 241, 0.3);
|
||||
color: #a5b4fc;
|
||||
padding: 0.4rem 1rem;
|
||||
border-radius: 99px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
h1 {
|
||||
font-size: 3rem;
|
||||
font-weight: 800;
|
||||
margin-bottom: 0.5rem;
|
||||
background: linear-gradient(135deg, #ffffff 40%, #a5b4fc 100%);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 1.25rem;
|
||||
color: var(--accent-secondary);
|
||||
font-weight: 600;
|
||||
margin-bottom: 1.5rem;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* Dynamic greeting */
|
||||
.greeting {
|
||||
font-size: 1.05rem;
|
||||
color: var(--text-muted);
|
||||
margin-bottom: 2rem;
|
||||
min-height: 24px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
p.description {
|
||||
color: var(--text-muted);
|
||||
font-size: 1.15rem;
|
||||
line-height: 1.75;
|
||||
margin-bottom: 2.5rem;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
/* Skills Grid */
|
||||
.skills-title {
|
||||
font-size: 0.9rem;
|
||||
text-transform: uppercase;
|
||||
color: var(--text-muted);
|
||||
letter-spacing: 0.15em;
|
||||
margin-bottom: 1.2rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.skills-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1rem;
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.skill-card {
|
||||
background: rgba(255, 255, 255, 0.015);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
padding: 1rem;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
.skill-card:hover {
|
||||
background: var(--panel-hover);
|
||||
border-color: rgba(6, 182, 212, 0.3);
|
||||
transform: translateY(-4px);
|
||||
}
|
||||
|
||||
.skill-card h3 {
|
||||
font-size: 0.95rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.skill-card p {
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* Actions / Button */
|
||||
.btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: linear-gradient(135deg, var(--accent-color) 0%, #4f46e5 100%);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
padding: 1rem 2.25rem;
|
||||
border-radius: 99px;
|
||||
font-size: 1rem;
|
||||
font-weight: 600;
|
||||
box-shadow: 0 10px 25px -5px var(--accent-glow);
|
||||
transition: all 0.3s ease;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 15px 30px -5px var(--accent-glow);
|
||||
filter: brightness(1.1);
|
||||
}
|
||||
|
||||
.btn:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
footer {
|
||||
margin-top: 3rem;
|
||||
font-size: 0.8rem;
|
||||
color: rgba(255,255,255,0.2);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
@media (max-width: 500px) {
|
||||
.container {
|
||||
padding: 3rem 1.5rem;
|
||||
}
|
||||
h1 { font-size: 2.25rem; }
|
||||
.skills-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="ambient-glow"></div>
|
||||
<div class="ambient-glow-2"></div>
|
||||
|
||||
<div class="container">
|
||||
<span class="badge">Online</span>
|
||||
<h1>Robert Müller</h1>
|
||||
<div class="subtitle">Software Engineer & Architect</div>
|
||||
|
||||
<div class="greeting" id="greeting-box">...</div>
|
||||
|
||||
<p class="description">
|
||||
Specializing in building robust, high-performance distributed systems, container orchestration, and security-hardened self-hosted platforms. Committed to craftsmanship, optimization, and clean architectures.
|
||||
</p>
|
||||
|
||||
<div class="skills-title">Core Competencies</div>
|
||||
<div class="skills-grid">
|
||||
<div class="skill-card">
|
||||
<h3>DevOps</h3>
|
||||
<p>Docker & Compose</p>
|
||||
</div>
|
||||
<div class="skill-card">
|
||||
<h3>Backend</h3>
|
||||
<p>PostgreSQL & Node.js</p>
|
||||
</div>
|
||||
<div class="skill-card">
|
||||
<h3>SysOps</h3>
|
||||
<p>Nginx & Linux OS</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<a href="mailto:mail@robert-mueller.net" class="btn" id="contact-button">Get In Touch</a>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
© 2026 Robert Müller. All rights reserved.
|
||||
</footer>
|
||||
|
||||
<script src="js/utils.js"></script>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
// Dynamic Greeting based on time
|
||||
const hour = new Date().getHours();
|
||||
let timeOfDay = 'day';
|
||||
if (hour < 12) timeOfDay = 'morning';
|
||||
else if (hour < 18) timeOfDay = 'afternoon';
|
||||
else timeOfDay = 'evening';
|
||||
|
||||
const greetingBox = document.getElementById('greeting-box');
|
||||
if (typeof formatGreeting === 'function') {
|
||||
greetingBox.textContent = formatGreeting(timeOfDay, 'Robert Müller');
|
||||
} else {
|
||||
greetingBox.textContent = `Welcome to Robert Müller's portfolio!`;
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user