13 lines
201 B
CSS
13 lines
201 B
CSS
Button {
|
|
border-radius: 15px;
|
|
background-color: rgb(136, 0, 170);
|
|
}
|
|
|
|
Button:hover {
|
|
background-color: rgb(166, 0, 200);
|
|
}
|
|
|
|
Button:pressed:!hover {
|
|
background-color: rgb(136, 0, 170);
|
|
}
|