35 lines
669 B
CSS
Raw Normal View History

2021-11-25 11:34:33 +01:00
GridPane{
-fx-background-color: #3E415F;
2021-11-25 15:04:40 +01:00
-fx-padding: 20px;
-fx-font-size: 20px;
-fx-font-family: Segoe UI;
2021-11-25 21:12:45 +01:00
-fx-border-insets: 1;
2021-11-26 13:30:51 +01:00
-fx-border-color: #B0B0B0;
2021-11-25 21:12:45 +01:00
-fx-border-style: solid;
-fx-border-width: 2;
-fx-effect: dropshadow(three-pass-box, rgba(100, 100, 100, 1), 24, 0.5, 0, 0);
2021-11-25 15:04:40 +01:00
}
Label{
-fx-text-fill: white;
-fx-max-width: 150px;
-fx-min-width: 150px;
}
.mainLabel{
-fx-background-color: #8D99AE;
-fx-padding: 10px;
-fx-max-width: 200px;
-fx-min-width: 200px;
-fx-font-weight: bold;
-fx-alignment: center;
}
.inputField{
-fx-padding: 10px;
2021-11-25 21:12:45 +01:00
}
.mainButton{
-fx-font-weight: bold;
2021-11-25 11:34:33 +01:00
}