-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (65 loc) · 1.75 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
<!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">
<title>Document</title>
<style>
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
}
.wrapper {
display: flex;
}
.block {
width: 100px;
display: flex;
align-items: center;
flex-direction: column;
justify-content: space-between;
font-size: 1rem;
font-weight: 600;
}
.btn {
cursor: pointer;
border-radius: 10px;
padding: 10px 20px;
font-size: 1rem;
font-weight: 600;
}
.btn:hover {
background-color: #dfedad;
}
.title-button {
padding-top: 10px;
font-size: 1.6rem;
}
.title-between {
font-size: 1.8rem;
display: inline-block;
}
</style>
</head>
<body>
<div class="container">
<h2>Hoang Ngoc</h2>
<div class="wrapper">
<div class="block">
<button class="btn win">Win</button>
<span class="title-button title-win"></span>
</div>
<span class="title-between">-</span>
<div class="block">
<button class="btn loser">Loser</button>
<span class="title-button title-loser"></span>
</div>
</div>
</div>
<script type="text/javascript" src="./js.js"></script>
</body>
</html>