Refactor the option-view.css

This commit is contained in:
Alex Aleksej Rechtin 2022-02-07 11:48:53 +01:00
parent f3a7ce21cc
commit de4811ee12

View File

@ -1,25 +1,33 @@
/* Marco Kühn */
* {
-fx-bright-background-color: #3E415F;
-fx-brighter-background-color: #8D99AE;
-fx-brightest-background-color: #ffffff;
-fx-bright-border-color: #B0B0B0;
-fx-brighter-text-color: #ffffff;
}
GridPane{
-fx-background-color: #3E415F;
-fx-background-color: -fx-bright-background-color;
-fx-padding: 20px;
-fx-font-size: 20px;
-fx-font-family: Segoe UI;
-fx-border-insets: 1;
-fx-border-color: #B0B0B0;
-fx-border-color: -fx-bright-border-color;
-fx-border-style: solid;
-fx-border-width: 2;
-fx-effect: dropshadow(three-pass-box, rgba(100, 100, 100, 1), 24, 0.5, 0, 0);
}
Label{
-fx-text-fill: white;
-fx-text-fill: -fx-brighter-text-color;
-fx-max-width: 200px;
-fx-min-width: 200px;
}
.mainLabel{
-fx-background-color: #8D99AE;
-fx-background-color: -fx-brighter-background-color;
-fx-padding: 10px;
-fx-max-width: 200px;
-fx-min-width: 200px;
@ -29,11 +37,11 @@ Label{
.mainButton{
-fx-font-weight: bold;
-fx-background-color: white;
-fx-background-color: -fx-brightest-background-color;
}
JFXButton{
-fx-background-color: white;
-fx-background-color: -fx-brightest-background-color;
}
#labelError{
@ -48,7 +56,7 @@ JFXButton{
}
.comboBox{
-fx-background-color: white;
-fx-background-color: -fx-brightest-background-color;
-fx-max-width: 200px;
-fx-min-width: 200px;
}