JavaFX/css/menu.css

48 lines
713 B
CSS
Raw Normal View History

2017-11-14 08:11:53 +00:00
@import "./constants.css";
2017-11-14 07:22:26 +00:00
#header_icon{
-fx-min-width: 660;
-fx-pref-width: 660;
2017-11-14 07:22:26 +00:00
-fx-max-width: 660;
2017-11-14 08:11:53 +00:00
-fx-min-height: -v-header-height;
-fx-max-height: -v-header-height;
-fx-pref-height: -v-header-height;
2017-11-14 07:22:26 +00:00
-fx-background-color: #3240a3;
-fx-border-width: 0 0 1 0;
-fx-border-color: #2a378a;
}
2017-11-14 07:22:26 +00:00
#menu_container{
2017-11-14 08:11:53 +00:00
-fx-min-width: 237;
-fx-max-width: 237;
-fx-min-height: -vn-header-height;
-fx-max-height: -vn-header-height;
2017-12-12 07:58:26 +00:00
-fx-background-color: #ffffff;
2017-11-14 08:11:53 +00:00
}
.menu_item{
-fx-border-width: 0 0 1 0;
2017-12-12 07:58:26 +00:00
-fx-border-color: #eeeeee;
}
2017-12-19 17:09:03 +00:00
.menu_item.active{
-fx-background-color: #eeeeee;
}
2017-12-12 07:58:26 +00:00
#menu{
-fx-background-color: #ffffff;
-fx-border-width: 0 1 0 0;
-fx-border-color: #eeeeee;
}