237 lines
6.9 KiB
HTML
237 lines
6.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="nl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Web & PC Studio - Git Systeem Operationeel</title>
|
|
<style>
|
|
:root {
|
|
--primary: #2563eb;
|
|
--primary-glow: rgba(37, 99, 235, 0.25);
|
|
--success: #10b981;
|
|
--success-glow: rgba(16, 185, 129, 0.25);
|
|
--bg: #0f172a;
|
|
--card-bg: rgba(30, 41, 59, 0.7);
|
|
--card-border: rgba(255, 255, 255, 0.08);
|
|
--text-main: #f8fafc;
|
|
--text-muted: #94a3b8;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
background-color: var(--bg);
|
|
color: var(--text-main);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 24px;
|
|
background-image:
|
|
radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.15) 0px, transparent 50%),
|
|
radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.1) 0px, transparent 50%);
|
|
}
|
|
|
|
.container {
|
|
max-width: 620px;
|
|
width: 100%;
|
|
background: var(--card-bg);
|
|
backdrop-filter: blur(16px);
|
|
-webkit-backdrop-filter: blur(16px);
|
|
border: 1px solid var(--card-border);
|
|
border-radius: 20px;
|
|
padding: 48px 40px;
|
|
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
|
|
text-align: center;
|
|
}
|
|
|
|
.badge-wrapper {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
background: rgba(16, 185, 129, 0.12);
|
|
border: 1px solid rgba(16, 185, 129, 0.3);
|
|
color: #34d399;
|
|
padding: 6px 14px;
|
|
border-radius: 9999px;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.025em;
|
|
margin-bottom: 28px;
|
|
}
|
|
|
|
.pulse-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
background-color: var(--success);
|
|
border-radius: 50%;
|
|
box-shadow: 0 0 0 0 var(--success-glow);
|
|
animation: pulse 2s infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
|
|
}
|
|
70% {
|
|
box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
|
|
}
|
|
100% {
|
|
box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
|
|
}
|
|
}
|
|
|
|
.logo-icon {
|
|
width: 64px;
|
|
height: 64px;
|
|
margin: 0 auto 20px;
|
|
background: linear-gradient(135deg, #3b82f6, #1d4ed8);
|
|
border-radius: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0 10px 20px -5px var(--primary-glow);
|
|
}
|
|
|
|
.logo-icon svg {
|
|
width: 34px;
|
|
height: 34px;
|
|
fill: none;
|
|
stroke: #ffffff;
|
|
stroke-width: 2;
|
|
stroke-linecap: round;
|
|
stroke-linejoin: round;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
line-height: 1.25;
|
|
margin-bottom: 12px;
|
|
letter-spacing: -0.02em;
|
|
color: #ffffff;
|
|
}
|
|
|
|
p.subtitle {
|
|
font-size: 1.05rem;
|
|
color: var(--text-muted);
|
|
line-height: 1.6;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.info-card {
|
|
background: rgba(15, 23, 42, 0.6);
|
|
border: 1px solid rgba(255, 255, 255, 0.05);
|
|
border-radius: 14px;
|
|
padding: 20px;
|
|
margin-bottom: 32px;
|
|
text-align: left;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
.info-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 0.9rem;
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.info-row:last-child {
|
|
padding-bottom: 0;
|
|
border-bottom: none;
|
|
}
|
|
|
|
.info-label {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.info-value {
|
|
color: var(--text-main);
|
|
font-weight: 500;
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
|
|
}
|
|
|
|
.info-value.status-tag {
|
|
color: #34d399;
|
|
background: rgba(16, 185, 129, 0.1);
|
|
padding: 3px 8px;
|
|
border-radius: 6px;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.footer {
|
|
font-size: 0.85rem;
|
|
color: var(--text-muted);
|
|
opacity: 0.8;
|
|
}
|
|
|
|
.footer a {
|
|
color: #60a5fa;
|
|
text-decoration: none;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
.footer a:hover {
|
|
color: #93c5fd;
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="logo-icon">
|
|
<svg viewBox="0 0 24 24">
|
|
<circle cx="12" cy="12" r="3"></circle>
|
|
<line x1="3" y1="12" x2="9" y2="12"></line>
|
|
<line x1="15" y1="12" x2="21" y2="12"></line>
|
|
<path d="M12 3v6"></path>
|
|
<path d="M12 15v6"></path>
|
|
</svg>
|
|
</div>
|
|
|
|
<div class="badge-wrapper">
|
|
<span class="pulse-dot"></span>
|
|
Git Systeem Operationeel
|
|
</div>
|
|
|
|
<h1>Web & PC Studio</h1>
|
|
<p class="subtitle">
|
|
Het nieuwe Git deploy- en beheersysteem is succesvol geconfigureerd, live getest en draait uitstekend.
|
|
</p>
|
|
|
|
<div class="info-card">
|
|
<div class="info-row">
|
|
<span class="info-label">Domein:</span>
|
|
<span class="info-value">www.webenpcstudio.nl</span>
|
|
</div>
|
|
<div class="info-row">
|
|
<span class="info-label">Git Omgeving:</span>
|
|
<span class="info-value">git.webenpcstudio.nl</span>
|
|
</div>
|
|
<div class="info-row">
|
|
<span class="info-label">Laatste Synchronisatie:</span>
|
|
<span class="info-value">Git Push Test #2</span>
|
|
</div>
|
|
<div class="info-row">
|
|
<span class="info-label">Status:</span>
|
|
<span class="info-value status-tag">Actief & Verbonden</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
© 2026 <a href="https://www.webenpcstudio.nl" target="_blank">Web & PC Studio</a>. Alle systemen online.
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|