Add base template and unuasble style

This commit is contained in:
Michał Gdula 2023-05-05 02:11:10 +03:00
parent 8bf194f936
commit 0af071992b
10 changed files with 94 additions and 53 deletions

View file

@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Front Rooms Highscores</title>
<style>
@import url('https://fonts.cdnfonts.com/css/cmu-serif');
* {
font-family: 'CMU Serif', serif;
}
body, html {
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
background-color: #000;
color: #fff;
}
.app {
margin: auto;
padding: 1rem;
text-align: center;
min-width: 621px;
border: 3px solid yellow;
}
</style>
</head>
<body>
<div class="app">
<h1>Front Rooms Highscores</h1>
<p>Created by Bradley, Mia, Bartek & Michał</p>
<nav>
<ul>
<li><a href="Easy">Easy</a></li>
<li><a href="Normal">Normal</a></li>
<li><a href="Hard">Hard</a></li>
</ul>
</nav>
{% block content %}{% endblock %}
</div>
</body>
</html>