Files
Projet-UDP/ChatApp/app/src/main/resources/server/serverStyle.css
2025-03-05 12:55:35 +01:00

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;
}