Simplified fonts

master
Hauke D 7 years ago
parent de081b1d70
commit f03b6a93e6

@ -2,11 +2,9 @@
body { body {
margin: 0.4em; margin: 0.4em;
} }
.text,.fakelink { .text {
font-family: Calibri, Ubuntu, "Droid Sans", Tahoma, Arial, Helvetica, sans-serif; font-family: Calibri, Ubuntu, "Droid Sans", Tahoma, Arial, Helvetica, sans-serif;
} font-size: 0.9em;
.small {
font-size: 0.8em;
} }
pre,textarea,code,.code,.filename,.CodeMirror { pre,textarea,code,.code,.filename,.CodeMirror {
font-family: Consolas, "Ubuntu Mono", "Droid Sans Mono", "Lucida Console", "Courier New", Courier, monospace; font-family: Consolas, "Ubuntu Mono", "Droid Sans Mono", "Lucida Console", "Courier New", Courier, monospace;
@ -46,7 +44,6 @@ pre {
.fakelink { .fakelink {
color: darkblue; color: darkblue;
cursor: pointer; cursor: pointer;
font-size: 0.9em;
} }
.badfilename { .badfilename {
background-color: rgba(255,200,200,255); 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 /* we need to trigger this handler once when the input
* field is added to the document, we do this below */ * 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( .append(
"&ensp;", "&ensp;",
"Are you sure?", "Are you sure?",
@ -409,7 +410,7 @@ $(function () {
<input type="text" id="argv" class="code" value='perl' /> <input type="text" id="argv" class="code" value='perl' />
</div> </div>
<div class="text small"> <div class="text">
<textarea id="pageurl" style="display:none;"></textarea> <textarea id="pageurl" style="display:none;"></textarea>
<div id="misctools"> <div id="misctools">
Tools Tools

Loading…
Cancel
Save