blob: 84e406c8f8b092b36aafd060f06de1fa445a0ce4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* 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;
}
}
|