Skip to content

Commit

Permalink
minor work on style
Browse files Browse the repository at this point in the history
  • Loading branch information
Dierk Koenig committed Aug 9, 2015
1 parent 417369c commit d0edf70
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
10 changes: 7 additions & 3 deletions client/src/main/resources/fregeRepl.fxml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.effect.*?>
<?import javafx.scene.image.*?>
<?import javafx.scene.text.*?>
<?import javafx.geometry.*?>
Expand All @@ -9,14 +10,17 @@

<BorderPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" stylesheets="@frepl.css" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
<top>
<StackPane id="header" >
<StackPane id="header">
<children>
<Label text="Welcome to the Frege REPL" BorderPane.alignment="CENTER">
<Label text="Welcome to the Frege REPL" textFill="#cff1ff" BorderPane.alignment="CENTER">
<BorderPane.margin>
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
</BorderPane.margin>
<effect>
<Glow level="0.1" />
</effect>
<font>
<Font size="18.0" />
<Font size="20.0" />
</font>
</Label>
<ImageView StackPane.alignment="TOP_LEFT">
Expand Down
10 changes: 7 additions & 3 deletions client/src/main/resources/frepl.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@
-fx-background-color: radial-gradient(radius 30%, -hi-light, -fx-background) ;
}

#header {
-fx-text-fill: -hi-light;
}

.text-area {
-fx-focus-color: -hi-light;
-fx-background-color: -hi-light;
-fx-background-radius: 5px;
-fx-background-color: #5c85b7, -hi-light, #5c85b7;
-fx-background-radius: 5,4,3;
-fx-background-insets: 0, 1, 3;
}

.list-view {
Expand Down

0 comments on commit d0edf70

Please sign in to comment.