add: separators

This commit is contained in:
ramollia
2025-10-04 16:24:27 +02:00
parent af0db24b0a
commit ba4173f029
3 changed files with 36 additions and 2 deletions

View File

@@ -13,7 +13,7 @@
-fx-background-radius: 5;
}
.text, .button, .toggle, .input {
.text, .button, .toggle {
-fx-padding: 10;
-fx-fill: white;
@@ -37,6 +37,21 @@
-fx-effect: dropshadow(gaussian, #007fff, 10, 0.5, 0, 0);
}
.input {
-fx-padding: 10;
-fx-fill: white;
-fx-text-fill: white;
-fx-font-family: "Segoe UI", sans-serif;
-fx-font-weight: bold;
-fx-font-size: 20px;
-fx-background-color: transparent;
-fx-border-color: #7f7f7f;
}
.input:focused {
-fx-background-color: linear-gradient(to bottom right, orange, indigo), #1d1d1d;
-fx-background-insets: 0, 2;
@@ -58,4 +73,8 @@
.slider .thumb {
-fx-background-color: linear-gradient(to bottom right, orange, indigo), #1d1d1d;
}
.separator {
-fx-background-color: linear-gradient(to bottom right, orange, indigo), #1d1d1d;
}