From c8d0a2d1fadce0fe085bc4382211b45f7be18858 Mon Sep 17 00:00:00 2001 From: estellon Date: Mon, 5 Aug 2024 18:08:49 +0200 Subject: [PATCH] add_pad_color --- pong/static/styles.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pong/static/styles.css b/pong/static/styles.css index 460feb3..04fea73 100644 --- a/pong/static/styles.css +++ b/pong/static/styles.css @@ -123,16 +123,22 @@ button:hover { #player1-pad { left: 10px; + background-color: #00ffff; + border-radius: 10px; + box-shadow: 0 0 15px #00ffff; } #player2-pad { right: 10px; + background-color: #00ffff; + border-radius: 10px; + box-shadow: 0 0 15px #00ffff; } #ball { width: 20px; height: 20px; - background-color: #ffffff; + background-color: #00ffff; border-radius: 50%; position: absolute; }