Reviewed-on: https://git.ayo.run/ayo/cozy-games/pulls/1 Co-authored-by: Ayo <ayo@ayco.io> Co-committed-by: Ayo <ayo@ayco.io>
46 lines
1.3 KiB
HTML
46 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
<meta name="Description" content="Play Minesweeper online for FREE!" />
|
|
<title>Play Minesweeper online for FREE!</title>
|
|
|
|
<link rel="shortcut icon" type="image/png" href="/favicon.ico" />
|
|
<link rel="stylesheet" href="./main.css" />
|
|
<style>
|
|
:host, :root{
|
|
--mnswpr-transition: 10s ease-in-out;
|
|
}
|
|
|
|
sup {
|
|
a {
|
|
color: white;
|
|
text-decoration-color: orange;
|
|
transition: 500ms ease-in-out;
|
|
|
|
&:hover {
|
|
text-decoration-thickness: 2px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="body-wrapper">
|
|
<div id="greeting"></div>
|
|
<div id="app">
|
|
Please use Chrome or Firefox.
|
|
</div>
|
|
|
|
<cozy-leaderboard category="beginner" title="Best Times" format="time" score-order="asc"></cozy-leaderboard>
|
|
|
|
<div id="legends-link">
|
|
<a href="/legends.html">🏆 Legends</a>
|
|
</div>
|
|
</div>
|
|
<script type="module" src="./main.js"></script>
|
|
</body>
|
|
</html>
|