-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (74 loc) · 3.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== FAVICON ===============-->
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon-32x32.png">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<!--=============== REMIXICON ===============-->
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<title>Frontend Mentor | Rock, Paper, Scissors</title>
</head>
<body>
<!--=============== HEADER SCORE ===============-->
<header class="header">
<div class="header__container">
<img src="assets/img/logo.svg" alt="" class="header__logo">
<div class="header__card">
<span class="header__title">score</span>
<span class="header__count">0</span>
</div>
</div>
</header>
<!--=============== GAME SECTION ===============-->
<section class="game" id="game">
<div class="game__container">
<div class="game__container-selectorsWindow " id="selectorsWindow">
<div class="game__selector selector paper">
<img src="assets/img/icon-paper.svg" alt="" class="game__icon">
</div>
<div class="game__selector selector scissors">
<img src="assets/img/icon-scissors.svg" alt="" class="game__icon">
</div>
<div class="game__selector selector rock">
<img src="assets/img/icon-rock.svg" alt="" class="game__icon">
</div>
<img src="assets/img/bg-triangle.svg" alt="" class="game__background">
</div>
<div class="game__container-resultsWindow display-none" id="resultsWindow">
<div class="game__result">
<div class="game__result-player">
<div class="game__result-selector selector rock">
<img src="assets/img/icon-rock.svg" alt="" class="game__icon">
</div>
<span class="game__result-title">you picked</span>
</div>
<div class="game__result-computer">
<div class="game__result-background">
</div>
<span class="game__result-title">the house picked</span>
</div>
</div>
<div class="game__restart display-none opacity-hidden">
<h2 class="game__restart-title"></h2>
<button class="game__restart-button button">play again</button>
</div>
</div>
<div class="game__modal display-none opacity-hidden">
<h2 class="game__modal-title">Rules</h2>
<img src="assets/img/image-rules.svg" alt="" class="game__modal-img">
<i class="ri-close-line game__modal-close"></i>
</div>
</section>
<!--=============== RULES ===============-->
<footer class="footer">
<div class="game__rules">
<button class="game__rules-button button">Rules</button>
</div>
</footer>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
</body>
</html>