-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtic.css
113 lines (101 loc) · 1.76 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
h1 {
color: orangered;
margin-bottom: -5px;
}
p {
margin-bottom: -10px;
}
.ui {
display: flex;
flex-direction: column;
align-items: center;
}
.row {
display: flex;
}
.cell {
border: none;
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
text-align: center;
cursor: pointer;
}
.cell:active {
outline: none;
}
/* 3*3 Grid */
#b1{
border-bottom: 1px solid black;
border-right: 1px solid black;
}
#b2 {
border-bottom: 1px solid black;
border-right: 1px solid black;
border-left: 1px solid black;
}
#b3 {
border-bottom: 1px solid black;
border-left: 1px solid black;
}
#b4 {
border-top: 1px solid black;
border-bottom: 1px solid black;
border-right: 1px solid black;
}
#b5 {
border: 1px solid black;
}
#b6 {
border-top: 1px solid black;
border-bottom: 1px solid black;
border-left: 1px solid black;
}
#b7 {
border-top: 1px solid black;
border-right: 1px solid black;
}
#b8 {
border-top: 1px solid black;
border-right: 1px solid black;
border-left: 1px solid black;
}
#b9 {
border-top: 1px solid black;
border-left: 1px solid black;
}
/* Reset Button */
#but {
box-sizing: border-box;
width: 95px;
height: 40px;
border: 2px solid greenyellow;
margin-left: auto;
border-radius: 8px;
font-family: Verdana,
Geneva, Tahoma, sans-serif;
background-color: whitesmoke;
color: black;
font-size: 20px;
cursor: pointer;
}
/* Player turn space */
#print {
font-family: Verdana,
Geneva, Tahoma, sans-serif;
color: red;
font-size: 20px;
}
/* Main Container */
#main {
text-align: center;
}
/* Game Instruction Text */
#ins {
font-family: Verdana,Geneva,
Tahoma, sans-serif;
color: peru;
}