-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (51 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cycle.js Starter</title>
<style>
body {
background: rgb(240, 240, 240);
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
text-align: center;
}
.is-hidden {
display: none;
}
.recall-message {
margin-bottom: 10px;
}
.recall-grid {
display: inline-block;
font-size: 0;
}
.recall-grid-row {
margin-bottom: 5px;
}
.recall-grid-tile {
display: inline-block;
width: 100px;
height: 100px;
background: rgb(244,154,193);
transition: background 0.1s ease;
}
.recall-grid-tile + .recall-grid-tile {
margin-left: 5px;
}
.recall-grid-tile:active {
background: rgb(125, 167, 217);
}
.recall-grid-tile.is-selected {
background: rgb(161, 134, 190);
}
</style>
</head>
<body>
<hgroup>
<h1 class="logo">Recall</h1>
<h2>Select the nine tiles you see to win!</h2>
</hgroup>
<div id="root"></div>
<script src="dist/bundle.js"></script>
</body>
</html>