8,960
edits
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
.butting-button { | .butting-button { | ||
display: inline-block; /* Make sure the link is displayed as a button */ | |||
background-color: red; | background-color: red; | ||
color: white; | color: white; | ||
| Line 8: | Line 9: | ||
cursor: pointer; | cursor: pointer; | ||
border-radius: 5px; | border-radius: 5px; | ||
text-decoration: none; /* Remove underline from the link */ | |||
transition: background-color 0.3s ease; /* Add a smooth transition for hover effect */ | |||
} | } | ||
.butting-button:hover { | |||
background-color: darkred; /* Change color on hover for better UX */ | |||
} | |||
.comment-item { | .comment-item { | ||