Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feedback Form Enhancement for Visual Appeal #755

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -164,16 +164,25 @@ label {
input,
textarea {
width: 100%;
/* Adjust width for better alignment */
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
resize: vertical;
color: #333; /* Dark grey text color */
background-color: #f9f9f9; /* Light grey background */
transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

textarea {
height: 100px;
/* Adjust height for textarea */
input::placeholder,
textarea::placeholder {
color: #bababa; /* Placeholder text in a lighter grey */
}

input:hover,
textarea:hover {
background-color: #878787 !important; /* Light grey background on hover */
color: #000000 !important;
border-color: #999 !important; /* Slightly darker border on hover */
}

button[type="submit"] {
Expand All @@ -191,6 +200,7 @@ button[type="submit"]:hover {
transform: scale(1.1);
}


#progressBarContainer {
position: fixed;
top: 0;
Expand Down
Loading