diff options
author | Andreas Weninger <e01526989@student.tuwien.ac.at> | 2018-05-15 12:10:59 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-05-21 16:35:11 +0200 |
commit | 3f84016b6f9136f8d877e15ace1b214ea67c75b2 (patch) | |
tree | befcad0e53100e81317ff2b8f856fb02ffc53df8 /src/main/resources/styles/main.css | |
parent | 07c485c63e94e7508bad2ec2c7b385f5a102f720 (diff) | |
download | sepm-groupproject-3f84016b6f9136f8d877e15ace1b214ea67c75b2.tar.gz sepm-groupproject-3f84016b6f9136f8d877e15ace1b214ea67c75b2.tar.xz sepm-groupproject-3f84016b6f9136f8d877e15ace1b214ea67c75b2.zip |
Status menu FXML & Controller
Diffstat (limited to 'src/main/resources/styles/main.css')
-rw-r--r-- | src/main/resources/styles/main.css | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/resources/styles/main.css b/src/main/resources/styles/main.css index 61634b6..c021074 100644 --- a/src/main/resources/styles/main.css +++ b/src/main/resources/styles/main.css @@ -8,6 +8,12 @@ -fx-effect: dropshadow(gaussian, rgba(100,100,100,0.8), 5, 0, 0, 3); } +.border-sw { + -fx-background-color: white; + -fx-effect: dropshadow(gaussian, rgba(100,100,100,0.8), 5, 0, 0, 3); + -fx-border-color: black; +} + .text-big { -fx-font-size: 18px; } @@ -22,6 +28,10 @@ .button { -fx-background-radius: 0em; + -fx-border-color: black; +} + +.button-main { -fx-background-color: darkgreen; -fx-text-fill: white; -fx-font-weight: bold; @@ -34,6 +44,13 @@ .button-other-status { -fx-background-color: #F8CBAD; } +.button-free-status { + -fx-background-color: #C5E0B4; +} + +.button-other-status { + -fx-background-color: #F8CBAD; +} .mi-free { -fx-background-color: #C5E0B4; |