From dda68adc8945c362a07852e556459f70f6567b1f Mon Sep 17 00:00:00 2001 From: Kaj Forney Date: Thu, 23 Feb 2023 12:53:43 -0700 Subject: [PATCH] Video play button adjustments. --- css/main.css | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/css/main.css b/css/main.css index 02b7c0b..474dbe1 100644 --- a/css/main.css +++ b/css/main.css @@ -276,8 +276,8 @@ and was then modified by me as necessary.*/ } .youtube-video .playButton { - width: 90px; - height: 60px; + width: 120px; + height: 90px; background-color: #333; box-shadow: 0 0 30px rgba(0, 0, 0, 0.6); z-index: 1; @@ -288,10 +288,14 @@ and was then modified by me as necessary.*/ .youtube-video .playButton:before { content: ""; border-style: solid; - border-width: 15px 0 15px 26.0px; + border-width: 30px 0 30px 52px; border-color: transparent transparent transparent #fff; } +.youtube-video:hover .playButton { + background-color: #FFBC42; +} + .youtube-video img, .youtube-video .playButton { cursor: pointer;