fix: replace code tag with kbd tag where appropriate

This commit is contained in:
Joshua Seigler 2016-10-13 13:16:18 -04:00
parent d08935c71e
commit de7866abf0
2 changed files with 8 additions and 4 deletions

View file

@ -29,19 +29,19 @@
<h1>Janus Presentations</h1> <h1>Janus Presentations</h1>
<h2>Hotkey powered, multi-window presentations</h2> <h2>Hotkey powered, multi-window presentations</h2>
<div><small> <div><small>
Press <code>Escape</code> for commands. <code>Page Up</code> / <code>Page Down</code> to navigate. Press <kbd>Escape</kbd> for commands. <kbd>Page Up</kbd> / <kbd>Page Down</kbd> to navigate.
</small></div> </small></div>
</section> </section>
<section style="background: linear-gradient(-30deg, #400, black)"> <section style="background: linear-gradient(-30deg, #400, black)">
<h1>Hotkeys</h1> <h1>Hotkeys</h1>
<div janus-timeline> <div janus-timeline>
Clone Window: <code>F2</code> Clone Window: <kbd>F2</kbd>
</div> </div>
<div janus-timeline> <div janus-timeline>
Navigation: <code>Page Down</code>, <code>Page Up</code> Navigation: <kbd>Page Down</kbd>, <kbd>Page Up</kbd>
</div> </div>
<div janus-timeline> <div janus-timeline>
Toggle Presenter Mode: <code>F1</code> Toggle Presenter Mode: <kbd>F1</kbd>
</div> </div>
</section> </section>
<section style="color: black"> <section style="color: black">

View file

@ -18,6 +18,10 @@ li {
code { code {
font-family: Consolas, monaco, monospace; font-family: Consolas, monaco, monospace;
}
kbd {
font-family: Consolas, monaco, monospace;
border: 2px dashed currentcolor; border: 2px dashed currentcolor;
} }