27 lines
306 B
CSS
27 lines
306 B
CSS
#window {
|
|
-fx-background-color: #131320;
|
|
}
|
|
|
|
/* Sidepanel */
|
|
|
|
#sidepanel {
|
|
-fx-background-color: #303050;
|
|
}
|
|
|
|
#logo {
|
|
-fx-background-image: "logo.png";
|
|
}
|
|
|
|
#btn {
|
|
-fx-alignment: center;
|
|
}
|
|
|
|
#btn > Button {
|
|
-fx-cursor: hand;
|
|
-fx-padding: 5;
|
|
-fx-width: 100;
|
|
}
|
|
|
|
#btn_launch {
|
|
-fx-text-alignment: center;
|
|
} |