waschmarken/index.html
Dominic Zimmer 03deb66a04 Revert "Add onlineicon test"
This reverts commit 3d12b63ab6.
2020-09-26 12:40:14 +02:00

60 lines
1.1 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>Waschmarken.io</title>
<meta name="description" content="Waschmarken Scoreboard">
<link rel="stylesheet" href="static/css/normalize.css">
<link rel="stylesheet" href="static/css/sakura-dark.css">
<style>
.heading {
text-align: center;
}
#scoreboard .score {
text-align: right;
}
#scoreboard .bar {
height: 1.2em;
border-radius: 0.6em;
}
</style>
</head>
<body>
<h1 class="heading">Waschmarken Scoreboard</h1>
<table id="scoreboard">
<thead>
<tr>
<th>Name</th>
<th style="width: 100%;"></th>
<th class="score">Score</th>
</tr>
</thead>
<tbody></tbody>
<template>
<tr class="row">
<td class="name"></td>
<td>
<div class="bar"></div>
</td>
<td class="score">42069</td>
</tr>
</template>
</table>
<script src="static/js/main.js"></script>
</body>
</html>