53 lines
2.2 KiB
PHP
53 lines
2.2 KiB
PHP
@section('fonts')
|
|
<style>
|
|
@font-face {
|
|
font-family: 'PT Sans';
|
|
src: local('PT Sans'), local('PTSans-Regular'), url({{storage_path('css/fonts/ptsans/PT_Sans-Web-Regular.ttf')}}) format('truetype');
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: 'PT Sans';
|
|
src: local('PT Sans Italic'), local('PTSans-Italic'), url({{storage_path('css/fonts/ptsans/PT_Sans-Web-Italic.ttf')}}) format('truetype');
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: 'PT Sans';
|
|
src: local('PT Sans Bold'), local('PTSans-Bold'), url({{storage_path('css/fonts/ptsans/PT_Sans-Web-Bold.ttf')}}) format('truetype');
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: 'PT Sans';
|
|
src: local('PT Sans Bold Italic'), local('PTSans-BoldItalic'), url({{storage_path('css/fonts/ptsans/PT_Sans-Web-BoldItalic.ttf')}}) format('truetype');
|
|
font-weight: 600;
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Times New Roman';
|
|
src: local('Times New Roman'), local('Times New Roman-Regular'), url({{storage_path('css/fonts/timesnewroman/timesnrcyrmt.ttf')}}) format('truetype');
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: 'Times New Roman';
|
|
src: local('Times New Roman Italic'), local('Times New Roman-Italic'), url({{storage_path('css/fonts/timesnewroman/timesnrcyrmt_inclined.ttf')}}) format('truetype');
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: 'Times New Roman';
|
|
src: local('Times New Roman Bold'), local('Times New Roman-Bold'), url({{storage_path('css/fonts/timesnewroman/timesnrcyrmt_bold.ttf')}}) format('truetype');
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: 'Times New Roman';
|
|
src: local('Times New Roman Bold Italic'), local('Times New Roman-BoldItalic'), url({{storage_path('css/fonts/timesnewroman/timesnrcyrmt_boldinclined.ttf')}}) format('truetype');
|
|
font-weight: 600;
|
|
font-style: italic;
|
|
}
|
|
</style>
|
|
@endsection |