-
Notifications
You must be signed in to change notification settings - Fork 0
/
tic.css
57 lines (48 loc) · 890 Bytes
/
tic.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
57
body {
text-align: center;
font-family: 'Caveat Brush', cursive;
background-image: url("C:/Users/AS/Desktop/ticback.jpg");
}
h1{
font-family: 'Caveat Brush', cursive;
}
#board {
margin: 30px auto 30px auto;
height: 400px;
width: 400px;
}
#scores {
font-size: 150%;
}
td {
font-family: 'Caveat Brush', cursive;
font-size: 3.5em;
border: 1px solid rgb(8, 8, 8);
height: 133px;
width: 133px;
text-align: center;
font-size: 300%;
}
tbody {
border: none;
}
.top > td{
border-top:none;
border-bottom: solid 1px black;
}
.mid > td {
border-top: 1px black solid;
border-bottom: 1px black solid;
}
.bot > td {
border-bottom: none;
}
.left {
border-left: none;
}
.right {
border-right: none;
}
.panel {
margin-top: 200px;
}