37 lines
621 B
CSS
37 lines
621 B
CSS
button {
|
|
background-color: #424a42;
|
|
color: #c0c0c0;
|
|
border: 1px solid #0b110b;
|
|
border-radius: 8px;
|
|
padding: 2px 4px;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #0b110b;
|
|
}
|
|
|
|
button:active,
|
|
button:checked {
|
|
background-color: #1c7a44;
|
|
color: #080c08;
|
|
}
|
|
|
|
button:disabled {
|
|
background-color: #080c08;
|
|
color: #424a42;
|
|
border-color: #424a42;
|
|
}
|
|
|
|
button.suggested-action {
|
|
background-color: #1c7a44;
|
|
color: #080c08;
|
|
border-color: #1c7a44;
|
|
}
|
|
|
|
button.destructive-action {
|
|
background-color: #dc143c;
|
|
color: #080c08;
|
|
border-color: #dc143c;
|
|
}
|