mirror of
https://github.com/octopusYan/alist-gui.git
synced 2025-03-13 22:08:58 +08:00
21 lines
428 B
SCSS
21 lines
428 B
SCSS
/**************************************************
|
|
* Root
|
|
**************************************************/
|
|
.root {
|
|
-fx-font-size: 15;
|
|
-fx-font-weight: bolder;
|
|
}
|
|
|
|
.root-pane {
|
|
|
|
-fx-background-radius: 15;
|
|
-fx-border-radius: 15;
|
|
|
|
// 窗口阴影
|
|
//-fx-background-color: rgba(255, 255, 255, 1);
|
|
-fx-effect: dropshadow(gaussian, rgba(0, 0, 0, 0.3), 15, 0, 0, 0);
|
|
-fx-background-insets: 20;
|
|
-fx-padding: 20;
|
|
}
|
|
|