13 lines
355 B
CSS
13 lines
355 B
CSS
|
@font-face {
|
||
|
font-family: 'PT Sans';
|
||
|
src: local('PT Sans'), local('PTSans-Regular'), url('PTSans-Regular.woff') format('woff');
|
||
|
font-weight: normal;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'PT Sans';
|
||
|
src: local('PT Sans Bold'), local('PTSans-Bold'), url('PTSans-Bold.woff') format('woff');
|
||
|
font-weight: bold;
|
||
|
font-style: normal;
|
||
|
}
|