53 lines
1002 B
CSS
53 lines
1002 B
CSS
* {
|
|
-fx-base-background-color: #2B2D42;
|
|
-fx-base1-background-color: #525E74;
|
|
|
|
-fx-main-border-color: #B0B0B0;
|
|
-fx-main-text-color: #ffffff;
|
|
}
|
|
|
|
GridPane{
|
|
-fx-background-color: #3E415F;
|
|
-fx-padding: 20px;
|
|
-fx-font-size: 20px;
|
|
-fx-font-family: Segoe UI;
|
|
|
|
-fx-border-insets: 1;
|
|
-fx-border-color: #B0B0B0;
|
|
-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-max-width: 150px;
|
|
-fx-min-width: 150px;
|
|
}
|
|
|
|
.errorLbl{
|
|
-fx-font-weight: bold;
|
|
-fx-max-width: 200px;
|
|
-fx-text-fill: #ff5555;
|
|
-fx-padding: 16px;
|
|
-fx-min-height: 140px;
|
|
-fx-max-height: 400px;
|
|
-fx-wrap-text: true;
|
|
-fx-font-size: 16px;
|
|
}
|
|
|
|
.userField{
|
|
-fx-background-color: white;
|
|
}
|
|
|
|
.passField{
|
|
-fx-background-color: white;
|
|
}
|
|
|
|
.quitBtn{
|
|
-fx-background-color: white;
|
|
}
|
|
|
|
.loginBtn{
|
|
-fx-background-color: white;
|
|
} |