Use webfonts

This commit is contained in:
Las Zenow 2012-12-18 15:55:30 +01:00
parent 53191356b5
commit 22631be152
4 changed files with 21 additions and 1 deletions

2
README
View file

@ -97,3 +97,5 @@ file with the exception of:
From jquery library: http://jquery.com/
- img/bright_squares.png
From subtlepatterns: http://subtlepatterns.com/bright-squares/
- css/FredokaOne.ttf css/PTSerif.ttf
From Google Web Fonts: http://www.google.com/webfonts

BIN
css/FredokaOne.ttf Normal file

Binary file not shown.

BIN
css/PTSerif.ttf Normal file

Binary file not shown.

View file

@ -1,5 +1,23 @@
@font-face {
font-family: 'Fredoka One';
font-style: normal;
font-weight: 400;
src: local('Fredoka One'), local('FredokaOne-Regular'), url(/css/FredokaOne.ttf) format('truetype');
}
@font-face {
font-family: 'PT Serif';
font-style: normal;
font-weight: 400;
src: local('PT Serif'), local('PTSerif-Regular'), url(/css/PTSerif.ttf) format('truetype');
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Fredoka One', cursive;
}
p, div {
font-family: 'PT Serif', serif;
}
body {
/*background: url(/img/ravenna.png) repeat 0 0;*/
background: url(/img/bright_squares.png) repeat 0 0;
}
.centered {