23 lines
383 B
CSS
23 lines
383 B
CSS
.root {
|
|
-fx-font-family: 'Arial';
|
|
}
|
|
|
|
.button {
|
|
-fx-background-color: #000000;
|
|
-fx-text-fill: #FFFFFF;
|
|
-fx-font-size: 14px;
|
|
-fx-font-weight: bold;
|
|
-fx-pref-height: 40px;
|
|
-fx-pref-width: 200px;
|
|
}
|
|
|
|
.label {
|
|
-fx-font-size: 14px;
|
|
-fx-font-weight: bold;
|
|
}
|
|
|
|
.text-field, .date-picker, .combo-box {
|
|
-fx-pref-height: 30px;
|
|
-fx-pref-width: 250px;
|
|
}
|