2024-09-05 01:46:48 +08:00
|
|
|
/**************************************************
|
|
|
|
* Main View
|
|
|
|
**************************************************/
|
|
|
|
#homeLabel {
|
|
|
|
-fx-font-size: 35;
|
|
|
|
-fx-font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#statusLabel {
|
|
|
|
-fx-padding: 2 5 2 5;
|
|
|
|
-fx-text-fill: white;
|
|
|
|
-fx-font-size: 15;
|
2024-09-10 03:09:09 +08:00
|
|
|
-fx-background-color: -color-success-3;
|
2024-09-05 01:46:48 +08:00
|
|
|
-fx-background-radius: 10;
|
|
|
|
-fx-text-alignment: CENTER;
|
|
|
|
-fx-border-radius: 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
.control-menu {
|
|
|
|
-fx-font-size: 15;
|
|
|
|
-fx-background-radius: 15;
|
|
|
|
-fx-padding: 10 40 10 40;
|
|
|
|
-fx-border-radius: 15;
|
|
|
|
-fx-border-width: 2;
|
2024-09-10 03:09:09 +08:00
|
|
|
-fx-opacity: 1;
|
2024-09-05 01:46:48 +08:00
|
|
|
|
|
|
|
&:hover {
|
2024-09-10 03:09:09 +08:00
|
|
|
-fx-opacity: 0.9;
|
2024-09-05 01:46:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#startButton {
|
2024-09-10 03:09:09 +08:00
|
|
|
-fx-background-color: -color-danger-emphasis;
|
|
|
|
-fx-border-color: -color-danger-emphasis;
|
2024-09-05 01:46:48 +08:00
|
|
|
-fx-text-fill: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
#passwordButton {
|
2024-09-10 03:09:09 +08:00
|
|
|
-fx-background-color: -color-success-3;
|
|
|
|
-fx-border-color: -color-success-3;
|
2024-09-05 01:46:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#restartButton {
|
2024-09-10 03:09:09 +08:00
|
|
|
-fx-background-color: linear-gradient(to bottom right, -color-accent-3, -color-chart-6);
|
|
|
|
-fx-border-color: linear-gradient(to bottom right, -color-accent-3, -color-chart-6);
|
2024-09-05 01:46:48 +08:00
|
|
|
-fx-text-fill: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
#moreButton {
|
|
|
|
-fx-background-color: transparent;
|
2024-09-10 03:09:09 +08:00
|
|
|
-fx-text-fill: -color-chart-6;
|
|
|
|
-fx-border-color: -color-chart-6;
|
2024-09-05 01:46:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#logArea {
|
|
|
|
-fx-font-family: "Lucida Console";
|
|
|
|
-fx-font-size: 20;
|
|
|
|
-fx-background-radius: 15;
|
|
|
|
-fx-border-radius: 15;
|
|
|
|
-fx-background-insets: 0;
|
|
|
|
|
|
|
|
.content {
|
|
|
|
-fx-padding: 0 15 0 15;
|
|
|
|
-fx-background-radius: 15;
|
|
|
|
-fx-border-radius: 15;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|