13 lines
211 B
CSS
13 lines
211 B
CSS
.button {
|
|
-fx-background-color: #005e07;
|
|
-fx-text-fill: #c4eec9;
|
|
-fx-font-weight: bold;
|
|
}
|
|
|
|
.button:hover {
|
|
-fx-background-color: #11911b;
|
|
}
|
|
|
|
.button:pressed {
|
|
-fx-background-color: #1a8c23;
|
|
} |