app.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /* Material Icons Font (for MD theme) */
  2. @font-face {
  3. font-family: 'Material Icons';
  4. font-style: normal;
  5. font-weight: 400;
  6. src: url(fonts/MaterialIcons-Regular.e79bfd8.eot); /* For IE6-8 */
  7. src: local('Material Icons'),
  8. local('MaterialIcons-Regular'),
  9. url(fonts/MaterialIcons-Regular.570eb83.woff2) format('woff2'),
  10. url(fonts/MaterialIcons-Regular.012cf6a.woff) format('woff'),
  11. url(fonts/MaterialIcons-Regular.a37b0c0.ttf) format('truetype');
  12. }
  13. /* Orbitron Font */
  14. @font-face {
  15. font-family: 'Orbitron Regular';
  16. font-style: normal;
  17. font-weight: 400;
  18. src: local('Orbitron Regular'),
  19. local('Orbitron-Regular'),
  20. url(fonts/Orbitron-Regular.add0c42.ttf) format('truetype');
  21. }
  22. .material-icons {
  23. font-family: 'Material Icons';
  24. font-weight: normal;
  25. font-style: normal;
  26. font-size: 24px; /* Preferred icon size */
  27. display: inline-block;
  28. line-height: 1;
  29. text-transform: none;
  30. letter-spacing: normal;
  31. word-wrap: normal;
  32. white-space: nowrap;
  33. direction: ltr;
  34. /* Support for all WebKit browsers. */
  35. -webkit-font-smoothing: antialiased;
  36. /* Support for Safari and Chrome. */
  37. text-rendering: optimizeLegibility;
  38. /* Support for Firefox. */
  39. -moz-osx-font-smoothing: grayscale;
  40. /* Support for IE. */
  41. font-feature-settings: 'liga';
  42. }
  43. /* Framework7 Icons Font (for iOS theme) */
  44. @font-face {
  45. font-family: 'Framework7 Icons';
  46. font-style: normal;
  47. font-weight: 400;
  48. src: url(fonts/Framework7Icons-Regular.589f22d.eot);
  49. src: url(fonts/Framework7Icons-Regular.988e8c7.woff2) format("woff2"),
  50. url(fonts/Framework7Icons-Regular.0efb066.woff) format("woff"),
  51. url(fonts/Framework7Icons-Regular.48c1c71.ttf) format("truetype");
  52. }
  53. .f7-icons {
  54. font-family: 'Framework7 Icons';
  55. font-weight: normal;
  56. font-style: normal;
  57. font-size: 25px;
  58. line-height: 1;
  59. letter-spacing: normal;
  60. text-transform: none;
  61. display: inline-block;
  62. white-space: nowrap;
  63. word-wrap: normal;
  64. direction: ltr;
  65. -webkit-font-smoothing: antialiased;
  66. text-rendering: optimizeLegibility;
  67. -moz-osx-font-smoothing: grayscale;
  68. -webkit-font-feature-settings: "liga";
  69. -moz-font-feature-settings: "liga=1";
  70. -moz-font-feature-settings: "liga";
  71. font-feature-settings: "liga";
  72. text-align: center;
  73. }
  74. body {
  75. font-size: 12px;
  76. }
  77. a {
  78. font-size: 12px;
  79. }
  80. :root {
  81. --f7-theme-color: #be504d;
  82. --f7-theme-color-rgb: 190, 80, 77;
  83. --f7-theme-color-shade: #a63f3d;
  84. --f7-theme-color-tint: #c96d6b;
  85. --iimt-gray: #999;
  86. --iimt-red: #be504d;
  87. --f7-dialog-width: 400px;
  88. --f7-button-font-size: 12px;
  89. --f7-list-font-size: 12px;
  90. --f7-table-body-font-size: 12px;
  91. --f7-button-height: 32px;
  92. --f7-list-item-min-height: 32px;
  93. }
  94. /* Hide navbar link which opens left panel when it is visible by breakpoint */
  95. .panel-left.panel-visible-by-breakpoint ~ .view .navbar .panel-open[data-panel="left"] {
  96. display: none;
  97. }
  98. .menu-select {
  99. background-color: var(--f7-theme-color);
  100. color: white;
  101. }
  102. /* table */
  103. table tbody {
  104. display: block;
  105. overflow-y: scroll;
  106. }
  107. table thead, table tbody tr {
  108. display: table;
  109. width: 100%;
  110. table-layout: fixed;
  111. }
  112. table thead, table tbody tr:hover {
  113. cursor: pointer;
  114. }
  115. .iimt-small-row > tr > td, .iimt-small-row > tr > th {
  116. height: 32px;
  117. }