26 lines
832 B
HTML
26 lines
832 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>TopTrumps - Dinosaurs</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
|
|
<script src="https://unpkg.com/htmx.org@1.9.5"></script>
|
|
<style>
|
|
.app-container{padding:1.5rem}
|
|
.card-item{min-height:140px}
|
|
.highlight-new{animation: highlight 1.6s ease}
|
|
@keyframes highlight{0%{background:lavenderblush}100%{background:transparent}}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section class="section">
|
|
<div class="container app-container">
|
|
<h1 class="title">TopTrumps — Dinosaurs</h1>
|
|
<div id="messages"></div>
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html>
|