This repository has been archived on 2025-08-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
GGS/games/tic-tac-toe-js/css/screen.css
2011-01-30 05:57:48 +01:00

28 lines
415 B
CSS

body {
text-align: center;
font-family: "Lucida Grande", Tahoma, Helvetica, Verdana, sans-serif;
}
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;
}