Skip to content

Commit

Permalink
Merge pull request YadavAkhileshh#597 from atmajaa/main
Browse files Browse the repository at this point in the history
Differenciate btn from options and improve the visibility
  • Loading branch information
YadavAkhileshh authored Oct 31, 2024
2 parents ccb532b + ccdb431 commit 22c3273
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,28 +83,29 @@
.poll-button.selected {

background-color: #2196F3; /* Blue for selected */
color:white /*Makes the text clearly visible */

}

/* New Vote Button Styles */
.vote-button {
#voteButton, .vote-button {

display: block; /* Change to block for full-width */
margin: 5px 0; /* Add vertical margin */
padding: 10px 15px;
border: none;
border-radius: 5px;
background-color: #f44336; /* Red */
background-color: #1d5459;
color: white;
cursor: pointer;
transition: background-color 0.3s;
width: 100%; /* Full width */

}

.vote-button:hover {

background-color: #d32f2f; /* Darker red */
#voteButton:hover,.vote-button:hover {
color: #143f43;
background-color: #7ec1c5;

}

Expand Down

0 comments on commit 22c3273

Please sign in to comment.