Icon + loader for client

This commit is contained in:
Clément
2025-03-05 12:55:35 +01:00
parent a83104d322
commit 6d228aee55
12 changed files with 87 additions and 19 deletions

View File

@@ -0,0 +1,27 @@
.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;
}