Skip to content

Commit

Permalink
update styles
Browse files Browse the repository at this point in the history
  • Loading branch information
dolevf committed Jun 12, 2022
1 parent 3bedc59 commit d76dcb5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Binary file modified static/assets/favicon.ico
100755 → 100644
Binary file not shown.
20 changes: 10 additions & 10 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@

<div class="container-fluid">
<div class="row">
<div class="col-md-8">
<div class="col-md-7">
<div class="well">
<div class="form-group">
<label for="policy-area"><b>Policy</b></label>
<label for="policy-area"><b>POLICY</b></label>
<div id="editor"># Alfred v.{{app_version}}

# Welcome to OPA Alfred! The reasonably usable self-hosted alternative to OPA's Playground
Expand All @@ -60,12 +60,12 @@
</div>
</div>
</div>
<div class="col-md-4">
<div class="col-md-5">
<div class="row">
<div class="col-md-12">
<div class="well">
<div class="form-group">
<label for="input-area"><b>Input</b></label>
<label for="input-area"><b>INPUT</b></label>
<div id="editorinput">{"message":"Hello World!!!"}</div>
</div>
</div>
Expand All @@ -75,7 +75,7 @@
<div class="col-md-12">
<div class="well">
<div class="form-group">
<label for="data-area"><b>Data</b></label>
<label for="data-area"><b>DATA</b></label>
<div id="editordata"></div>
</div>
</div>
Expand All @@ -85,7 +85,7 @@
<div class="col-md-12">
<div class="well">
<div class="form-group">
<label for="result-area"><b>Result</b> <span id="query_eval_ns" style="color:rgb(107, 101, 101); font-size: x-small; font-style: italic;"></span></label>
<label for="result-area"><b>OUTPUT</b> <span id="query_eval_ns" style="color:rgb(107, 101, 101); font-size: x-small; font-style: italic;"></span></label>
<div id="editorresult"></div>
</div>
</div>
Expand Down Expand Up @@ -122,23 +122,23 @@
// Fonts
editor.setOptions({
fontFamily: "Roboto Mono",
fontSize: "11pt"
fontSize: "10pt"
});

editorinput.setOptions({
fontFamily: "Roboto Mono",
fontSize: "11pt",
fontSize: "10pt",
wrap: false
});

editordata.setOptions({
fontFamily: "Roboto Mono",
fontSize: "11pt"
fontSize: "10pt"
});

editorresult.setOptions({
fontFamily: "Roboto Mono",
fontSize: "11pt"
fontSize: "10pt"
});

</script>
Expand Down

0 comments on commit d76dcb5

Please sign in to comment.