22 lines
399 B
CSS
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);
|
|
} |