forked from dadleybs/tic-tac-toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (44 loc) · 724 Bytes
/
style.css
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
@charset "UTF-8";
/* CSS Document */
* {
margin: 0px;
padding: 0px;
font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
font-size:30px;
}
body {
width: 960px;
min-height: 700px;
}
#header, #board {
text-align: center;
}
#board {
margin: 75px auto;
}
#a1, #a2, #a3, #b1, #b2, #b3, #c1, #c2, #c3 {
width: 100px;
height: 100px;
display: inline-block;
}
#a1, #a2, #a3 {
border-bottom: dashed 2px black;
}
#b1, #b2, #b3 {
border-bottom: dashed 2px black;
}
#a2, #b2, #c2 {
border-left: dashed 2px black;
border-right: dashed 2px black;
}
.red {
background-color: red;
background-size: 100px;
}
.blue {
background-color: blue;
background-size: 100px;
}
#again {
font-size:14px;
}