14 lines
237 B
CSS
14 lines
237 B
CSS
![]() |
.button button {
|
||
|
color: black;
|
||
|
padding: 10px 20px;
|
||
|
cursor: pointer;
|
||
|
width: 30%;
|
||
|
display: block;
|
||
|
border-radius: 10px;
|
||
|
text-align: center;
|
||
|
margin:0 auto;
|
||
|
}
|
||
|
.button button:hover {
|
||
|
background-color: #60a9d0;
|
||
|
}
|