From 648ad5c4c3bb763528f7807b37598e449eda332c Mon Sep 17 00:00:00 2001 From: Sneha123-zudo Date: Tue, 20 Feb 2024 00:10:30 +0530 Subject: [PATCH] Improved the rate us page --- rate/index.html | 61 +++++++++++++++++++++++++++++++++--- rate/style.css | 83 +++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 137 insertions(+), 7 deletions(-) diff --git a/rate/index.html b/rate/index.html index 169621a..85b693d 100644 --- a/rate/index.html +++ b/rate/index.html @@ -6,10 +6,24 @@ Emoji Stars Rating + - Your Image -
+
+
+

Fun Fusion

+
+ +
+ +
@@ -48,8 +62,47 @@
- - + + + \ No newline at end of file diff --git a/rate/style.css b/rate/style.css index 846ec66..d2b5541 100644 --- a/rate/style.css +++ b/rate/style.css @@ -6,11 +6,11 @@ font-family: 'Poppins', sans-serif; } body{ - display: flex; + /* display: flex; */ align-items: center; justify-content: center; min-height: 100vh; - background: linear-gradient(#FED151, #DE981F); + background: linear-gradient(#2f2e2c, #0d0d0d); } .wrapper{ background: #f6f6f6; @@ -256,4 +256,81 @@ form header{ max-width: 70%; /* Adjust this value based on your design */ } } - \ No newline at end of file + .Header { + display: flex; + justify-content: space-evenly; + align-items: center; + text-align: center; + background-color: #4caf50; + color: white; + padding: 10px; + margin: 10px; + border-radius: 8px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + display: flex; + justify-content: center; + align-items: center; + justify-content: space-between; + } + + .rate-us-btn { + color: #4caf50; + background-color: #fff; + padding: 10px 15px; + border-radius: 5px; + text-decoration: none; + transition: background-color 0.3s ease; + } + + .rate-us-btn:hover { + background-color: #0f0c0c; + color: #fff; + } + + .Contributors { + color: #4caf50; + background-color: #fff; + padding: 10px 15px; + border-radius: 5px; + text-decoration: none; + transition: background-color 0.3s ease; + } + + .Contributors:hover { + background-color: #03b300; + color: #fff; + } + footer{ + padding: 20px; + color: white; + background-color:#4caf50 ; + margin-top: 30px; + border-radius: 20px; + } + .footers{ + display: flex; + } + .copy{ + text-align: center; + margin-top: 30px; + } + .summary{ + display: flex; + flex-direction: column; + justify-content: center; + line-height: 2rem; + margin-right: 20px; + } + .what{ + font-size: 1.2rem; + } + .contact{ + display: flex; + flex-direction: column; + justify-content: center; + line-height: 2rem; + margin-right: 20px; + } + html{ + overflow-x: hidden; + } \ No newline at end of file