change things

This commit is contained in:
ramollia
2025-10-04 15:16:07 +02:00
parent 87a5b301c7
commit b3feab7cb3
7 changed files with 116 additions and 33 deletions

View File

@@ -3,37 +3,43 @@
}
.vertical_container, .horizontal_container {
-fx-background-color: linear-gradient(to bottom right, orange, indigo), #1d1d1d;
-fx-background-insets: 0, 2;
-fx-background-radius: 8;
-fx-padding: 10;
-fx-padding: 10;
-fx-alignment: center;
-fx-text-alignment: center;
-fx-background-color: linear-gradient(to bottom right, orange, indigo), #1d1d1d;
-fx-background-insets: 0, 2;
-fx-background-radius: 5;
}
.text {
.text, .button, .toggle, .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: 24px;
}
.button, .toggle {
-fx-padding: 10;
-fx-font-size: 20px;
-fx-background-color: transparent;
-fx-border-color: transparent;
-fx-transition: all 0.3s ease-in-out;
}
.button:hover, .toggle:hover {
-fx-cursor: hand;
-fx-scale-x: 1.1;
-fx-scale-y: 1.1;
-fx-scale-x: 1.1;
-fx-scale-y: 1.1;
-fx-effect: dropshadow(gaussian, #007fff, 10, 0.5, 0, 0);
-fx-effect: dropshadow(gaussian, #007fff, 10, 0.5, 0, 0);
}
.input:focused {
-fx-border-color: transparent;
-fx-background-color: linear-gradient(to bottom right, orange, indigo), #1d1d1d;
-fx-background-insets: 0, 2;
-fx-background-radius: 8;
}