Skip to content

Instantly share code, notes, and snippets.

View Ben-0-mad's full-sized avatar
💭
🦎

Lizard Ben-0-mad

💭
🦎
View GitHub Profile
@guigarage
guigarage / gist:6ea110b098222ae0c83c
Created September 16, 2014 17:33
Add a custom font to a JavaFX application by using CSS
@font-face {
font-family: 'Roboto';
src: url('Roboto-Medium.ttf');
}
.text {
-fx-font-family: "Roboto";
}