_shortcuts.scss 912 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. text-align: left;
  12. }
  13. .shortcut-table-description {
  14. text-align: left;
  15. color: $text-muted;
  16. width: 99%;
  17. padding: $space-sm $space-md;
  18. }
  19. .shortcut-table-keys {
  20. white-space: nowrap;
  21. width: 1%;
  22. text-align: right;
  23. color: $text-color;
  24. }
  25. }
  26. .shortcut-table-key {
  27. display: inline-block;
  28. text-align: center;
  29. margin-right: $space-xs;
  30. padding: 3px 5px;
  31. font: 11px Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  32. line-height: 10px;
  33. vertical-align: middle;
  34. background-color: $btn-inverse-bg;
  35. border: solid 1px $btn-inverse-bg-hl;
  36. border-radius: 3px;
  37. color: $btn-inverse-text-color;
  38. box-shadow: inset 0 -1px 0 $btn-inverse-bg-hl;
  39. }