fixed a bit of stuff
Before Width: | Height: | Size: 493 KiB |
After Width: | Height: | Size: 6 MiB |
Before Width: | Height: | Size: 316 KiB |
After Width: | Height: | Size: 1.9 MiB |
Before Width: | Height: | Size: 382 KiB |
After Width: | Height: | Size: 2.5 MiB |
Before Width: | Height: | Size: 659 KiB |
After Width: | Height: | Size: 3.4 MiB |
Before Width: | Height: | Size: 107 KiB |
After Width: | Height: | Size: 701 KiB |
Before Width: | Height: | Size: 1.3 MiB |
After Width: | Height: | Size: 7.6 MiB |
Before Width: | Height: | Size: 244 KiB |
After Width: | Height: | Size: 2.5 MiB |
Before Width: | Height: | Size: 234 KiB |
After Width: | Height: | Size: 1.8 MiB |
Before Width: | Height: | Size: 128 KiB |
After Width: | Height: | Size: 992 KiB |
|
@ -86,7 +86,7 @@
|
|||
<VBox fx:id="formFields" spacing="15.0">
|
||||
<!-- Username Field -->
|
||||
<VBox spacing="5.0">
|
||||
<Label fx:id="usernameLabel" styleClass="formLabel" text="Username" />
|
||||
<Label fx:id="usernameLabel" styleClass="formLabel" text="E-Mail" />
|
||||
<TextField fx:id="usernameInput" styleClass="formInput" />
|
||||
</VBox>
|
||||
<!-- Password Field -->
|
||||
|
|
|
@ -57,6 +57,8 @@
|
|||
|
||||
<Label id="emailLabel" fx:id="emailLabel" styleClass="formLabel" text="Email address" />
|
||||
<TextField id="emailInput" fx:id="emailInput" styleClass="formInput" />
|
||||
<Label id="emailLabel" fx:id="passwordLabel" styleClass="formLabel" text="Password" />
|
||||
<TextField id="emailInput" fx:id="passwordInput" styleClass="formInput" />
|
||||
|
||||
<Label id="phoneLabel" fx:id="phoneLabel" styleClass="formLabel" text="Phone number" />
|
||||
<TextField id="phoneInput" fx:id="phoneInput" styleClass="formInput" />
|
||||
|
@ -71,7 +73,7 @@
|
|||
<TextField id="cityCodeInput" fx:id="cityCodeInput" styleClass="formInput" />
|
||||
</children>
|
||||
</VBox>
|
||||
<Button id="createAccountButton" fx:id="createAccountButton" mnemonicParsing="false" styleClass="btnCreateAccount" text="Create account" GridPane.rowIndex="3" />
|
||||
<Button id="createAccountButton" fx:id="createAccountButton" mnemonicParsing="false" onAction="#handleCreateAccountButtonClick" styleClass="btnCreateAccount" text="Create account" GridPane.rowIndex="3" />
|
||||
</children>
|
||||
</GridPane>
|
||||
</center>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
-fx-padding: 20;
|
||||
-fx-hgap: 20;
|
||||
-fx-vgap: 20;
|
||||
-fx-background-image: url("images/background");
|
||||
-fx-background-image: url("images/background.png");
|
||||
-fx-background-size: cover;
|
||||
-fx-background-position: center center;
|
||||
-fx-background-blend-mode: overlay;
|
||||
|
@ -98,35 +98,35 @@
|
|||
}
|
||||
|
||||
#cardDiv1 {
|
||||
-fx-background-image: url("images/lotr.jpg");
|
||||
-fx-background-image: url("images/lotr.png");
|
||||
-fx-background-size: cover;
|
||||
-fx-background-repeat: no-repeat;
|
||||
-fx-background-position: center;
|
||||
}
|
||||
|
||||
#cardDiv2 {
|
||||
-fx-background-image: url("images/wheel.jpg");
|
||||
-fx-background-image: url("images/wheel.png");
|
||||
-fx-background-size: cover;
|
||||
-fx-background-repeat: no-repeat;
|
||||
-fx-background-position: center;
|
||||
}
|
||||
|
||||
#cardDiv3 {
|
||||
-fx-background-image: url("images/narnia.jpg");
|
||||
-fx-background-image: url("images/narnia.png");
|
||||
-fx-background-size: cover;
|
||||
-fx-background-repeat: no-repeat;
|
||||
-fx-background-position: center;
|
||||
}
|
||||
|
||||
#cardDiv4 {
|
||||
-fx-background-image: url("images/earthsea.jpg");
|
||||
-fx-background-image: url("images/earthsea.png");
|
||||
-fx-background-size: cover;
|
||||
-fx-background-repeat: no-repeat;
|
||||
-fx-background-position: center;
|
||||
}
|
||||
|
||||
#cardDiv5 {
|
||||
-fx-background-image: url("images/theFirstLaw.jpg");
|
||||
-fx-background-image: url("images/theFirstLaw.png");
|
||||
-fx-background-size: cover;
|
||||
-fx-background-repeat: no-repeat;
|
||||
-fx-background-position: center;
|
||||
|
@ -140,14 +140,14 @@
|
|||
}
|
||||
|
||||
#cardDiv7 {
|
||||
-fx-background-image: url("images/mistborn.jpg");
|
||||
-fx-background-image: url("images/mistborn.png");
|
||||
-fx-background-size: cover;
|
||||
-fx-background-repeat: no-repeat;
|
||||
-fx-background-position: center;
|
||||
}
|
||||
|
||||
#cardDiv8 {
|
||||
-fx-background-image: url("images/stormlight.jpg");
|
||||
-fx-background-image: url("images/stormlight.png");
|
||||
-fx-background-size: cover;
|
||||
-fx-background-repeat: no-repeat;
|
||||
-fx-background-position: center;
|
||||
|
|