2024-01-05 17:25:54 +00:00
|
|
|
/*
|
|
|
|
This stylesheet defines the base style for the application, and many utility
|
|
|
|
classes to use for common style variants. Prefer to use the styles defined here
|
|
|
|
rather than with your own CSS.
|
|
|
|
*/
|
|
|
|
|
2024-01-05 15:59:44 +00:00
|
|
|
.root {
|
|
|
|
-fx-font-family: "Roboto", sans-serif;
|
|
|
|
-fx-font-size: 14px;
|
|
|
|
-fx-text-fill: rgb(26, 26, 26);
|
|
|
|
}
|
|
|
|
|
2023-12-28 16:32:20 +00:00
|
|
|
.mono-font {
|
2024-01-05 15:59:44 +00:00
|
|
|
-fx-font-family: "JetBrains Mono", monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
.large-font {
|
|
|
|
-fx-font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.small-font {
|
|
|
|
-fx-font-size: 10px;
|
2023-12-28 16:32:20 +00:00
|
|
|
}
|
|
|
|
|
2023-12-29 02:31:42 +00:00
|
|
|
.error-text {
|
|
|
|
-fx-font-size: small;
|
|
|
|
-fx-text-fill: red;
|
|
|
|
}
|
|
|
|
|
2023-12-28 16:32:20 +00:00
|
|
|
.bold-text {
|
|
|
|
-fx-font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2024-01-05 15:59:44 +00:00
|
|
|
.italic-text {
|
|
|
|
-fx-font-style: italic;
|
2023-12-28 16:32:20 +00:00
|
|
|
}
|
|
|
|
|
2023-12-29 02:31:42 +00:00
|
|
|
.large-text {
|
|
|
|
-fx-font-size: large;
|
2023-12-28 16:32:20 +00:00
|
|
|
}
|
|
|
|
|
2023-12-29 02:31:42 +00:00
|
|
|
.std-padding {
|
2023-12-28 16:32:20 +00:00
|
|
|
-fx-padding: 3px;
|
|
|
|
}
|
2024-01-05 15:59:44 +00:00
|
|
|
.padding-extra {
|
|
|
|
-fx-padding: 6px;
|
|
|
|
}
|
|
|
|
.padding-extra-1 {
|
|
|
|
-fx-padding: 10px;
|
|
|
|
}
|
2023-12-28 16:32:20 +00:00
|
|
|
|
2023-12-29 02:31:42 +00:00
|
|
|
.std-spacing {
|
2023-12-28 16:32:20 +00:00
|
|
|
-fx-spacing: 3px;
|
|
|
|
}
|
2023-12-29 17:06:43 +00:00
|
|
|
.spacing-extra {
|
|
|
|
-fx-spacing: 6px;
|
|
|
|
}
|
2024-01-05 15:59:44 +00:00
|
|
|
.spacing-extra-1 {
|
|
|
|
-fx-spacing: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hand-cursor {
|
|
|
|
-fx-cursor: hand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Standard "tile" styling. */
|
|
|
|
.tile {
|
|
|
|
-fx-border-color: lightgray;
|
|
|
|
-fx-border-width: 2px;
|
|
|
|
-fx-border-style: solid;
|
|
|
|
-fx-border-radius: 5px;
|
|
|
|
-fx-padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tile-border-selected {
|
|
|
|
-fx-border-color: darkgray;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Standard colors */
|
|
|
|
.normal-color-text-fill {
|
|
|
|
-fx-text-fill: rgb(26, 26, 26);
|
|
|
|
}
|
|
|
|
|
|
|
|
.secondary-color-fill {
|
|
|
|
-fx-fill: rgb(99, 99, 99);
|
|
|
|
}
|
|
|
|
|
|
|
|
.negative-color-text-fill {
|
|
|
|
-fx-text-fill: rgb(247, 37, 69);
|
|
|
|
}
|
|
|
|
.negative-color-fill {
|
|
|
|
-fx-fill: rgb(247, 37, 69);
|
|
|
|
}
|
|
|
|
|
|
|
|
.positive-color-text-fill {
|
|
|
|
-fx-text-fill: rgb(43, 196, 77);
|
|
|
|
}
|
|
|
|
.positive-color-fill {
|
|
|
|
-fx-fill: rgb(43, 196, 77);
|
|
|
|
}
|
2023-12-29 17:06:43 +00:00
|
|
|
|
|
|
|
/* DEBUG BORDERS */
|
|
|
|
.debug-border-1 {
|
|
|
|
-fx-border-color: red;
|
|
|
|
}
|
|
|
|
|
|
|
|
.debug-border-2 {
|
|
|
|
-fx-border-color: lime;
|
|
|
|
}
|
|
|
|
|
|
|
|
.debug-border-3 {
|
|
|
|
-fx-border-color: blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
.debug-border-4 {
|
|
|
|
-fx-border-color: magenta;
|
|
|
|
}
|