From 844c5a6c2a6adf9c67dcd4c7bd0d3b1ad9638b46 Mon Sep 17 00:00:00 2001 From: Jleo-cjy Date: Tue, 13 May 2025 21:39:49 +0800 Subject: [PATCH] Update style.css --- movie-app/style.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/movie-app/style.css b/movie-app/style.css index 4821341..9e5cfc5 100644 --- a/movie-app/style.css +++ b/movie-app/style.css @@ -110,3 +110,18 @@ main { .movie:hover .overview { transform: translateY(0); } + +.detail-btn { + display: inline-block; + padding: 6px 12px; + background-color: #007bff; + color: white; + text-decoration: none; + border-radius: 4px; + font-size: 14px; + transition: background-color 0.3s; +} + +.detail-btn:hover { + background-color: #0056b3; +}