15 lines
654 B
CSS
15 lines
654 B
CSS
|
@font-face {
|
||
|
font-family: 'source_code_proregular';
|
||
|
src: url('sourcecodepro/sourcecodepro-regular-webfont.eot');
|
||
|
src: url('sourcecodepro/sourcecodepro-regular-webfont.eot?#iefix') format('embedded-opentype'),
|
||
|
url('sourcecodepro/sourcecodepro-regular-webfont.woff') format('woff'),
|
||
|
url('sourcecodepro/sourcecodepro-regular-webfont.ttf') format('truetype'),
|
||
|
url('sourcecodepro/sourcecodepro-regular-webfont.svg#MonacoRegular') format('svg');
|
||
|
font-weight: normal;
|
||
|
font-style: normal;
|
||
|
}
|
||
|
|
||
|
.crayon-font-sourcecodepro * {
|
||
|
font-family: Source Code Pro, 'source_code_proregular', Arial, sans-serif !important;
|
||
|
}
|