1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-05-04 09:35:55 +02:00

change font for code to inconsolata.

This commit is contained in:
Kushagra Gour 2016-07-15 00:30:56 +05:30
parent 5cfea4d0ca
commit f9158b163b
2 changed files with 11 additions and 1 deletions

BIN
src/Inconsolata-Regular.ttf Executable file

Binary file not shown.

View File

@ -5,8 +5,15 @@
<link rel="stylesheet" href="lib/codemirror/lib/codemirror.css">
<link rel="stylesheet" href="lib/codemirror/theme/monokai.css">
<link rel="stylesheet" href="lib/hint.min.css">
<style>
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 400;
src: local('Inconsolata'), url(../Inconsolata-Regular.ttf) format('truetype');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
body {
margin: 0;
padding: 0;
@ -102,6 +109,9 @@
height: calc(100% - 25px); /* 25px for header */
font-size: 16px;
}
.Codemirror pre {
font-family: 'Inconsolata', monospace;
}
.cm-s-monokai .CodeMirror-linenumber {
color:rgba(255,255,255,0.2);
}