Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@sliceofbytes
Created November 8, 2018 19:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sliceofbytes/6709e170adf8c79804cd09c0ae1ab150 to your computer and use it in GitHub Desktop.
Save sliceofbytes/6709e170adf8c79804cd09c0ae1ab150 to your computer and use it in GitHub Desktop.
Keyboard Shortcut CSS Style
body {
font-size:18px;
}
.kbd{
padding: 0.1em 0.6em;
border: 1px solid #CCC;
font-family: Arial,Helvetica,sans-serif;
background-color: #F7F7F7;
color: #333;
-moz-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px #ffffff inset;
-webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px white inset;
box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2),0 0 0 2px white inset;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
display: inline-block;
margin: 0 0.1em;
text-shadow: 0 1px 0 white;
line-height: 1.4;
white-space: nowrap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment