_shortcuts.scss 943 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .shortcut-category {
  2. float: left;
  3. font-size: $font-size-sm;
  4. width: 50%;
  5. }
  6. .shortcut-table {
  7. margin-bottom: $spacer;
  8. .shortcut-table-category-header {
  9. font-weight: normal;
  10. font-size: $font-size-h6;
  11. font-style: italic;
  12. text-align: left;
  13. }
  14. .shortcut-table-description {
  15. text-align: left;
  16. color: $text-muted;
  17. width: 99%;
  18. padding: 0.38rem 1rem;
  19. }
  20. .shortcut-table-keys {
  21. white-space: nowrap;
  22. width: 1%;
  23. text-align: right;
  24. color: $text-color;
  25. }
  26. }
  27. .shortcut-table-key {
  28. display: inline-block;
  29. text-align: center;
  30. margin-right: 0.3rem;
  31. padding: 3px 5px;
  32. font: 11px Consolas, "Liberation Mono", Menlo, Courier, monospace;
  33. line-height: 10px;
  34. color: #555;
  35. vertical-align: middle;
  36. background-color: $btn-inverse-bg;
  37. border: solid 1px $btn-inverse-bg-hl;
  38. border-radius: 3px;
  39. color: $btn-inverse-text-color;
  40. box-shadow: inset 0 -1px 0 $btn-inverse-bg-hl;
  41. }