Simplified fonts

master
Hauke D 7 years ago
parent de081b1d70
commit f03b6a93e6

@ -2,11 +2,9 @@
body {
margin: 0.4em;
}
.text,.fakelink {
.text {
font-family: Calibri, Ubuntu, "Droid Sans", Tahoma, Arial, Helvetica, sans-serif;
}
.small {
font-size: 0.8em;
font-size: 0.9em;
}
pre,textarea,code,.code,.filename,.CodeMirror {
font-family: Consolas, "Ubuntu Mono", "Droid Sans Mono", "Lucida Console", "Courier New", Courier, monospace;
@ -46,7 +44,6 @@ pre {
.fakelink {
color: darkblue;
cursor: pointer;
font-size: 0.9em;
}
.badfilename {
background-color: rgba(255,200,200,255);

@ -189,9 +189,10 @@ function makeCodeWithFn (fn,targ,ro,isscript) {
/* we need to trigger this handler once when the input
* field is added to the document, we do this below */
var filefuncs = $('<div/>',{class:"filefuncs"}).appendTo(fnfuncs);
var filefuncs = $('<div/>',{class:"filefuncs text"})
.appendTo(fnfuncs);
var conf = $('<span/>', {class:"text small"})
var conf = $('<span/>', {})
.append(
"&ensp;",
"Are you sure?",
@ -409,7 +410,7 @@ $(function () {
<input type="text" id="argv" class="code" value='perl' />
</div>
<div class="text small">
<div class="text">
<textarea id="pageurl" style="display:none;"></textarea>
<div id="misctools">
Tools

Loading…
Cancel
Save