28 lines
415 B
CSS
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;
|
|
}
|