diff --git a/src/main/resources/fxml/MenuBorderPane.fxml b/src/main/resources/fxml/MenuBorderPane.fxml index e9f78a6fe5114b04568e9e6d256ed33c162aa36a..03549cf9ab3ba93118ee441aa8f37cfa13423e32 100644 --- a/src/main/resources/fxml/MenuBorderPane.fxml +++ b/src/main/resources/fxml/MenuBorderPane.fxml @@ -5,6 +5,7 @@ <?import javafx.scene.image.ImageView?> <?import javafx.scene.layout.BorderPane?> <?import javafx.scene.layout.StackPane?> +<?import javafx.scene.text.Font?> <BorderPane id="mainMenu" fx:id="parent" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.hdm_stuttgart.battlearena.Controller.MenuBorderPaneController"> <right> @@ -19,7 +20,7 @@ </Button> </right> <left> - <Button fx:id="btnLeft" mnemonicParsing="false" BorderPane.alignment="BOTTOM_CENTER"> + <Button fx:id="btnLeft" contentDisplay="TOP" mnemonicParsing="false" text=":)" BorderPane.alignment="BOTTOM_CENTER"> <graphic> <ImageView fx:id="imgLeft" fitHeight="904.0" fitWidth="856.0" pickOnBounds="true" preserveRatio="true"> <image> @@ -27,6 +28,9 @@ </image> </ImageView> </graphic> + <font> + <Font name="System Bold" size="30.0" /> + </font> </Button> </left> <center> diff --git a/src/main/resources/styles/style.css b/src/main/resources/styles/style.css index 2322b78e38e2c325926719fb7af04516e50c7a85..94f586d35aa1726257f2d092d47e4409a73a4249 100644 --- a/src/main/resources/styles/style.css +++ b/src/main/resources/styles/style.css @@ -24,6 +24,10 @@ -fx-skin: "de.hdm_stuttgart.battlearena.Controller.ButtonTransition"; } +#btnLeft { + -fx-skin: none; +} + .accordion { -fx-font-size: 30; }