From a003383ebc3fb8fc5bc7c934f10248548f915138 Mon Sep 17 00:00:00 2001 From: Purge <65049931+Purge11@users.noreply.github.com> Date: Sat, 5 Oct 2024 21:27:52 +0300 Subject: [PATCH] Update raids.component.css --- src/app/raids/raids.component.css | 32 +++---------------------------- 1 file changed, 3 insertions(+), 29 deletions(-) diff --git a/src/app/raids/raids.component.css b/src/app/raids/raids.component.css index d93bc146..a24c7789 100644 --- a/src/app/raids/raids.component.css +++ b/src/app/raids/raids.component.css @@ -5,19 +5,12 @@ flex-direction: column; margin-block: 3em; color: white; - background-color: rgba(0, 0, 0, 0.85); + background-color: rgba(0, 0, 0, .8); border-radius: 20px; width: 100%; padding: 3em 0; - box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6); /* Added shadow */ - transition: all 0.3s ease-in-out; /* Updated to a more general transition */ } -.raids:hover { - transform: scale(1.02); /* Slight zoom on hover */ -} - - .raid-container { padding: 1em; } @@ -26,21 +19,15 @@ max-width: 100%; max-height: 100%; border-radius: 10px; - transition: transform 0.3s ease-in-out; /* Smooth image hover */ -} - -.raid-container img:hover { - transform: scale(1.05); /* Image zoom effect */ } /* Titles */ + .raid-name, .raids-title { font-family: 'Edu SA Beginner', cursive; display: flex; justify-content: center; font-size: 2rem; - letter-spacing: 1.5px; - text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Added text shadow */ } .raids-title { @@ -71,11 +58,6 @@ .raid-box img { max-height: 36px; max-width: 37px; - transition: transform 0.3s ease-in-out; /* Smooth image hover */ -} - -.raid-box img:hover { - transform: scale(1.1); /* Image zoom effect */ } .raid-box h3 { @@ -89,23 +71,15 @@ padding: 0; } -/* Add a hover effect for buttons or raid boxes */ -.raid-box:hover { - background-color: rgba(255, 255, 255, 0.1); /* Highlight effect on hover */ - border-radius: 8px; - cursor: pointer; -} - /* Media queries */ @media all and (min-width: 1140px) { .raids-container { display: grid; grid-template-columns: repeat(3, 1fr); padding: 2em; - gap: 1.5em; /* Add space between columns */ } .raids { width: 75%; } -} +} \ No newline at end of file