diff options
author | Andreas Weninger <e01526989@student.tuwien.ac.at> | 2018-05-14 16:31:12 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-05-21 15:51:40 +0200 |
commit | 3990268905e3223276160e2a32c74d4f05d0796e (patch) | |
tree | 30b87a54a1eaa36bf8d67de461a86e01991f4b5b /src/main/resources/styles | |
parent | 166ff610e62f0671f65a6fd27d4760f0881eb6f4 (diff) | |
download | sepm-groupproject-3990268905e3223276160e2a32c74d4f05d0796e.tar.gz sepm-groupproject-3990268905e3223276160e2a32c74d4f05d0796e.tar.xz sepm-groupproject-3990268905e3223276160e2a32c74d4f05d0796e.zip |
Reworking MainWindow UI.
Diffstat (limited to 'src/main/resources/styles')
-rw-r--r-- | src/main/resources/styles/main.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/main/resources/styles/main.css b/src/main/resources/styles/main.css index e69de29..11a069e 100644 --- a/src/main/resources/styles/main.css +++ b/src/main/resources/styles/main.css @@ -0,0 +1,28 @@ +.shadowed-white { + -fx-background-color: white; + -fx-effect: dropshadow(gaussian, rgba(100,100,100,0.8), 5, 0, 0, 3); +} + +.shadowed-yellow { + -fx-background-color: #FFE699; + -fx-effect: dropshadow(gaussian, rgba(100,100,100,0.8), 5, 0, 0, 3); +} + +.text-big { + -fx-font-size: 18px; +} + +.text-medium { + -fx-font-size: 14px; +} + +.text-small { + -fx-font-size: 14px; +} + +.button { + -fx-background-radius: 0em; + -fx-background-color: darkgreen; + -fx-text-fill: white; + -fx-font-weight: bold; +}
\ No newline at end of file |