27 lines
546 B
CSS
27 lines
546 B
CSS
.root{
|
|
-fx-background-color: darkblue;
|
|
-fx-text-fill: blue;
|
|
-fx-font-weight: bold;
|
|
}
|
|
|
|
.address {
|
|
-fx-text-fill: white;
|
|
-fx-font-size: 25px;
|
|
}
|
|
|
|
.toggle-button {
|
|
-fx-background-color: darkblue;
|
|
-fx-text-fill: white;
|
|
-fx-font-size: 20px;
|
|
-fx-padding: 10px;
|
|
-fx-border-width: 2px;
|
|
-fx-border-color: white;
|
|
-fx-cursor: hand;
|
|
-fx-border-radius: 5;
|
|
}
|
|
|
|
.toggle-button:hover {
|
|
-fx-background-color: white;
|
|
-fx-text-fill: darkblue;
|
|
transition: -fx-background-color 0.3s, -fx-text-fill 0.3s;
|
|
} |