meerkat-java/voting-booth-gui/src/main/resources/views/vista.css

27 lines
578 B
CSS
Raw Normal View History

/**
* vista.css
* Place in the same source directory as Main.java
* Ensure that your build system copies this file to your build output directory.
*/
#headerLabel {
2017-01-12 11:24:38 -05:00
-fx-font-family: arial;
-fx-text-fill: #aaaaaa;
-fx-font-size: 18px;
-fx-font-weight: bold;
-fx-padding: 5px;
}
#vistaHolder {
2017-01-12 11:24:38 -05:00
-fx-background-color: white;
}
.button {
2017-01-12 11:24:38 -05:00
-fx-background-color: #aaaaaa;
-fx-background-insets: 0,1,2,3;
-fx-background-radius: 3,2,2,2;
-fx-padding: 12 30 12 30;
-fx-text-fill: black;
-fx-font-size: 18px;
}