44 lines
593 B
CSS
44 lines
593 B
CSS
.button {
|
|
-fx-cursor: hand;
|
|
}
|
|
|
|
.text {
|
|
-fx-font-family: Helvetica;
|
|
-fx-font-smoothing-type: gray;
|
|
}
|
|
|
|
.header {
|
|
-fx-background-color: steelblue;
|
|
}
|
|
|
|
.title {
|
|
-fx-font-size: 32px;
|
|
-fx-text-fill: white;
|
|
}
|
|
|
|
.subtitle {
|
|
-fx-font-size: 24px;
|
|
-fx-text-fill: lightgray;
|
|
}
|
|
|
|
.gamemode {
|
|
-fx-background-radius: 10px;
|
|
-fx-border-color: black;
|
|
-fx-border-radius: 10px;
|
|
-fx-font-size: 24px;
|
|
}
|
|
|
|
.gamemode.practice {
|
|
-fx-text-fill: forestgreen;
|
|
}
|
|
|
|
.gamemode.multiplayer {
|
|
-fx-text-fill: steelblue;
|
|
}
|
|
|
|
.navigation {
|
|
-fx-background-color: steelblue;
|
|
-fx-font-size: 12px;
|
|
-fx-text-fill: white;
|
|
}
|