commit
2da151493a
1
TODO.md
1
TODO.md
@ -1,2 +1,3 @@
|
|||||||
[ ] Keyboard fit
|
[ ] Keyboard fit
|
||||||
[ ] iOS web app
|
[ ] iOS web app
|
||||||
|
[ ] Game Statistic
|
||||||
|
BIN
_media/img/apple-launch-icon.png
Normal file
BIN
_media/img/apple-launch-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
BIN
_media/img/apple-touch-icon.png
Normal file
BIN
_media/img/apple-touch-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
BIN
_media/img/favicon.png
Normal file
BIN
_media/img/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.2 KiB |
17
index.html
17
index.html
@ -7,27 +7,33 @@
|
|||||||
-->
|
-->
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Hangman</title>
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="mobile-web-app-capable" content="yes">
|
||||||
|
<title>WORDs</title>
|
||||||
|
<meta name="apple-mobile-web-app-title" content="WORDs">
|
||||||
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1, minimal-ui">
|
||||||
<link rel="stylesheet" href="https://unpkg.com/chota@0.8.0">
|
<link rel="stylesheet" href="https://unpkg.com/chota@0.8.0">
|
||||||
<!-- dev mode -->
|
<!-- dev mode -->
|
||||||
<!-- <link rel="stylesheet" href="_media/css/chota.min.css"> -->
|
<!-- <link rel="stylesheet" href="_media/css/chota.min.css"> -->
|
||||||
<link rel="stylesheet" href="_media/css/styles.css">
|
<link rel="stylesheet" href="_media/css/styles.css">
|
||||||
<link rel="icon" type="image/png" href="_media/img/favicon.png">
|
<link rel="icon" type="image/png" href="_media/img/favicon.png">
|
||||||
|
<link rel="apple-touch-icon" href="_media/img/apple-touch-icon.png">
|
||||||
|
<link rel="apple-touch-startup-image" href="_media/img/apple-launch-icon.png">
|
||||||
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<header>
|
<header>
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<div class="nav-left">
|
<div class="nav-left">
|
||||||
<a class="brand" href="#">Hangman game</a>
|
<a class="brand" href="#">WORDs</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="nav-center">
|
<div class="nav-center">
|
||||||
<p id="lives" class="button error">loading...</p>
|
<p id="lives" class="button error">loading...</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="nav-right">
|
<div class="nav-right">
|
||||||
<a class="button dropdown">Язык</a>
|
<!-- <a class="button dropdown">Language</a> -->
|
||||||
<a class="button dark" id="theme-switch" onclick="switchMode(this)">☀️</a>
|
<a class="button clear" id="theme-switch" onclick="switchMode(this)">☀️</a>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
@ -63,6 +69,7 @@
|
|||||||
if (window.matchMedia &&
|
if (window.matchMedia &&
|
||||||
window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
||||||
document.body.classList.add('dark');
|
document.body.classList.add('dark');
|
||||||
|
document.querySelector("#theme-switch").innerHTML = "🌙";
|
||||||
}
|
}
|
||||||
|
|
||||||
function switchMode(el) {
|
function switchMode(el) {
|
||||||
|
Loading…
Reference in New Issue
Block a user