This repository has been archived on 2023-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
TicTacToe/css/TicTacToe.css
2016-11-08 16:11:17 +00:00

64 lines
1.0 KiB
CSS

table {
border-collapse: collapse;
}
th {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
td {
padding: 8px;
text-align: center;
border: 3px solid #000;
}
td.chosen {
width: 128;
height: 81;
}
td button {
border: 2px solid #008CBA;
color: black;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
}
td button:hover {
background-color: #008CBA;
color: white;
}
.menubtn {
display: inline-block;
padding: 5px 10px;
font-size: 24px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #0080ff;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
}
.menubtn:hover {
background-color: #3399ff;
}
.menubtn:active {
background-color: #0066cc;
box-shadow: 0 5px #666;
transform: translateY(4px);
}