_shortcuts.scss 1.3 KB

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