Refactor shared layouts and remove unused CSS
This commit is contained in:
+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 %}
|
||||
|
||||
Reference in New Issue
Block a user