Excluir index.html
This commit is contained in:
225
index.html
225
index.html
@@ -1,225 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-BR">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>GitFur Pages — Funcionou!</title>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Syne:wght@400;700;800&display=swap" rel="stylesheet" />
|
||||
<style>
|
||||
:root {
|
||||
--bg: #0d0d0f;
|
||||
--surface: #131316;
|
||||
--border: #2a2a30;
|
||||
--pink: #ff4fa3;
|
||||
--orange: #ff7c3a;
|
||||
--cyan: #3af0d4;
|
||||
--text: #f0eaf5;
|
||||
--muted: #7a7585;
|
||||
}
|
||||
|
||||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
|
||||
body {
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
font-family: 'Syne', sans-serif;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Background grid */
|
||||
body::before {
|
||||
content: '';
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background-image:
|
||||
linear-gradient(var(--border) 1px, transparent 1px),
|
||||
linear-gradient(90deg, var(--border) 1px, transparent 1px);
|
||||
background-size: 48px 48px;
|
||||
opacity: 0.4;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Glow blobs */
|
||||
.blob {
|
||||
position: fixed;
|
||||
border-radius: 50%;
|
||||
filter: blur(120px);
|
||||
opacity: 0.18;
|
||||
pointer-events: none;
|
||||
animation: drift 12s ease-in-out infinite alternate;
|
||||
}
|
||||
.blob-1 { width: 500px; height: 500px; background: var(--pink); top: -100px; left: -100px; }
|
||||
.blob-2 { width: 400px; height: 400px; background: var(--cyan); bottom: -80px; right: -80px; animation-delay: -5s; }
|
||||
.blob-3 { width: 300px; height: 300px; background: var(--orange); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: -2s; }
|
||||
|
||||
@keyframes drift {
|
||||
from { transform: translate(0, 0) scale(1); }
|
||||
to { transform: translate(30px, 20px) scale(1.05); }
|
||||
}
|
||||
|
||||
/* Card */
|
||||
.card {
|
||||
position: relative;
|
||||
z-index: 10;
|
||||
border: 1px solid var(--border);
|
||||
background: rgba(19, 19, 22, 0.85);
|
||||
backdrop-filter: blur(20px);
|
||||
border-radius: 20px;
|
||||
padding: 56px 64px;
|
||||
max-width: 620px;
|
||||
width: 90%;
|
||||
text-align: center;
|
||||
box-shadow: 0 0 0 1px rgba(255,79,163,0.08), 0 32px 80px rgba(0,0,0,0.6);
|
||||
animation: fadeUp 0.7s cubic-bezier(.16,1,.3,1) both;
|
||||
}
|
||||
|
||||
@keyframes fadeUp {
|
||||
from { opacity: 0; transform: translateY(32px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
.badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 11px;
|
||||
letter-spacing: 0.12em;
|
||||
text-transform: uppercase;
|
||||
color: var(--cyan);
|
||||
border: 1px solid rgba(58, 240, 212, 0.3);
|
||||
background: rgba(58, 240, 212, 0.06);
|
||||
padding: 6px 14px;
|
||||
border-radius: 999px;
|
||||
margin-bottom: 28px;
|
||||
animation: fadeUp 0.7s 0.1s cubic-bezier(.16,1,.3,1) both;
|
||||
}
|
||||
|
||||
.badge::before {
|
||||
content: '';
|
||||
width: 6px; height: 6px;
|
||||
background: var(--cyan);
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 0 8px var(--cyan);
|
||||
animation: pulse 2s infinite;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0%, 100% { opacity: 1; }
|
||||
50% { opacity: 0.3; }
|
||||
}
|
||||
|
||||
.paw {
|
||||
font-size: 64px;
|
||||
line-height: 1;
|
||||
margin-bottom: 20px;
|
||||
animation: fadeUp 0.7s 0.15s cubic-bezier(.16,1,.3,1) both;
|
||||
display: block;
|
||||
filter: drop-shadow(0 0 24px rgba(255,79,163,0.5));
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: clamp(2rem, 5vw, 3rem);
|
||||
font-weight: 800;
|
||||
line-height: 1.1;
|
||||
margin-bottom: 16px;
|
||||
animation: fadeUp 0.7s 0.2s cubic-bezier(.16,1,.3,1) both;
|
||||
background: linear-gradient(135deg, var(--text) 30%, var(--pink));
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
}
|
||||
|
||||
p {
|
||||
color: var(--muted);
|
||||
font-size: 1rem;
|
||||
line-height: 1.7;
|
||||
margin-bottom: 36px;
|
||||
animation: fadeUp 0.7s 0.25s cubic-bezier(.16,1,.3,1) both;
|
||||
}
|
||||
|
||||
p strong { color: var(--text); }
|
||||
|
||||
.terminal {
|
||||
background: #0a0a0c;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 12px;
|
||||
padding: 20px 24px;
|
||||
text-align: left;
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 12.5px;
|
||||
line-height: 1.9;
|
||||
margin-bottom: 36px;
|
||||
animation: fadeUp 0.7s 0.3s cubic-bezier(.16,1,.3,1) both;
|
||||
}
|
||||
|
||||
.terminal .line { display: flex; gap: 10px; }
|
||||
.terminal .prompt { color: var(--pink); user-select: none; }
|
||||
.terminal .cmd { color: var(--cyan); }
|
||||
.terminal .comment { color: var(--muted); }
|
||||
|
||||
.divider {
|
||||
height: 1px;
|
||||
background: linear-gradient(90deg, transparent, var(--border), transparent);
|
||||
margin-bottom: 28px;
|
||||
}
|
||||
|
||||
.meta {
|
||||
font-family: 'Space Mono', monospace;
|
||||
font-size: 11px;
|
||||
color: var(--muted);
|
||||
animation: fadeUp 0.7s 0.35s cubic-bezier(.16,1,.3,1) both;
|
||||
}
|
||||
|
||||
.meta span { color: var(--orange); }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="blob blob-1"></div>
|
||||
<div class="blob blob-2"></div>
|
||||
<div class="blob blob-3"></div>
|
||||
|
||||
<div class="card">
|
||||
<div class="badge">gitea-pages ativo</div>
|
||||
<span class="paw">🐾</span>
|
||||
<h1>Funcionou, uwu!</h1>
|
||||
<p>
|
||||
Seu <strong>gitea-pages-static</strong> está rodando e servindo arquivos corretamente.<br>
|
||||
Faça push de qualquer HTML na branch <strong>gitea-pages</strong> e ele aparece aqui automaticamente.
|
||||
</p>
|
||||
|
||||
<div class="terminal">
|
||||
<div class="line">
|
||||
<span class="prompt">$</span>
|
||||
<span class="cmd">git checkout -b gitea-pages</span>
|
||||
</div>
|
||||
<div class="line">
|
||||
<span class="prompt">$</span>
|
||||
<span class="cmd">echo "ola mundo" > index.html</span>
|
||||
</div>
|
||||
<div class="line">
|
||||
<span class="prompt">$</span>
|
||||
<span class="cmd">git add . && git commit -m "minha página"</span>
|
||||
</div>
|
||||
<div class="line">
|
||||
<span class="prompt">$</span>
|
||||
<span class="cmd">git push origin gitea-pages</span>
|
||||
</div>
|
||||
<div class="line">
|
||||
<span class="comment"># webhook dispara → arquivo aparece aqui ✓</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="divider"></div>
|
||||
|
||||
<div class="meta">
|
||||
servido por <span>nginx</span> · deploy via <span>gitea-pages-static</span> · <span>GitFur 🐾</span>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user