89 lines
4.0 KiB
HTML
89 lines
4.0 KiB
HTML
<style>
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body { background: #09090b; color: #f4f4f5; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; padding: 32px 24px; }
|
|
.wrap { max-width: 900px; margin: 0 auto; }
|
|
|
|
.tabs { display: flex; gap: 0; border-bottom: 1px solid #27272a; margin-bottom: 40px; }
|
|
.tab { padding: 10px 20px; font-size: 13px; font-weight: 500; color: #71717a; border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; }
|
|
.tab.active { color: #fbbf24; border-bottom-color: #fbbf24; }
|
|
|
|
.page-header { margin-bottom: 40px; }
|
|
.page-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #52525b; margin-bottom: 8px; }
|
|
.page-title { font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -0.02em; margin-bottom: 6px; }
|
|
.page-sub { font-size: 14px; color: #52525b; }
|
|
|
|
.feedback-header { margin-bottom: 28px; }
|
|
.feedback-header h2 { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -0.015em; margin-bottom: 6px; }
|
|
.feedback-header p { font-size: 13px; color: #52525b; line-height: 1.6; }
|
|
|
|
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
|
|
.form-field { margin-bottom: 20px; }
|
|
.form-label { font-size: 11px; font-weight: 600; color: #71717a; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; display: block; }
|
|
.form-input, .form-select, .form-textarea {
|
|
width: 100%; padding: 10px 14px; font-size: 13px; font-family: inherit;
|
|
background: #0d0d0f; border: 1px solid #27272a; border-radius: 8px;
|
|
color: #e4e4e7; outline: none;
|
|
}
|
|
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(251,191,36,0.4); }
|
|
.form-textarea { resize: vertical; min-height: 160px; line-height: 1.6; }
|
|
.form-select { appearance: none; cursor: pointer; }
|
|
.form-hint { font-size: 11px; color: #3f3f46; margin-top: 6px; }
|
|
.char-count { font-size: 11px; color: #3f3f46; text-align: right; margin-top: 6px; }
|
|
|
|
.form-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
|
|
.form-footer-note { font-size: 11px; color: #3f3f46; }
|
|
|
|
.btn-submit {
|
|
display: inline-flex; align-items: center; gap: 8px;
|
|
background: rgba(251,191,36,0.9); color: #000; font-size: 13px; font-weight: 700;
|
|
padding: 10px 28px; border-radius: 8px; border: none; cursor: pointer;
|
|
letter-spacing: 0.02em; font-family: inherit;
|
|
}
|
|
.btn-submit:hover { background: #fbbf24; }
|
|
</style>
|
|
|
|
<div class="wrap">
|
|
<div class="page-header">
|
|
<p class="page-label">Battl Builders</p>
|
|
<h1 class="page-title">Updates</h1>
|
|
<p class="page-sub">What we've shipped and what's coming next.</p>
|
|
</div>
|
|
|
|
<div class="tabs">
|
|
<div class="tab">What's New</div>
|
|
<div class="tab">What's Next</div>
|
|
<div class="tab active">Give Feedback</div>
|
|
</div>
|
|
|
|
<div class="feedback-header">
|
|
<h2>Tell us what you think.</h2>
|
|
<p>Bug, feature idea, or general thought — we read everything. Rough language welcome.</p>
|
|
</div>
|
|
|
|
<div class="form-row">
|
|
<div class="form-field">
|
|
<label class="form-label">Category</label>
|
|
<select class="form-select">
|
|
<option>Bug report</option>
|
|
<option>Feature request</option>
|
|
<option>General feedback</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-field">
|
|
<label class="form-label">Email <span style="color:#3f3f46; font-weight:400; text-transform:none; letter-spacing:0;">(optional — if you want a reply)</span></label>
|
|
<input class="form-input" type="email" placeholder="you@email.com" />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-field">
|
|
<label class="form-label">Message</label>
|
|
<textarea class="form-textarea" placeholder="What's on your mind?"></textarea>
|
|
<div class="char-count">0 / 1000</div>
|
|
</div>
|
|
|
|
<div class="form-footer">
|
|
<span class="form-footer-note">We'll only use your email to follow up on your feedback.</span>
|
|
<button class="btn-submit">Send Feedback →</button>
|
|
</div>
|
|
</div>
|