-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.06 KB
/
index.html
File metadata and controls
48 lines (45 loc) · 1.06 KB
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Card Shuffler</title>
<style type="text/css">
#cardtable {
display: table-cell;
position: absolute;
background-color: #777777;
top: 2em;
bottom: 2em;
right: 2em;
left: 2em;
vertical-align: middle;
padding: 1em;
}
#cardtable span {
display: inline-block;
background-color: #ffffff;
border: 1px solid #333333;
border-radius: 0.3333em;
text-align: center;
line-height: 1em;
width: 1.5em;
}
#dealer {
position: absolute;
top: 0;
right: 0;
left: 0;
padding: 0.5em;
text-align: center;
}
</style>
</head>
<body id="content">
</body>
<script src="js/lodash.min.js" type="text/javascript"></script>
<script src="js/react-0.13.3.js"></script>
<script src="js/JSXTransformer-0.13.3.js"></script>
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/marked.min.js"></script>
<script src="js/cards.js" type="text/jsx"></script>
</html>