Skip to content

Instantly share code, notes, and snippets.

@loonison123
Created June 27, 2014 02:58
Show Gist options
  • Select an option

  • Save loonison123/e18aa2ba24f19af3e961 to your computer and use it in GitHub Desktop.

Select an option

Save loonison123/e18aa2ba24f19af3e961 to your computer and use it in GitHub Desktop.
Keys css example
<!-- Source: https://github.com/michaelhue/keyscss -->
<link rel="stylesheet" href="styles/keys.css" />
<!-- Dark keys: -->
<kbd>ctrl</kbd> + <kbd>S</kbd>
<!-- ...or... -->
<kbd class="dark">ctrl</kbd> + <kbd class="dark">S</kbd>
<!-- ...or... -->
<span class="dark-keys">
<kbd>ctrl</kbd> + <kbd>S</kbd>
</span>
<!-- Light keys: -->
<kbd class="light">ctrl</kbd> + <kbd class="light">S</kbd>
<!-- ...or... -->
<span class="light-keys">
<kbd>ctrl</kbd> + <kbd>S</kbd>
</span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment