_shortcuts.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #shortcuts-modal {
  2. @media (min-width: $screen-sm-min) { // {{{ more than tablet size
  3. .modal-dialog {
  4. width: 750px;
  5. }
  6. }
  7. @media (max-width: $screen-xs-max) { // {{{ less than tablet size
  8. table {
  9. table-layout: fixed;
  10. }
  11. }
  12. h3 {
  13. margin-bottom: 1em;
  14. }
  15. table {
  16. th {
  17. vertical-align: middle;
  18. }
  19. td {
  20. min-width: 170px;
  21. }
  22. }
  23. // see http://coliss.com/articles/build-websites/operation/css/css-apple-keyboard-style-by-nrjmadan.html
  24. .key {
  25. /*Box Properties*/
  26. display:inline-block;
  27. width:36px;
  28. height:36px;
  29. margin: 0px 4px;
  30. background: #fff;
  31. border-radius: 4px;
  32. box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.5);
  33. /*Text Properties*/
  34. font: 18px/36px Helvetica, serif ;
  35. text-transform: uppercase;
  36. text-align: center;
  37. color: #666;
  38. &.key-longer {
  39. width: 64px;
  40. }
  41. &.key-long {
  42. width: 72px;
  43. }
  44. }
  45. .dl-horizontal {
  46. dt {
  47. // width: 180px;
  48. height: 41px;
  49. display: flex;
  50. justify-content: flex-end;
  51. align-items: center;
  52. }
  53. // dd {
  54. // margin-left: 190px;
  55. // }
  56. }
  57. }