-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge https://github.com/gauravsingh1281/Rentalog.in--Frontend into n…
…ew-FAQ-section
- Loading branch information
Showing
8 changed files
with
515 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
/* Container for feedback form */ | ||
.feedback-form-container { | ||
background-color: #ccdada; | ||
border: 3px solid rgb(164, 2, 19); | ||
border-radius: 10px; | ||
padding: 50px; | ||
width: 600px; /* Slightly increased width for a spacious feel */ | ||
margin: 50px auto; | ||
color: rgb(10, 10, 10); | ||
text-align: center; | ||
box-shadow: 0 5px 15px rgba(6, 4, 4, 0.4); | ||
margin-top: 130px; | ||
} | ||
|
||
/* Form headings */ | ||
.title { | ||
margin-bottom: 30px; /* Increased spacing below heading */ | ||
font-size: 48px; /* Increased font size for the heading */ | ||
color: #d20808; | ||
} | ||
|
||
/* Input fields styling */ | ||
.name, | ||
.email, | ||
.message { | ||
margin-top: 30px; /* Increased top margin for space between inputs */ | ||
width: 100%; | ||
padding: 10px; /* Increased padding for larger inputs */ | ||
background-color: #faf5f5; | ||
border: 2px solid rgb(9, 9, 8); | ||
border-radius: 5px; | ||
color: rgb(21, 20, 20); | ||
font-size: 18px; /* Slightly increased font size for input text */ | ||
box-sizing: border-box; | ||
} | ||
|
||
textarea { | ||
height: 100px; /* Increased height of the textarea */ | ||
resize: none; | ||
} | ||
|
||
/* Star rating styling */ | ||
.stars { | ||
margin-top: 30px; /* Ensure consistent spacing */ | ||
display: flex; | ||
justify-content: center; | ||
margin: 10px 0; | ||
gap: 20px; | ||
} | ||
|
||
.star, | ||
.star-filled { | ||
font-size: 35px; /* Slightly larger stars for better visibility */ | ||
cursor: pointer; | ||
transition: color 0.3s; | ||
} | ||
|
||
.star { | ||
color: rgb(108, 106, 106); | ||
} | ||
|
||
.star-filled { | ||
color: gold; | ||
} | ||
|
||
/* Submit button */ | ||
.post-button { | ||
margin-top: 40px; /* More space between the last input and button */ | ||
background-color: #000504; | ||
color: #fdfafa; | ||
border: 2px solid rgb(205, 6, 6); | ||
padding: 15px 30px; /* Bigger button for easier clicking */ | ||
border-radius: 5px; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
.post-button:hover { | ||
background-color: #cbd3f5; | ||
border: 2px solid rgb(8, 7, 7); | ||
color: black; | ||
} | ||
|
||
/* Pop-up overlay styling */ | ||
.popup-overlay { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background-color: rgba(0, 0, 0, 0.6); | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
.popup { | ||
background-color: #faf9fc; | ||
padding: 28px; | ||
border-radius: 10px; | ||
text-align: center; | ||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7); | ||
color: black; | ||
border: 1px solid rgb(4, 4, 4); | ||
} | ||
|
||
.popup h3 { | ||
margin-bottom: 10px; | ||
color: #0d0d0d; | ||
} | ||
|
||
.popup p { | ||
margin-bottom: 20px; | ||
color: #0f0e0e; | ||
} | ||
|
||
.close-popup-button { | ||
background-color: #0a0370; | ||
color: #fdfbfb; | ||
border: 2px solid rgb(245, 242, 242); | ||
padding: 10px 20px; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
} | ||
|
||
/* .close-popup-button:hover { | ||
background-color: #e3e4e5; | ||
} */ |
Oops, something went wrong.