Skip to content

Commit

Permalink
Merge pull request #389 from Sneha123-zudo/rate
Browse files Browse the repository at this point in the history
Improved the rate us page
  • Loading branch information
Priyanshi662 authored Feb 21, 2024
2 parents 180ec14 + 648ad5c commit 5e090aa
Show file tree
Hide file tree
Showing 2 changed files with 137 additions and 7 deletions.
61 changes: 57 additions & 4 deletions rate/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,24 @@
<title>Emoji Stars Rating</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<img src="./emojis/Screenshot from 2024-02-03 15-17-44.png" alt="Your Image" class="above-wrapper-image">
<div class="wrapper">
<div class="Header" data-aos="fade-down-right" data-aos="slide-right">
<div class="left">
<h1>Fun Fusion</h1>
</div>
<div class="right">
<a href="index.html" class="rate-us-btn"></i>HOME</a>
<a href="faq/faq.html" class="rate-us-btn"></i>FAQ</a>
<a href="./login/index.html" class="rate-us-btn"> LOGIN</a>
<a href="./rate/index.html" class="rate-us-btn">&#9733; RATE US</a>
<a href="contributor.html" class="rate-us-btn">CONTRIBUTORS</a>
<a href="contact.html" class="rate-us-btn">CONTACT</a>
</div>
</div>
<!-- <img src="./emojis/Screenshot from 2024-02-03 15-17-44.png" alt="Your Image" class="above-wrapper-image"> -->
<div class="wrapper" data-aos="zoom-in-up">
<input type="radio" name="rate" id="star-1">
<input type="radio" name="rate" id="star-2">
<input type="radio" name="rate" id="star-3">
Expand Down Expand Up @@ -48,8 +62,47 @@

</div>
</div>


<footer data-aos="slide-left">
<div class="footers">
<div class="summary">
<h1>Fun Fusion</h1>
<div class="what">
<p>Fun Fusion is a hub of web applications dedicated to providing entertainment and interactive
experiences. Explore our collection of games and creative tools designed to bring joy and
excitement
to your online adventures.</p>
</div>
</div>
<div class="">
<div class="contact">
<h1>Contact Us</h1>
<p>Have questions or suggestions? Feel free to reach out to our team. We'd love to hear from you!
</p>
<div class="">
Email: [email protected] <br>
Phone: [Your Phone Number]
</div>
</div>
<div class="social">
<a href="https://github.com/Priyanshi662/FunFusion" target="_blank"><i
class="bi bi-github hi"></i></a>
<a href="#"><i class="bi bi-twitter hi"></i></a>
<a href="#"><i class="bi bi-linkedin hi"></i></a>
<a href="#"><i class="bi bi-facebook hi"></i></a>
</div>
</div>
</div>
<div class="copy">
<p>&copy; 2024 Fun Fusion. All rights reserved.</p>
<p>Privacy Policy | Terms of Use</p>
</div>
</footer>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 2000,
});
</script>

</body>
</html>
83 changes: 80 additions & 3 deletions rate/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -256,4 +256,81 @@ form header{
max-width: 70%; /* Adjust this value based on your design */
}
}

.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;
}

0 comments on commit 5e090aa

Please sign in to comment.