blob: 88f643a39830bd375b4f56e944ee8e13a8072930 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Webfont CSS setup for Igiari by Caveras */
@font-face {
font-family:'Igiari';
src:url('Igiari.eot');
src:url('Igiari.eot?#iefix') format('embedded-opentype'),
url('Igiari.woff') format('woff'),
url('Igiari.ttf') format('truetype'),
url('Igiari.svg#Igiari') format('svg');
font-weight:normal;
font-style:normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family:'Igiari';
src: url('Igiari.svg') format('svg');
font-weight:normal;
font-style:normal;
}
}
|