2024-09-05 01:46:48 +08:00
|
|
|
/**************************************************
|
|
|
|
* Root
|
|
|
|
**************************************************/
|
|
|
|
|
2024-09-08 01:36:17 +08:00
|
|
|
.root-pane {
|
2024-09-05 01:46:48 +08:00
|
|
|
-fx-font-size: 15;
|
|
|
|
-fx-font-weight: normal;
|
|
|
|
|
|
|
|
-fx-background-radius: 15;
|
|
|
|
-fx-border-radius: 15;
|
2024-09-08 01:36:17 +08:00
|
|
|
|
|
|
|
// 窗口阴影
|
2024-09-10 03:09:09 +08:00
|
|
|
//-fx-background-color: rgba(255, 255, 255, 1);
|
2024-09-08 01:36:17 +08:00
|
|
|
-fx-effect: dropshadow(gaussian, rgba(0, 0, 0, 0.3), 15, 0, 0, 0);
|
|
|
|
-fx-background-insets: 20;
|
|
|
|
-fx-padding: 20;
|
2024-09-05 01:46:48 +08:00
|
|
|
}
|
|
|
|
|