-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (44 loc) · 1.23 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
<!doctype html>
<html lang="en">
<head>
<title>Taboo game</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.8/css/all.css" integrity="sha384-3AB7yXWz4OeoZcPbieVW64vVXEwADiYyAEhwilzWsLw+9FgqpyjjStpPnpBO8o8S"
crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto:700" rel="stylesheet">
<style>
body {
background-color: #f4f4f4;
}
.container {
padding-top: 40px;
}
.btn-game {
min-height: 150px;
font-size: 40px;
font-family: 'Roboto', sans-serif;
}
.btn-game-next {
min-height: 150px;
font-size: 20px;
font-family: 'Roboto', sans-serif;
}
.card-header {
font-size: 30px;
}
nav {
font-size: 20px;
}
.clock {
color: #fff;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="/dist/build.js"></script>
</body>
</html>