first commit
This commit is contained in:
parent
0b23cd8942
commit
a275990f62
4 changed files with 140 additions and 0 deletions
27
games/tic-tac-toe-js/css/screen.css
Normal file
27
games/tic-tac-toe-js/css/screen.css
Normal file
|
@ -0,0 +1,27 @@
|
|||
body {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
td {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
font-size: 20px;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
border-left: 1px solid gray;
|
||||
border-top: 1px solid gray;
|
||||
}
|
||||
|
||||
tr:first-child td {
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
td:first-child {
|
||||
border-left: none;
|
||||
}
|
Reference in a new issue