Paint.css 341 B

12345678910111213141516171819202122
  1. .toolbar {
  2. -fx-border-style: solid;
  3. -fx-border-width: 0px 0px 1px 0px;
  4. -fx-border-color: darkgrey;
  5. }
  6. .drawingPane {
  7. -fx-background-color: white;
  8. }
  9. .rectangle {
  10. -fx-fill: greenyellow;
  11. -fx-stroke: green;
  12. -fx-stroke-width: 3;
  13. }
  14. .ellipse {
  15. -fx-fill: yellow;
  16. -fx-stroke: orange;
  17. -fx-stroke-width: 3;
  18. }