32 lines
592 B
CSS
32 lines
592 B
CSS
|
|
/* latin */
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: italic;
|
|
font-weight: 400;
|
|
src: url(OpenSans-Italic.ttf) format('ttf');
|
|
}
|
|
|
|
/* latin */
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
src: url(OpenSans-SemiboldItalic.ttf) format('ttf');
|
|
}
|
|
|
|
/* latin */
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url(OpenSans-Regular.ttf) format('ttf');
|
|
}
|
|
|
|
/* latin */
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
src: url(OpenSans-Semibold.ttf) format('ttf');
|
|
} |