mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2026-01-15 16:32:43 +01:00
adjustments of styles
This commit is contained in:
@@ -18,8 +18,9 @@ code { font-size: 1.2em; font-weight: bold; }
|
||||
.expression .result td { border-top: dotted 1px gray; }
|
||||
.expression { font-size: 1.5em; font-family: monospace }
|
||||
|
||||
.help { padding: 10px; background: #e0e0e0; }
|
||||
.help { padding: 10px; background: #f8f8f8; }
|
||||
.help ul { list-style-type: none; margin: 0; padding: 0; }
|
||||
.help p { margin-top: 0 }
|
||||
|
||||
.configPnl .indicator { font-size: 0.7em; background: gray; color: white; padding: 2px; }
|
||||
.configPnl .on { background: darkblue; }
|
||||
|
||||
24
index.html
24
index.html
@@ -36,19 +36,21 @@
|
||||
</head>
|
||||
<body id="rootView">
|
||||
|
||||
<h2>BitwiseCmd</h2>
|
||||
<header>
|
||||
<h1>Bitwise<span style="color: #c5c5c5;">Cmd</span></h1>
|
||||
|
||||
<div class="links">
|
||||
<a href="https://github.com/BorisLevitskiy/BitwiseCmd">App on GitHub</a>
|
||||
</div>
|
||||
<div class="links">
|
||||
<a href="https://github.com/BorisLevitskiy/BitwiseCmd">App on GitHub</a>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<input id="in" type="text" class="expressionInput" data-controller="expressionInputCtrl" placeholder="type expression like '1>>2' or 'help' "/>
|
||||
<div>
|
||||
<input id="in" type="text" class="expressionInput" data-controller="expressionInputCtrl" placeholder="type expression like '1>>2' or 'help' "/>
|
||||
|
||||
<span data-controller="configPanelCtrl" class="configPnl">
|
||||
<span id="emphasizeBytes" class="indicator on"><strong>em:</strong> Emphasize Bytes</span>
|
||||
</span>
|
||||
</div>
|
||||
<span data-controller="configPanelCtrl" class="configPnl">
|
||||
<span id="emphasizeBytes" class="indicator on"><strong>em:</strong> Emphasize Bytes</span>
|
||||
</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="output" data-controller="cmdController">
|
||||
</div>
|
||||
@@ -137,7 +139,7 @@
|
||||
|
||||
app.get('dispatcher').dispatch('help');
|
||||
app.get('dispatcher').dispatch('1|2');
|
||||
app.get('dispatcher').dispatch('1 2');
|
||||
app.get('dispatcher').dispatch('2 4 8 16 32');
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user