Skip to content

Commit

Permalink
Feedback form hover and color appeal
Browse files Browse the repository at this point in the history
  • Loading branch information
abhivyakti2 committed Nov 7, 2024
1 parent 3cf72c4 commit f3165f3
Showing 1 changed file with 14 additions and 4 deletions.
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

0 comments on commit f3165f3

Please sign in to comment.