diff --git a/src/interface/web/assets/org.js b/src/interface/web/assets/org.js index 4bb5c902..1e440ab3 100644 --- a/src/interface/web/assets/org.js +++ b/src/interface/web/assets/org.js @@ -92,7 +92,7 @@ var Org = (function () { token.indentation = 0; token.content = RegExp.$2; // specific - token.level = RegExp.$1.length; + token.level = 2; } else if (Syntax.isPreformatted(line)) { token.type = Lexer.tokens.preformatted; token.indentation = RegExp.$1.length; diff --git a/src/interface/web/index.html b/src/interface/web/index.html index 5b98581a..ffa05b52 100644 --- a/src/interface/web/index.html +++ b/src/interface/web/index.html @@ -154,6 +154,14 @@ border-radius: 5px; border: 1px solid #ccc; } + #query { + font-size: larger; + } + #results { + font-size: medium; + margin: 0px; + line-height: 20px; + } #results-image { display: grid; grid-template-columns: repeat(3, 1fr); @@ -172,19 +180,22 @@ #results-markdown { text-align: left; - white-space: pre-line; } - - #results-org { + #results-org { text-align: left; white-space: pre-line; } + #results-org h3 { + margin: 20px 0 0 0; + font-size: larger; + } span.task-status { color: white; padding: 3.5px 3.5px 0; margin-right: 5px; border-radius: 5px; background-color: #ed6f00; + font-size: medium; } span.task-status.todo { background-color: #048ba8 @@ -198,6 +209,7 @@ margin-right: 5px; border-radius: 5px; background-color: #bbb; + font-size: small; }