From 0c2eb7acea4ff0c552d4cbb38a911d0db4ec835b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Autin?= Date: Fri, 25 Jun 2021 18:09:41 +0200 Subject: [PATCH] Improved Launcher looks --- src/main/resources/launcher/style.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/main/resources/launcher/style.css b/src/main/resources/launcher/style.css index e1ec4b3..7fde625 100644 --- a/src/main/resources/launcher/style.css +++ b/src/main/resources/launcher/style.css @@ -1,6 +1,7 @@ #window { -fx-background-color: #131320; -fx-font-size: 1.25em; + -fx-font-family: "Sergoe UI", "Noto Sans", Arial, "Liberation Sans", Sans; } Text, Label { @@ -38,12 +39,22 @@ Text, Label { } #btn_launch { + -fx-background-color: #108010; + -fx-text-fill: #e1e1e1; +} + +#btn_launch:hover { -fx-background-color: #30c130; -fx-text-fill: #f2f2f2; } #btn_quit { - -fx-background-color: #c13030; + -fx-background-color: #801010; + -fx-text-fill: #e1e1e1; +} + +#btn_quit:hover { + -fx-background-color: #b41010; -fx-text-fill: #f2f2f2; }