diff options
author | Tharre <tharre3@gmail.com> | 2018-05-24 20:28:05 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2018-05-24 20:28:05 +0200 |
commit | f5bc7925a8fbbe247972a6f0e0571cc7e92fbefa (patch) | |
tree | 25c6010b1c96de0302ac618bc3aeee61100655fe /src/main/resources/styles/main.css | |
parent | f7d14a76123911f0bced08356a0c69e61147cb1b (diff) | |
parent | 58f6ea4ad233f4cbb57b57734a5067e0856b6341 (diff) | |
download | sepm-groupproject-2.0.tar.gz sepm-groupproject-2.0.tar.xz sepm-groupproject-2.0.zip |
Merge branch 'develop'v2.0
Diffstat (limited to 'src/main/resources/styles/main.css')
-rw-r--r-- | src/main/resources/styles/main.css | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/src/main/resources/styles/main.css b/src/main/resources/styles/main.css new file mode 100644 index 0000000..886e756 --- /dev/null +++ b/src/main/resources/styles/main.css @@ -0,0 +1,95 @@ +/* === shadow === */ +.shadowed { + -fx-effect: dropshadow(gaussian, rgba(100,100,100,0.8), 5, 0, 0, 3); +} + +/* === background === */ +/* -- basic -- */ +.bg-white { + -fx-background-color: white; +} +/* -- vehiclePane -- */ +.bg-yellow { + -fx-background-color: #FFE699; +} +.bg-status-green { + -fx-background-color: #C5E0B4; +} +.bg-status-orange { + -fx-background-color: #F8CBAD; +} +/* -- header areas -- */ +.bg-blue { + -fx-background-color: #2E75B6; +} +.bg-green { + -fx-background-color: #548235; +} +.bg-light-orange { + -fx-background-color: #BF9000; +} +.bg-dark-orange { + -fx-background-color: #C55A11; +} +/* -- content areas -- */ +.bg-gray-blue { + -fx-background-color: #E8EAEF; +} +.bg-gray-green { + -fx-background-color: #EBEFE8; +} +.bg-gray-orange { + -fx-background-color: #EFEBE8; +} +/* -- edit area -- */ +.bg-edit-area-orange { + -fx-background-color: #FBE5D6; +} + +/* === text === */ +.text-big { + -fx-font-size: 18px; +} + +.text-medium { + -fx-font-size: 14px; +} + +.text-small { + -fx-font-size: 14px; +} + +/* === button === */ +.button { + -fx-background-radius: 0em; + -fx-border-color: black; +} + +.button-main { + -fx-background-color: #548235; + -fx-text-fill: white; + -fx-font-weight: bold; +} + +.button-free-status { + -fx-background-color: #C5E0B4; +} + +.button-other-status { + -fx-background-color: #F8CBAD; +} + +/* === menu item === */ +.mi-free { + -fx-background-color: #C5E0B4; +} + +.mi-other { + -fx-background-color: #F8CBAD; +} + +.menu-item:focused .label { + -fx-text-fill: black; + -fx-font-weight: bold; +} + |