lkarch.org/assets/styles/button.css
2022-12-09 14:05:41 -05:00

22 lines
399 B
CSS

.button {
padding: 15px 25px;
font-size: 24px;
text-align: center;
cursor: pointer;
outline: none;
color: #fff;
background-color: #3c3c3c;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
}
.button:hover {
background-color: #000000
}
.button:active {
background-color: #000000;
box-shadow: 0 5px #666;
transform: translateY(4px);
}