Добавление manifest и иконок

This commit is contained in:
2021-02-06 16:01:53 +03:00
parent 5a1a2c26b6
commit 931b12b591
10 changed files with 6272 additions and 826 deletions

View File

@ -1,50 +0,0 @@
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Example for kids</title>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body class="h-100">
<div class="container h-100">
<div class="row align-items-center justify-content-center h-100">
<div class="col">
<div class="StartPage d-none">
<div class="mb-3">
<label class="form-label" for="startPageNameInput">Введи свое имя:</label>
<input class="form-control" id="startPageNameInput" />
</div>
<button class="btn btn-success" id="start-button" type="button">Старт</button>
</div>
<div class="GamePage d-none">
<div class="input-group example">
<input class="form-control" id="first-input" />
<span class="input-group-text" id="sign-span">+</span>
<input class="form-control" id="second-input" />
<span class="input-group-text">=</span>
<input class="form-control" id="sum-input" />
</div>
<button class="btn btn-warning" id="check-button" type="button">Проверить</button>
</div>
<div class="ResultPage d-none">
<div id="result-container"></div>
<button class="btn btn-primary" id="repeat-button" type="button">Еще раз</button>
</div>
</div>
</div>
</div>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
<script src="./script.js"></script>
</body>
</html>

View File

@ -1,3 +1,6 @@
import 'bootstrap';
import 'bootstrap/dist/css/bootstrap.min.css';
import './style.css';
// TODO скрыть переменные
const LOCAL_DATA_KEY = 'example-for-kids';