Refactor shared layouts and remove unused CSS
This commit is contained in:
+126
-44
@@ -8,6 +8,7 @@
|
||||
--primary: #1f2937;
|
||||
--primary-strong: #0f172a;
|
||||
--success: #16a34a;
|
||||
--danger: #b91c1c;
|
||||
}
|
||||
|
||||
* {
|
||||
@@ -26,15 +27,19 @@ body {
|
||||
}
|
||||
|
||||
.topbar {
|
||||
height: 64px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
background: var(--surface);
|
||||
}
|
||||
|
||||
.topbar-inner {
|
||||
max-width: 1000px;
|
||||
margin: 0 auto;
|
||||
min-height: 64px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
padding: 0 20px;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.brand {
|
||||
@@ -58,12 +63,7 @@ body {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.topnav a:hover {
|
||||
color: var(--text);
|
||||
background: var(--surface-soft);
|
||||
border-color: var(--border);
|
||||
}
|
||||
|
||||
.topnav a:hover,
|
||||
.topnav a.active {
|
||||
color: var(--text);
|
||||
background: var(--surface-soft);
|
||||
@@ -76,18 +76,41 @@ body {
|
||||
padding: 7px 10px;
|
||||
font-size: 0.9rem;
|
||||
color: var(--muted);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.page-wrap {
|
||||
max-width: 1080px;
|
||||
max-width: 1000px;
|
||||
margin: 0 auto;
|
||||
padding: 24px 20px 30px;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 8px 0 10px;
|
||||
font-size: clamp(1.6rem, 3vw, 2.25rem);
|
||||
line-height: 1.15;
|
||||
margin-bottom: 12px;
|
||||
font-size: clamp(1.6rem, 3vw, 2.1rem);
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-bottom: 10px;
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
margin: 14px 0 0;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.panel {
|
||||
border: 1px solid var(--border);
|
||||
background: var(--surface);
|
||||
border-radius: 8px;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.cta-row {
|
||||
@@ -124,10 +147,8 @@ h1 {
|
||||
}
|
||||
|
||||
.queue-layout {
|
||||
margin-top: 14px;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 12px;
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.chip-row {
|
||||
@@ -153,45 +174,103 @@ h1 {
|
||||
background: #eef2f6;
|
||||
}
|
||||
|
||||
.friend-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
.search-form {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.friend-list li {
|
||||
.search-form input {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 4px;
|
||||
padding: 9px 12px;
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
.friends-section,
|
||||
.friends-search-panel {
|
||||
margin-top: 14px;
|
||||
}
|
||||
|
||||
.friends-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.friend-card {
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 6px;
|
||||
background: var(--surface-soft);
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 7px 0;
|
||||
border-top: 1px solid var(--border);
|
||||
justify-content: space-between;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.friend-main {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.friend-username {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.friend-status {
|
||||
font-size: 0.9rem;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.friend-list li:first-child {
|
||||
border-top: 0;
|
||||
.status-online {
|
||||
color: var(--success);
|
||||
}
|
||||
|
||||
.dot {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 4px;
|
||||
background: var(--success);
|
||||
.status-offline {
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.panel-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.friend-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.queue-layout {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.friend-note,
|
||||
.muted {
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.flash-stack {
|
||||
margin-bottom: 14px;
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.flash {
|
||||
border: 1px solid var(--border);
|
||||
background: var(--surface);
|
||||
border-radius: 6px;
|
||||
padding: 10px 12px;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.flash.success {
|
||||
border-color: #b7dfc3;
|
||||
background: #ecfdf3;
|
||||
}
|
||||
|
||||
.flash.error {
|
||||
border-color: #f0c2c2;
|
||||
background: #fef2f2;
|
||||
color: var(--danger);
|
||||
}
|
||||
|
||||
@media (max-width: 700px) {
|
||||
.topbar {
|
||||
height: auto;
|
||||
.topbar-inner {
|
||||
min-height: auto;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
padding: 10px 14px;
|
||||
@@ -211,9 +290,12 @@ h1 {
|
||||
padding: 16px 14px 24px;
|
||||
}
|
||||
|
||||
.hero,
|
||||
.stack-head,
|
||||
.panel {
|
||||
padding: 14px;
|
||||
.search-form {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.friend-card {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
+92
-8
@@ -1,9 +1,93 @@
|
||||
.link-button {
|
||||
border: 1px solid black;
|
||||
padding: 10px;
|
||||
text-decoration: none;
|
||||
border-radius: 5px;
|
||||
background-color: lightgray;
|
||||
color: black;
|
||||
margin: 5px;
|
||||
:root {
|
||||
--bg: #f4f6f8;
|
||||
--surface: #ffffff;
|
||||
--border: #dde2e8;
|
||||
--text: #111827;
|
||||
--muted: #5f6b7a;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: "Segoe UI", sans-serif;
|
||||
color: var(--text);
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
.public-wrap {
|
||||
max-width: 1000px;
|
||||
margin: 0 auto;
|
||||
padding: 24px 20px;
|
||||
}
|
||||
|
||||
.public-card {
|
||||
border: 1px solid var(--border);
|
||||
background: var(--surface);
|
||||
border-radius: 8px;
|
||||
padding: 18px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: 0 0 10px;
|
||||
}
|
||||
|
||||
.muted {
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.public-actions {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.auth-form {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.auth-form input {
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 4px;
|
||||
padding: 9px 10px;
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
.link-button {
|
||||
display: inline-block;
|
||||
border: 1px solid #111827;
|
||||
padding: 8px 12px;
|
||||
text-decoration: none;
|
||||
border-radius: 4px;
|
||||
color: #111827;
|
||||
background: #f3f4f6;
|
||||
cursor: pointer;
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
.flash-stack {
|
||||
margin-bottom: 10px;
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.flash {
|
||||
border: 1px solid var(--border);
|
||||
background: var(--surface);
|
||||
border-radius: 6px;
|
||||
padding: 10px 12px;
|
||||
}
|
||||
|
||||
.flash.error {
|
||||
border-color: #f0c2c2;
|
||||
background: #fef2f2;
|
||||
}
|
||||
|
||||
.flash.success {
|
||||
border-color: #b7dfc3;
|
||||
background: #ecfdf3;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>{% block title %}Chess{% endblock %}</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=Manrope:wght@400;500;600;700&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='app.css') }}" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="site-shell">
|
||||
<header class="topbar">
|
||||
<div class="topbar-inner">
|
||||
<a href="{{ url_for('main.home') }}" class="brand">Chess</a>
|
||||
<nav class="topnav">
|
||||
<a
|
||||
href="{{ url_for('main.home') }}"
|
||||
class="{{ 'active' if active_page == 'home' else '' }}"
|
||||
>Home</a
|
||||
>
|
||||
<a
|
||||
href="{{ url_for('main.play') }}"
|
||||
class="{{ 'active' if active_page == 'play' else '' }}"
|
||||
>Play</a
|
||||
>
|
||||
<a
|
||||
href="{{ url_for('main.friends') }}"
|
||||
class="{{ 'active' if active_page == 'friends' else '' }}"
|
||||
>Friends</a
|
||||
>
|
||||
</nav>
|
||||
<div class="profile-pill">{{ current_user.username }}</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="page-wrap">
|
||||
{% with messages = get_flashed_messages(with_categories=true) %} {% if
|
||||
messages %}
|
||||
<div class="flash-stack">
|
||||
{% for category, message in messages %}
|
||||
<div class="flash {{ category }}">{{ message }}</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %} {% endwith %} {% block content %}{% endblock %}
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,24 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>{% block title %}Chess{% endblock %}</title>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="{{ url_for('static', filename='style.css') }}"
|
||||
/>
|
||||
</head>
|
||||
<body>
|
||||
<main class="public-wrap">
|
||||
{% with messages = get_flashed_messages(with_categories=true) %} {% if
|
||||
messages %}
|
||||
<div class="flash-stack">
|
||||
{% for category, message in messages %}
|
||||
<div class="flash {{ category }}">{{ message }}</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %} {% endwith %} {% block content %}{% endblock %}
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
+10
-40
@@ -1,40 +1,10 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Home</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=Manrope:wght@400;500;600;700&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='app.css') }}" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="site-shell">
|
||||
<header class="topbar">
|
||||
<a href="{{ url_for('main.home') }}" class="brand">Chess</a>
|
||||
<nav class="topnav">
|
||||
<a href="{{ url_for('main.home') }}" class="active">Home</a>
|
||||
<a href="{{ url_for('main.play') }}">Play</a>
|
||||
<a href="{{ url_for('main.friends') }}">Friends</a>
|
||||
</nav>
|
||||
<div class="profile-pill">{{ current_user.username }}</div>
|
||||
</header>
|
||||
|
||||
<main class="page-wrap">
|
||||
<h1>Welcome back, {{current_user.username}}</h1>
|
||||
<div class="cta-row">
|
||||
<a href="{{ url_for('main.play') }}" class="btn btn-primary"
|
||||
>Start a game</a
|
||||
>
|
||||
<a href="{{ url_for('main.friends') }}" class="btn btn-secondary"
|
||||
>Open friends</a
|
||||
>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
{% extends "base_app.html" %} {% set active_page = 'home' %} {% block title
|
||||
%}Home{% endblock %} {% block content %}
|
||||
<h1>Welcome back, {{ current_user.username }}</h1>
|
||||
<div class="cta-row">
|
||||
<a href="{{ url_for('main.play') }}" class="btn btn-primary">Start a game</a>
|
||||
<a href="{{ url_for('main.friends') }}" class="btn btn-secondary"
|
||||
>Open friends</a
|
||||
>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
+14
-20
@@ -1,20 +1,14 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Chess</title>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="{{ url_for('static', filename='style.css') }}"
|
||||
/>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Chess Game</h1>
|
||||
<p>main page</p>
|
||||
|
||||
<a href="{{ url_for('auth.login') }}" class="link-button"> Login </a>
|
||||
|
||||
<a href="{{ url_for('auth.register') }}" class="link-button"> Register </a>
|
||||
</body>
|
||||
</html>
|
||||
{% extends "base_public.html" %} {% block title %}Chess{% endblock %} {% block
|
||||
content %}
|
||||
<section class="public-card">
|
||||
<h1>Play Chess</h1>
|
||||
<p class="muted">
|
||||
Play games and challenge your friends. You just log in or create a new
|
||||
account below.
|
||||
</p>
|
||||
<div class="public-actions">
|
||||
<a href="{{ url_for('auth.login') }}" class="link-button">Login</a>
|
||||
<a href="{{ url_for('auth.register') }}" class="link-button">Register</a>
|
||||
</div>
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
<h1>Login</h1>
|
||||
|
||||
<form method="POST">
|
||||
<input name="username" placeholder="Username" required />
|
||||
<input name="password" type="password" placeholder="Password" required />
|
||||
<button type="submit">Login</button>
|
||||
</form>
|
||||
|
||||
<a href="{{ url_for('auth.register') }}">Register</a>
|
||||
{% extends "base_public.html" %} {% block title %}Login{% endblock %} {% block
|
||||
content %}
|
||||
<section class="public-card">
|
||||
<h1>Login</h1>
|
||||
<form method="POST" class="auth-form">
|
||||
<input name="username" placeholder="Username" required />
|
||||
<input name="password" type="password" placeholder="Password" required />
|
||||
<button type="submit" class="link-button">Login</button>
|
||||
</form>
|
||||
<a href="{{ url_for('auth.register') }}">Register</a>
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
||||
+24
-55
@@ -1,56 +1,25 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Play</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=Manrope:wght@400;500;600;700&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='app.css') }}" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="site-shell">
|
||||
<header class="topbar">
|
||||
<a href="{{ url_for('main.home') }}" class="brand">Chess</a>
|
||||
<nav class="topnav">
|
||||
<a href="{{ url_for('main.home') }}">Home</a>
|
||||
<a href="{{ url_for('main.play') }}" class="active">Play</a>
|
||||
<a href="{{ url_for('main.friends') }}">Friends</a>
|
||||
</nav>
|
||||
<div class="profile-pill">{{ current_user.username }}</div>
|
||||
</header>
|
||||
|
||||
<!-- todo: make all of this via js and implement logic -->
|
||||
<main class="page-wrap">
|
||||
<section class="queue-layout">
|
||||
<article class="panel">
|
||||
<h2>Game settings</h2>
|
||||
<h4>Choose a time setup</h4>
|
||||
<div class="chip-row">
|
||||
<button class="chip">1 + 0</button>
|
||||
<button class="chip">3 + 2</button>
|
||||
<button class="chip active">10 + 0</button>
|
||||
<button class="chip">15 + 10</button>
|
||||
</div>
|
||||
<h4>You play as</h4>
|
||||
<div class="chip-row">
|
||||
<button class="chip">white</button>
|
||||
<button class="chip">black</button>
|
||||
<button class="chip active">random</button>
|
||||
</div>
|
||||
<div class="cta-row">
|
||||
<!-- <button class="btn btn-primary" type="button">Start game</button> -->
|
||||
<button class="btn btn-secondary" type="button">
|
||||
Create game code
|
||||
</button>
|
||||
</div>
|
||||
</article>
|
||||
</section>
|
||||
</main>
|
||||
{% extends "base_app.html" %} {% set active_page = 'play' %} {% block title
|
||||
%}Play{% endblock %} {% block content %}
|
||||
<section class="queue-layout">
|
||||
<article class="panel">
|
||||
<h1>Play</h1>
|
||||
<h2>Game settings</h2>
|
||||
<h3>Choose a time setup</h3>
|
||||
<div class="chip-row">
|
||||
<button class="chip" type="button">1 + 0</button>
|
||||
<button class="chip" type="button">3 + 2</button>
|
||||
<button class="chip active" type="button">10 + 0</button>
|
||||
<button class="chip" type="button">15 + 10</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
<h3>You play as</h3>
|
||||
<div class="chip-row">
|
||||
<button class="chip" type="button">white</button>
|
||||
<button class="chip" type="button">black</button>
|
||||
<button class="chip active" type="button">random</button>
|
||||
</div>
|
||||
<div class="cta-row">
|
||||
<button class="btn btn-secondary" type="button">Create game code</button>
|
||||
</div>
|
||||
</article>
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
<h1>Register</h1>
|
||||
|
||||
<form method="POST">
|
||||
<input name="username" placeholder="Username" required />
|
||||
<input name="password" type="password" required />
|
||||
<button type="submit">Create Account</button>
|
||||
</form>
|
||||
|
||||
<a href="{{ url_for('auth.login') }}">Back to Login</a>
|
||||
{% extends "base_public.html" %} {% block title %}Register{% endblock %} {%
|
||||
block content %}
|
||||
<section class="public-card">
|
||||
<h1>Register</h1>
|
||||
<form method="POST" class="auth-form">
|
||||
<input name="username" placeholder="Username" required />
|
||||
<input name="password" type="password" placeholder="Password" required />
|
||||
<button type="submit" class="link-button">Create Account</button>
|
||||
</form>
|
||||
<a href="{{ url_for('auth.login') }}">Back to Login</a>
|
||||
</section>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user