-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (92 loc) · 3.97 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<link rel="apple-touch-icon" sizes="180x180" href="src/assets/favicons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="src/assets/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="src/assets/favicons/favicon-16x16.png">
<link rel="manifest" href="src/assets/favicons/site.webmanifest">
<link rel="mask-icon" href="src/assets/favicons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=EB+Garamond:wght@500;800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="src/styles/app.css" />
<link rel="stylesheet" href="src/styles/pages/home.css" />
<link rel="stylesheet" href="src/styles/game/popup.css" />
<link rel="stylesheet" href="src/styles/pages/score-tabs.css" />
<link rel="stylesheet" href="src/styles/components/table.css" />
<link rel="stylesheet" href="src/styles/components/sound-controller.css" />
<link rel="stylesheet" href="src/styles/components/mode-switcher.css" />
<link rel="stylesheet" href="src/styles/components/popup-store.css" />
<title>Lockpick</title>
</head>
<body>
<div class="home-page">
<video class="home-page__video-background" loop muted autoplay></video>
<div class="home-page__color-layer"></div>
<div class="home-page__top-bar">
<div class="home-page__line home-page-top-bar__line"></div>
<nav class="home-page__nav">
<ul class="home-page-nav__list">
<li>
<a class="home-page__bar-link" href="#" id="howToPlay">
How to play
</a>
</li>
<li>
<a class="home-page__bar-link" href="#" id="store">
Store
</a>
</li>
</ul>
</nav>
</div>
<div class="home-page__left-bar">
<div class="home-page__line home-page-left-bar__line"></div>
<a href="https://github.com/frontend-sensei" class="home-page__developers">devs: @frontend_sensei</a>
</div>
<h1 class="home-page__title">LOCKPICKER</h1>
<div class="home-page__play-wrapper" id="playWrapper">
<button class="home-page__play-button" id="play">play</button>
<img class="home-page-keys-img" src="src/assets/images/keys.png" alt="" />
</div>
<div class="mode-switcher">
<h4 class="mode-switcher__title">Select mode</h4>
<div class="mode-switcher-wrapper">
<label class="mode-switcher__label">
<input type="radio" class="mode-switcher__input" name="mode" value="standard">
<span>standard</span>
</label>
<label class="mode-switcher__label">
<input type="radio" class="mode-switcher__input" name="mode" value="timer">
<span>timer</span>
</label>
<label class="mode-switcher__label">
<input type="radio" class="mode-switcher__input" name="mode" value="hardcore">
<span>hardcore</span>
</label>
</div>
</div>
<button class="sound-controller sound-controller--muted">
<img
src="src/assets/icons/volume_on.svg"
class="sound-controller__icon sound-controller__icon--unmuted"
alt=""
/>
<img
src="src/assets/icons/volume_off.svg"
class="sound-controller__icon sound-controller__icon--muted"
alt=""
/>
</button>
</div>
<script type="module" src="src/js/pages/home.js"></script>
</body>
</html>