Added the Minecraft Login stage

This commit is contained in:
Michael-Jouanneau 2016-12-19 15:17:30 +01:00
parent 0f3482fee5
commit acb484704e
4 changed files with 48 additions and 13 deletions

View File

@ -2,7 +2,6 @@
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.CheckBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.PasswordField?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.image.Image?>
@ -17,24 +16,16 @@
<Image url="@../icons/Minecraft-Wallpaper.png" />
</image>
</ImageView>
<Button layoutX="120.0" layoutY="235.0" mnemonicParsing="false" text="Login">
<Button id="minecraft-login" layoutX="120.0" layoutY="253.0" mnemonicParsing="false" text="Login">
<font>
<Font name="Century" size="15.0" />
</font></Button>
<Label layoutX="23.0" layoutY="132.0" text="Username" textFill="WHITE">
<font>
<Font name="Century" size="15.0" />
</font></Label>
<Label layoutX="26.0" layoutY="175.0" text="Password" textFill="WHITE">
<font>
<Font name="Century" size="15.0" />
</font></Label>
<CheckBox layoutX="91.0" layoutY="210.0" mnemonicParsing="false" text="Remember Me" textFill="WHITE">
<CheckBox layoutX="88.0" layoutY="217.0" mnemonicParsing="false" text="Remember Me" textFill="WHITE">
<font>
<Font name="Century" size="14.0" />
</font></CheckBox>
<PasswordField layoutX="101.0" layoutY="172.0" promptText="Password" />
<TextField layoutX="101.0" layoutY="129.0" promptText="Username" />
<PasswordField id="minecraftpass" layoutX="44.0" layoutY="174.0" prefHeight="25.0" prefWidth="214.0" promptText="Password" />
<TextField id="minecraftuser" layoutX="44.0" layoutY="129.0" prefHeight="25.0" prefWidth="214.0" promptText="Username" />
<ImageView fitHeight="94.0" fitWidth="274.0" layoutX="14.0" layoutY="34.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@../icons/minecraft.png" />

View File

@ -134,4 +134,15 @@
.selected:hover {
-fx-background-color: #060606;
}
#minecraftuser, #minecraftpass{
-fx-prompt-text-fill: white;
-fx-text-fill: white;
-fx-background-color: transparent;
-fx-padding: 5px;
}
#minecraftuser:hover, #minecraftpass:hover, #minecraftuser:focused, #minecraftpass:focused{
-fx-border-style: solid;
-fx-border-color: white;
-fx-border-width: 0px 0px 2px 0px;
}

View File

@ -134,4 +134,25 @@
.selected:hover {
-fx-background-color: #05030c;
}
#minecraftuser, #minecraftpass{
-fx-prompt-text-fill: white;
-fx-text-fill: white;
-fx-background-color: transparent;
-fx-padding: 5px;
}
#minecraftuser:hover, #minecraftpass:hover, #minecraftuser:focused, #minecraftpass:focused{
-fx-border-style: solid;
-fx-border-color: white;
-fx-border-width: 0px 0px 2px 0px;
}
#minecraft-login {
-fx-background-color: #000026;
-fx-text-fill: white;
-fx-padding: 10px;
}
#minecraft-login:hover, #minecraft-login:focused{
-fx-background-color: #000040;
-fx-text-fill: white;
-fx-padding: 10px;
}

View File

@ -134,4 +134,16 @@
.selected:hover {
-fx-background-color: #fff;
}
#minecraftuser, #minecraftpass{
-fx-prompt-text-fill: white;
-fx-text-fill: white;
-fx-background-color: transparent;
-fx-padding: 5px;
}
#minecraftuser:hover, #minecraftpass:hover, #minecraftuser:focused, #minecraftpass:focused{
-fx-border-style: solid;
-fx-border-color: white;
-fx-border-width: 0px 0px 2px 0px;
}