Skip to content

Instantly share code, notes, and snippets.

@guigarage
Created September 16, 2014 18:18
Show Gist options
  • Save guigarage/a8dcd4b83daeaddf544a to your computer and use it in GitHub Desktop.
Save guigarage/a8dcd4b83daeaddf544a to your computer and use it in GitHub Desktop.
responsive pseudoclasses in JavaFX
#toolbar {
-fx-background-color: deepskyblue;
}
#toolbar:extreme-small-device {
-fx-padding: 1 1 0 1;
}
#toolbar:small-device {
-fx-padding: 2 2 1 2;
}
#toolbar:medium-device {
-fx-padding: 6 6 1 6;
}
#toolbar:large-device {
-fx-padding: 6 6 1 6;
-fx-background-image: url(blue-background.png);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment