18 lines
291 B
CSS
18 lines
291 B
CSS
|
#btCreateFood {
|
||
|
-fx-background-color: lightblue;
|
||
|
-fx-text-fill: white;
|
||
|
}
|
||
|
|
||
|
#btCreateFood:hover{
|
||
|
-fx-underline: true;
|
||
|
-fx-text-fill: black;
|
||
|
}
|
||
|
|
||
|
#btCancelFood{
|
||
|
-fx-background-color: transparent;
|
||
|
-fx-underline: true;
|
||
|
}
|
||
|
|
||
|
#btCancelFood:hover{
|
||
|
-fx-text-fill: lightblue;
|
||
|
}
|