56 lines
952 B
SCSS
Executable File
56 lines
952 B
SCSS
Executable File
// Regular
|
|
@font-face{
|
|
font-family: 'Open Sans';
|
|
src: url('/css/font/Open Sans/R.ttf');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
// Semi Bold
|
|
@font-face{
|
|
font-family: 'Open Sans sb';
|
|
src: url('/css/font/Open Sans/SB.ttf');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
// Bold
|
|
@font-face{
|
|
font-family: 'Open Sans';
|
|
src: url('/css/font/Open Sans/b.ttf');
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
}
|
|
|
|
// Italic
|
|
@font-face{
|
|
font-family: 'Open Sans';
|
|
src: url('/css/font/Open Sans/i.ttf');
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
|
|
// Bold Italic
|
|
@font-face{
|
|
font-family: 'Open Sans';
|
|
src: url('/css/font/Open Sans/bi.ttf');
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|
|
|
|
// Light
|
|
@font-face{
|
|
font-family: 'Open Sans';
|
|
src: url('/css/font/Open Sans/L.ttf');
|
|
font-weight: 100;
|
|
font-style: normal;
|
|
}
|
|
|
|
// Light italic
|
|
@font-face{
|
|
font-family: 'Open Sans';
|
|
src: url('/css/font/Open Sans/Li.ttf');
|
|
font-weight: 100;
|
|
font-style: italic;
|
|
}
|