Main page

This commit is contained in:
2026-04-03 01:51:07 -05:00
parent b6f69cc590
commit 79c7b5bcd6

View File

@@ -0,0 +1,175 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>balls.studio — hub</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #fefaf5;
color: #1e1a16;
font-family: 'Segoe UI', 'Roboto', Helvetica, Arial, sans-serif;
line-height: 1.45;
padding: 2rem 1.5rem;
}
.page {
max-width: 720px;
margin: 0 auto;
}
.site-header {
border-bottom: 2px solid #dad2c5;
padding-bottom: 1.2rem;
margin-bottom: 2rem;
}
h1 {
font-family: 'Courier New', 'SF Mono', monospace;
font-size: 2.5rem;
font-weight: 600;
letter-spacing: -0.5px;
color: #2b241f;
background: none;
margin-bottom: 0.25rem;
}
.tagline {
color: #6b5e52;
font-size: 0.95rem;
margin-top: 0.3rem;
font-weight: normal;
}
.intro {
margin-bottom: 2.2rem;
font-size: 1rem;
color: #3a322b;
border-left: 3px solid #d4c8bb;
padding-left: 1rem;
}
.button-group {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
margin: 2rem 0 2.5rem;
}
.site-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: #ffffff;
border: 1.5px solid #3b2e26;
padding: 0.8rem 1.6rem;
font-size: 1.1rem;
font-weight: 500;
font-family: inherit;
text-decoration: none;
color: #2c241e;
transition: all 0.1s linear;
cursor: pointer;
line-height: 1.2;
border-radius: 0px;
letter-spacing: 0.2px;
}
.site-btn:hover {
background-color: #f1ede8;
border-color: #1f1914;
color: #000;
}
.site-btn:active {
background-color: #e2dbd2;
transform: none;
}
.site-btn:focus-visible {
outline: 2px solid #876b53;
outline-offset: 2px;
}
.external-hint {
font-size: 0.85rem;
opacity: 0.7;
margin-left: 0.2rem;
}
.info-note {
margin-top: 2rem;
padding-top: 1rem;
border-top: 1px dashed #dad2c5;
font-size: 0.8rem;
color: #7f6e60;
}
.info-note a {
color: #5f4c3c;
text-decoration: underline;
text-underline-offset: 2px;
}
.info-note a:hover {
color: #1f1914;
}
@media (max-width: 520px) {
body {
padding: 1.5rem;
}
.button-group {
gap: 1rem;
flex-direction: column;
align-items: stretch;
}
.site-btn {
justify-content: center;
padding: 0.7rem 1rem;
}
h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<div class="page">
<div class="site-header">
<h1>balls.studio</h1>
<div class="tagline">· simple tools · direct access ·</div>
</div>
<div class="intro">
internal hub — jump to any service below.<br>
both links open in a new tab.
</div>
<div class="button-group">
<a href="https://status.balls.studio/" class="site-btn" target="_blank" rel="noopener noreferrer">
status.balls.studio
<span class="external-hint"></span>
</a>
<a href="https://git.balls.studio/" class="site-btn" target="_blank" rel="noopener noreferrer">
git.balls.studio
<span class="external-hint"></span>
</a>
</div>
<div class="info-note">
<span>⚙️ status page · git repositories ·</span>
<a href="https://status.balls.studio/" target="_blank" rel="noopener noreferrer">status</a> &
<a href="https://git.balls.studio/" target="_blank" rel="noopener noreferrer">git</a> directly.
<br>handcoded, no fluff.
</div>
</div>
</body>
</html>