aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/styles/main.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/styles/main.css')
-rw-r--r--src/main/resources/styles/main.css54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/main/resources/styles/main.css b/src/main/resources/styles/main.css
index 886e756..db8076a 100644
--- a/src/main/resources/styles/main.css
+++ b/src/main/resources/styles/main.css
@@ -49,6 +49,7 @@
/* === text === */
.text-big {
-fx-font-size: 18px;
+
}
.text-medium {
@@ -59,6 +60,14 @@
-fx-font-size: 14px;
}
+.text-bold {
+ -fx-font-weight: bold;
+}
+
+.text-white {
+ -fx-text-fill: white;
+}
+
/* === button === */
.button {
-fx-background-radius: 0em;
@@ -93,3 +102,48 @@
-fx-font-weight: bold;
}
+/* === text field === */
+.text-field {
+ /*-fx-text-box-border: transparent black black black;*/
+ -fx-background-color: -fx-control-inner-background;
+ /*-fx-background-insets: 0;*/
+ -fx-padding: 1 3 1 3;
+ -fx-border-color: transparent transparent black transparent;
+
+}
+
+.text-field:focused {
+ -fx-focus-color: transparent;
+ -fx-faint-focus-color: transparent;
+}
+
+/* === scroll pane === */
+.scroll-pane {
+ -fx-background-color:transparent;
+}
+
+.scroll-pane .viewport {
+ -fx-background-color: transparent;
+}
+
+.scroll-pane .scroll-bar:vertical {
+ -fx-opacity: 0;
+}
+
+/* === choice box ===
+.choice-box {
+ -fx-background-color: transparent;
+ -fx-padding: 2 2 2 2;
+}
+
+.choice-box .label {
+ -fx-text-fill: white;
+}
+
+.choice-box .arrow, .choice-box .arrow-button{
+ -fx-background-color: transparent;
+ -fx-background-insets: 0;
+ -fx-background-radius: 0;
+ -fx-padding: 0;
+}*/
+