/* Answer to: "nice button css" */
/*
You find find 6 Simple Nice looking buttons here:
https://www.fabriziovanmarciano.com/button-styles/
However, if you don't want them you can check out 52 beautiful
buttons here:
https://freshdesignweb.com/css3-buttons/
Those aren't good enough? Well... you have to be able to find a
nice looking button here, over 120 buttons waiting to be used
for free over here:
https://freefrontend.com/css-buttons/
None of them fits you website style?? Okay, your best option is
to make your one! Learn how to make your own using the tutorial
made by W3Schools, here's a link:
https://www.w3schools.com/css/css3_buttons.asp
*//* Answer to: "button hover css" */
/*
Use the :hover selector to change the style of a button when you
move the mouse over it.
*/
.button {
background-color: #f44336;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
transition-duration: 0.4s;
}
.button:hover {
background-color: #4CAF50; /* Green */
color: white;
}<div class="placeholder-box">
<button type="button"> Button Text Here </button>
<p>Nunc condimentum mauris elit</p>
<ul>
<li>Duis quis eros felis</li>
<li>Nulla facilisi</li>
</ul>
</div>