_shortcuts.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. // import crowi variable
  2. @import 'utilities';
  3. #shortcuts-modal {
  4. @media (min-width: $screen-sm-min) { // {{{ more than tablet size
  5. .modal-dialog {
  6. width: 750px;
  7. }
  8. }
  9. @media (max-width: $screen-xs-max) { // {{{ less than tablet size
  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. background: #fff;
  33. border-radius: 4px;
  34. box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.5);
  35. /*Text Properties*/
  36. font: 18px/36px Helvetica, serif ;
  37. text-transform: uppercase;
  38. text-align: center;
  39. color: #666;
  40. &.key-longer {
  41. width: 64px;
  42. }
  43. &.key-long {
  44. width: 72px;
  45. }
  46. }
  47. .dl-horizontal {
  48. dt {
  49. // width: 180px;
  50. height: 41px;
  51. display: flex;
  52. justify-content: flex-end;
  53. align-items: center;
  54. }
  55. // dd {
  56. // margin-left: 190px;
  57. // }
  58. }
  59. }