Skip to content

Commit

Permalink
Merge pull request SUGAM-ARORA#549 from Ojas-Arora/me
Browse files Browse the repository at this point in the history
Enhancing the Design of The 'Help Us Improve' Page
  • Loading branch information
SUGAM-ARORA authored Jul 24, 2024
2 parents 40d0c70 + 24c38fb commit 0cdff8b
Showing 1 changed file with 70 additions and 24 deletions.
94 changes: 70 additions & 24 deletions src/Components/feedback/feedback.css
Original file line number Diff line number Diff line change
@@ -1,44 +1,53 @@
.headingFeedback {
font-size: 80px;
font-weight: 600;
font-family: Arial, Helvetica, sans-serif; /* Update font family */
max-width: 1000px;
width: 85vw;
margin: auto;
text-align: center;
margin-bottom: 80px;
color: #ff21bc;
color: white;
margin-top: 40px;
font-weight: bold;
font-weight: bold; /* Make text bold */
animation: fadeIn 1.5s ease-in-out forwards;
}

.formFeedback {
width: 65vw;
height: auto;
outline: 5px solid #ff21bc;
font-family: Arial, Helvetica, sans-serif; /* Update font family */
outline: 3px solid white;
transition: 0.2s box-shadow ease-in-out;
margin: auto;
box-shadow: 0px 0px 11px 4px #ff21bc;
box-shadow: 7px 7px 32px 20px #6052ff;
margin-bottom: 100px;
padding: 20px;
border-radius: 50px;
font-size: 22px;
}

.formforFeedback {
display: flex;
flex-direction: column;
align-items: center; /* Center the form elements */
gap: 30px;
font-family: Arial, Helvetica, sans-serif; /* Update font family */
}

.componentsFormFeedback {
width: 90%;
gap: 50px;
display: flex;
flex-direction: column;
align-items: center; /* Center the labels */
text-align: center; /* Center-align text */
gap: 10px;
font-family: Arial, Helvetica, sans-serif; /* Update font family */
}

.componentsFormFeedback label {
font-size: large;
font-weight: bold;
}

.formforFeedback {
display: flex;
flex-direction: column;
gap: 30px;
font-weight: bold; /* Make text bold */
}

.star-rating {
Expand All @@ -60,45 +69,82 @@
}

.star-rating input[type="radio"]:checked~label {
color: #ff5c5c;
color: #ff21bc;
}

.star-rating label:hover,
.star-rating label:hover~label {
color: #ff5c5c;
color: #ff21bc;
}
#star5,#star4,#star3,#star2,#star1{

#star5, #star4, #star3, #star2, #star1 {
font-size: 120px;
}

#issue{
#issue {
background-color: #201d41;
font-weight: 600;
font-size: 18px;
height: 35px;
text-align: center;
border: 1px solid #ccc;
border-bottom: 4px solid aliceblue;
}

#comments{
#comments {
min-height: 200px;
font-size: 18px;
font-size: 22px;
border: 1px solid #ccc;
border-bottom: 4px solid aliceblue;
}

#email {
border: 1px solid #ccc;
border-bottom: 4px solid aliceblue;
}

#nameFeedback {
border: 1px solid #ccc;
border-bottom: 4px solid aliceblue;
}

button {
background-color: #ff21bc; /* Set button color */
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
font-size: 22px; /* Match the form font size */
font-weight: bold; /* Make the button text bold */
font-family: Arial, Helvetica, sans-serif; /* Update font family */
}

button:hover {
background-color: #201d41; /* Change hover color */
}
@media only screen and (max-width:900px){
.formFeedback{

@media only screen and (max-width: 900px) {
.formFeedback {
width: 80vw;
}
}
@media only screen and (max-width:750px) {

@media only screen and (max-width: 750px) {
.headingFeedback {
font-size: 60px;
}
}
@media only screen and (max-width:550px) {

@media only screen and (max-width: 550px) {
.headingFeedback {
font-size: 50px;
}
}
@media only screen and (max-width:450px) {

@media only screen and (max-width: 450px) {
.headingFeedback {
font-size: 40px;
}
}
}

0 comments on commit 0cdff8b

Please sign in to comment.