_shortcuts.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. /* SVG Properties*/
  39. polygon {
  40. fill: #666;
  41. }
  42. &.key-longer {
  43. width: 64px;
  44. }
  45. &.key-long {
  46. width: 72px;
  47. }
  48. }
  49. .dl-horizontal {
  50. dt {
  51. // width: 180px;
  52. height: 41px;
  53. display: flex;
  54. justify-content: flex-end;
  55. align-items: center;
  56. }
  57. // dd {
  58. // margin-left: 190px;
  59. // }
  60. }
  61. }