Skip to content

Commit

Permalink
added missing css file
Browse files Browse the repository at this point in the history
  • Loading branch information
kag12017 committed Feb 7, 2016
1 parent 80aeeaa commit 47315a0
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 3 deletions.
8 changes: 6 additions & 2 deletions src/main/java/StartPage.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<children>
<BorderPane prefHeight="200.0" prefWidth="200.0">
<top>
<Label alignment="CENTER" prefHeight="23.0" prefWidth="159.0" text="Search" BorderPane.alignment="CENTER">
<Label alignment="CENTER" prefHeight="23.0" prefWidth="159.0" text="Tool: Search" BorderPane.alignment="CENTER">
<font>
<Font size="18.0" />
</font>
Expand Down Expand Up @@ -117,7 +117,11 @@
<content>
<BorderPane prefHeight="200.0" prefWidth="200.0">
<center>
<ListView prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER" />
<ListView prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER">
<BorderPane.margin>
<Insets top="10.0" />
</BorderPane.margin>
</ListView>
</center>
<bottom>
<Button alignment="CENTER" contentDisplay="CENTER" mnemonicParsing="false" text="Remove" textAlignment="CENTER" BorderPane.alignment="CENTER">
Expand Down
35 changes: 34 additions & 1 deletion src/main/resources/mainStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,64 @@
*/

.root{
-fx-font-size: 14pt;
-fx-font-size: 12pt;
-fx-font-family: "Tahoma";
/*
-fx-base: #DFB951;
-fx-background: #A78732;
-fx-focus-color: #B6A678;
*/
}

.button1{
/*
-fx-text-fill: #006464;
-fx-background-color: #DFB951;
-fx-border-radius: 20;
-fx-background-radius: 20;
-fx-padding: 5;
*/
}

.button2{
/*
-fx-text-fill: #c10000;
-fx-background-color: #DFB951;
-fx-border-radius: 20;
-fx-background-radius: 20;
-fx-padding: 5;
*/
}

.slider{
-fx-border-color: white;
-fx-border-style: dashed;
-fx-border-width: 2;
}

.pane-general-style {

-fx-border-width: 1px;
-fx-border-color: black;

}

.pane-title {

-fx-background-color: #dbdbdb;

}

#tool-selector-pane {

-fx-border-width: 0 0 1 0;
-fx-border-color: black;
}

#tool-inspector-pane {

-fx-border-color: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
-fx-border-style: solid;
-fx-border-width: 5px 0 0 0;

}

0 comments on commit 47315a0

Please sign in to comment.