From 14827f791c94d521d9793040da341f7f36c3f282 Mon Sep 17 00:00:00 2001 From: Vivek Vardhan <91594529+vivekvardhan2810@users.noreply.github.com> Date: Sat, 3 Aug 2024 22:38:30 +0530 Subject: [PATCH] Update contributors.html --- pages/contributors.html | 42 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/pages/contributors.html b/pages/contributors.html index 8f488f0..2399409 100644 --- a/pages/contributors.html +++ b/pages/contributors.html @@ -60,9 +60,49 @@ } } - + body { + background-color: #121212; + color: #ffffff; + font-family: 'Poppins', sans-serif; +} + +.contributor-card { + background: linear-gradient(135deg, #6a93ff, #a9c7ff); + color: #ffffff; + border: 1px solid #333; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); + border-radius: 10px; + padding: 20px; + text-align: center; + margin: 10px; + transition: transform 0.3s, box-shadow 0.3s; + width: 200px; +} + +.contributor-card img { + border-radius: 50%; + width: 100px; + height: 100px; + object-fit: cover; + margin-bottom: 10px; +} +.contributor-card:hover { + transform: translateY(-10px); + box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); +} +.contributor-card h2 { + font-size: 1.2em; + margin-bottom: 5px; +} + +.contributor-card p { + font-size: 0.9em; + margin-bottom: 5px; +} + +