From 246eaf0cc7632d5590795d97ea4bc34a72c1034c Mon Sep 17 00:00:00 2001 From: Aviortheking <2bazert@gmail.com> Date: Tue, 8 Nov 2016 16:11:17 +0000 Subject: [PATCH] creating style --- css/TicTacToe.css | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/css/TicTacToe.css b/css/TicTacToe.css index af477cf..6b83217 100644 --- a/css/TicTacToe.css +++ b/css/TicTacToe.css @@ -14,7 +14,7 @@ td { border: 3px solid #000; } -.chosen { +td.chosen { width: 128; height: 81; } @@ -39,5 +39,26 @@ td button:hover { } .menubtn { - /*Working on*/ + 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); } \ No newline at end of file