forked from ivanzugnoni/react-tic-tac-toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (46 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>React - Tic Tac Toe</title>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap-theme.min.css">
<link href='http://fonts.googleapis.com/css?family=Merienda+One' rel='stylesheet' type='text/css'>
<style>
.container{
margin-top: 20px;
}
.board-container{
margin-top: 20px;
}
.board-container .row{
margin-bottom: 20px;
}
.board-container .game-cell button{
width: 100px;
height: 100px;
font-size: 40px;
font-weight: bold;
}
.player-info{
font-size: 30px;
font-weight: bold;
}
.player-x span{
color: #265a88;
}
.player-o span{
color: #419641;
}
.title {
font: 400 50px/1.2 'Merienda One', Helvetica, sans-serif;
color: rgba(0,0,0,0.7);
text-shadow: 3px 3px 3px #fff;
}
</style>
</head>
<body>
<div id="app" class="container"></div>
<script src="bundle.js" charset="utf-8"></script>
</body>
</html>