Emacs config utilizing prelude as a base
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
355 B

  1. /* By default kbd doesn't stand out very much. Let's fix this! */
  2. kbd {
  3. padding: 3px 5px;
  4. border: solid 1px #ccc;
  5. background-color: #fcfcfc;
  6. border-radius: 3px;
  7. box-shadow: inset 0 -1px 0 #bbb;
  8. display: inline-block;
  9. }
  10. /* The default font-size for code blocks is 75% which makes code
  11. hard to read. */
  12. code {
  13. font-size: 90%;
  14. }