Created
June 27, 2014 02:58
-
-
Save loonison123/e18aa2ba24f19af3e961 to your computer and use it in GitHub Desktop.
Keys css example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 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