@medyll/cssfabric 0.2.0 → 0.2.1-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (173) hide show
  1. package/README.md +58 -38
  2. package/dist/NewMenu.svelte +41 -0
  3. package/dist/NewMenu.svelte.d.ts +19 -0
  4. package/dist/css/animation/animation.css +2 -0
  5. package/dist/css/base/base.css +47 -0
  6. package/dist/css/base/base.min.css +1 -0
  7. package/{styles → dist/css}/box/box.css +118 -0
  8. package/dist/css/box/box.min.css +1 -0
  9. package/{styles → dist/css}/box/box.responsive.css +3063 -1550
  10. package/dist/css/box/box.responsive.min.css +1 -0
  11. package/{styles → dist/css}/color/color.css +11 -9
  12. package/{styles → dist/css}/color/color.responsive.css +3446 -1932
  13. package/dist/css/color/color.responsive.min.css +1 -0
  14. package/dist/css/cssfabric.css +5167 -0
  15. package/dist/css/cssfabric.min.css +4877 -0
  16. package/dist/css/cssfabric.responsive.css +20419 -0
  17. package/dist/css/cssfabric.responsive.min.css +1 -0
  18. package/{styles → dist/css}/flex/flex.css +2 -0
  19. package/{styles → dist/css}/flex/flex.responsive.css +192 -114
  20. package/dist/css/flex/flex.responsive.min.css +1 -0
  21. package/{styles → dist/css}/grid/grid.css +2 -0
  22. package/{styles → dist/css}/grid/grid.responsive.css +230 -212
  23. package/dist/css/grid/grid.responsive.min.css +1 -0
  24. package/{styles → dist/css}/menu/menu.css +2 -0
  25. package/{styles → dist/css}/menu/menu.responsive.css +165 -78
  26. package/dist/css/menu/menu.responsive.min.css +1 -0
  27. package/{styles → dist/css}/overflow/overflow.css +2 -0
  28. package/{styles → dist/css}/overflow/overflow.responsive.css +98 -105
  29. package/dist/css/overflow/overflow.responsive.min.css +1 -0
  30. package/{styles → dist/css}/scale/scale.css +2 -0
  31. package/{styles → dist/css}/scale/scale.responsive.css +1520 -1152
  32. package/dist/css/scale/scale.responsive.min.css +1 -0
  33. package/{styles → dist/css}/table/table.css +2 -0
  34. package/{styles → dist/css}/table/table.responsive.css +162 -86
  35. package/dist/css/table/table.responsive.min.css +1 -0
  36. package/{styles → dist/css}/text/text.css +2 -0
  37. package/{styles → dist/css}/text/text.responsive.css +76 -55
  38. package/dist/css/text/text.responsive.min.css +1 -0
  39. package/{styles → dist/css}/theme/theme.css +51 -0
  40. package/{styles → dist/css}/theme/theme.min.css +1 -1
  41. package/{styles → dist/css}/vars.css +66 -67
  42. package/dist/css/vars.min.css +1 -0
  43. package/{styles → dist/css}/zindex/zindex.css +2 -0
  44. package/dist/cssFabric/config.d.ts +29 -0
  45. package/dist/cssFabric/config.js +29 -0
  46. package/dist/cssFabric/cssFabricSheet.d.ts +1226 -0
  47. package/dist/cssFabric/cssFabricSheet.js +1270 -0
  48. package/dist/cssFabric/cssProperties.d.ts +27 -0
  49. package/dist/cssFabric/cssProperties.js +343 -0
  50. package/dist/cssFabric/cssVariationsAi.d.ts +12 -0
  51. package/dist/cssFabric/cssVariationsAi.js +111 -0
  52. package/dist/cssFabric/index.d.ts +113 -0
  53. package/dist/cssFabric/index.js +341 -0
  54. package/dist/cssf/README.md +197 -0
  55. package/{init/importCssVars.d.ts → dist/cssf/cssf.d.ts} +1 -1
  56. package/dist/cssf/cssf.js +12 -0
  57. package/dist/cssf/cssfGuide.d.ts +14 -0
  58. package/dist/cssf/cssfGuide.js +50 -0
  59. package/dist/cssf/cssfLib.d.ts +134 -0
  60. package/dist/cssf/cssfLib.js +116 -0
  61. package/dist/cssf/cssfModel.d.ts +8 -0
  62. package/dist/cssf/cssfModel.js +59 -0
  63. package/dist/cssf/cssfPlugin.d.ts +3 -0
  64. package/dist/cssf/cssfPlugin.js +37 -0
  65. package/dist/cssf/cssfTransformer.d.ts +2 -0
  66. package/dist/cssf/cssfTransformer.js +100 -0
  67. package/dist/cssf/index.d.ts +6 -0
  68. package/dist/cssf/index.js +7 -0
  69. package/dist/cssfVsCode/.vscode/launch.json +17 -0
  70. package/dist/cssfVsCode/.vscodeignore +4 -0
  71. package/dist/cssfVsCode/CHANGELOG.md +9 -0
  72. package/dist/cssfVsCode/README.md +65 -0
  73. package/dist/cssfVsCode/language-configuration.json +36 -0
  74. package/dist/cssfVsCode/package.json +40 -0
  75. package/dist/cssfVsCode/syntaxes/cssf.tmLanguage.json +1868 -0
  76. package/dist/cssfVsCode/test.cssf +6 -0
  77. package/dist/cssfVsCode/vsc-extension-quickstart.md +29 -0
  78. package/{_generated → dist/generated}/cssFabric.vars.json +4 -4
  79. package/{_generated/export.variables.md → dist/generated/cssFabric.vars.md} +268 -240
  80. package/dist/index.d.ts +119 -0
  81. package/dist/index.js +120 -0
  82. package/dist/scripts/cssfabric.d.ts +24 -0
  83. package/{scripts → dist/scripts}/cssfabric.js +43 -43
  84. package/{scripts → dist/scripts}/cssfabricClassNames.d.ts +14 -14
  85. package/{scripts → dist/scripts}/cssfabricClassNames.js +146 -146
  86. package/dist/scripts/index.d.ts +2 -0
  87. package/{scripts → dist/scripts}/index.js +4 -4
  88. package/{scripts → dist/scripts}/utils.d.ts +5 -5
  89. package/{scripts → dist/scripts}/utils.js +38 -38
  90. package/dist/scss/_utils.scss +203 -0
  91. package/dist/scss/modules/_cssfabric-config.scss +178 -0
  92. package/dist/scss/modules/_mixins.scss +1 -0
  93. package/dist/scss/modules/animation/_animation-vars.scss +17 -0
  94. package/dist/scss/modules/animation/animation.scss +3 -0
  95. package/dist/scss/modules/base/_base-vars.scss +19 -0
  96. package/dist/scss/modules/base/base.scss +58 -0
  97. package/dist/scss/modules/box/_box-build.scss +305 -0
  98. package/dist/scss/modules/box/_box-vars.scss +121 -0
  99. package/dist/scss/modules/box/box-responsive.scss +18 -0
  100. package/dist/scss/modules/box/box.scss +3 -0
  101. package/dist/scss/modules/color/_color-build.scss +196 -0
  102. package/dist/scss/modules/color/_color-vars.scss +80 -0
  103. package/dist/scss/modules/color/color-responsive.scss +23 -0
  104. package/dist/scss/modules/color/color.scss +9 -0
  105. package/dist/scss/modules/css-fabric.scss +1 -0
  106. package/dist/scss/modules/flex/_flex-build.scss +150 -0
  107. package/dist/scss/modules/flex/_flex-vars.scss +84 -0
  108. package/dist/scss/modules/flex/flex-responsive.scss +25 -0
  109. package/dist/scss/modules/flex/flex.scss +3 -0
  110. package/dist/scss/modules/grid/_grid-build.scss +87 -0
  111. package/dist/scss/modules/grid/_grid-vars.scss +88 -0
  112. package/dist/scss/modules/grid/grid-responsive.scss +25 -0
  113. package/dist/scss/modules/grid/grid.scss +6 -0
  114. package/dist/scss/modules/menu/_menu-build.scss +120 -0
  115. package/dist/scss/modules/menu/_menu-vars.scss +29 -0
  116. package/dist/scss/modules/menu/menu-responsive.scss +19 -0
  117. package/dist/scss/modules/menu/menu.scss +6 -0
  118. package/dist/scss/modules/overflow/_overflow-build.scss +22 -0
  119. package/dist/scss/modules/overflow/_overflow-vars.scss +31 -0
  120. package/dist/scss/modules/overflow/overflow-responsive.scss +25 -0
  121. package/dist/scss/modules/overflow/overflow.scss +7 -0
  122. package/dist/scss/modules/scale/_scale-build.scss +142 -0
  123. package/dist/scss/modules/scale/_scale-vars.scss +84 -0
  124. package/dist/scss/modules/scale/scale-responsive.scss +23 -0
  125. package/dist/scss/modules/scale/scale.scss +8 -0
  126. package/dist/scss/modules/table/_table-build.scss +134 -0
  127. package/dist/scss/modules/table/_table-vars.scss +30 -0
  128. package/dist/scss/modules/table/table-responsive.scss +24 -0
  129. package/dist/scss/modules/table/table.scss +8 -0
  130. package/dist/scss/modules/text/_text-build.scss +166 -0
  131. package/dist/scss/modules/text/_text-vars.scss +87 -0
  132. package/dist/scss/modules/text/text-responsive.scss +26 -0
  133. package/dist/scss/modules/text/text.scss +6 -0
  134. package/dist/scss/modules/theme/_theme-build.scss +128 -0
  135. package/dist/scss/modules/theme/_theme-vars.scss +46 -0
  136. package/dist/scss/modules/theme/theme.scss +6 -0
  137. package/dist/scss/modules/vars.scss +46 -0
  138. package/dist/scss/modules/zindex/_zindex-vars.scss +14 -0
  139. package/dist/scss/modules/zindex/zindex.scss +15 -0
  140. package/package.json +70 -113
  141. package/_generated/readme.md +0 -0
  142. package/init/importCssVars.js +0 -2
  143. package/scripts/cssfabric.d.ts +0 -24
  144. package/scripts/index.d.ts +0 -2
  145. package/styles/animation/animation.css +0 -0
  146. package/styles/base/base.css +0 -215
  147. package/styles/base/base.min.css +0 -1
  148. package/styles/box/box.min.css +0 -1
  149. package/styles/box/box.responsive.min.css +0 -1
  150. package/styles/color/color.responsive.min.css +0 -1
  151. package/styles/cssfabric.css +0 -61792
  152. package/styles/cssfabric.min.css +0 -168
  153. package/styles/cssfabric.responsive.css +0 -200596
  154. package/styles/cssfabric.responsive.min.css +0 -108
  155. package/styles/flex/flex.responsive.min.css +0 -1
  156. package/styles/grid/grid.responsive.min.css +0 -1
  157. package/styles/menu/menu.responsive.min.css +0 -1
  158. package/styles/overflow/overflow.responsive.min.css +0 -1
  159. package/styles/scale/scale.responsive.min.css +0 -1
  160. package/styles/table/table.responsive.min.css +0 -1
  161. package/styles/text/text.responsive.min.css +0 -1
  162. package/styles/vars.min.css +0 -1
  163. /package/{styles → dist/css}/animation/animation.min.css +0 -0
  164. /package/{styles → dist/css}/color/color.min.css +0 -0
  165. /package/{styles → dist/css}/flex/flex.min.css +0 -0
  166. /package/{styles → dist/css}/grid/grid.min.css +0 -0
  167. /package/{styles → dist/css}/menu/menu.min.css +0 -0
  168. /package/{styles → dist/css}/overflow/overflow.min.css +0 -0
  169. /package/{styles → dist/css}/scale/scale.min.css +0 -0
  170. /package/{styles → dist/css}/table/table.min.css +0 -0
  171. /package/{styles → dist/css}/text/text.min.css +0 -0
  172. /package/{styles → dist/css}/zindex/zindex.min.css +0 -0
  173. /package/{_generated → dist/scss}/index.d.ts +0 -0
@@ -0,0 +1 @@
1
+ @media only screen and (min-width: 640px){.w-sm-full{width:100%}.w-sm-full-max{max-width:100%}.w-sm-full-min{min-width:100%}.w-sm-mid{width:50%}.w-sm-mid-max{max-width:50%}.w-sm-mid-min{min-width:50%}.w-sm-quarter{width:25%}.w-sm-quarter-max{max-width:25%}.w-sm-quarter-min{min-width:25%}.w-sm-tiers{width:33%}.w-sm-tiers-max{max-width:33%}.w-sm-tiers-min{min-width:33%}.w-sm-content-max{width:max-content}.w-sm-content-max-max{max-width:max-content}.w-sm-content-max-min{min-width:max-content}.w-sm-content-min{width:min-content}.w-sm-content-min-max{max-width:min-content}.w-sm-content-min-min{min-width:min-content}.w-sm-tiny{width:2rem}.w-sm-tiny-max{max-width:2rem}.w-sm-tiny-min{min-width:2rem}.w-sm-small{width:4rem}.w-sm-small-max{max-width:4rem}.w-sm-small-min{min-width:4rem}.w-sm-medium{width:8rem}.w-sm-medium-max{max-width:8rem}.w-sm-medium-min{min-width:8rem}.w-sm-large{width:16rem}.w-sm-large-max{max-width:16rem}.w-sm-large-min{min-width:16rem}.w-sm-wide{width:32rem}.w-sm-wide-max{max-width:32rem}.w-sm-wide-min{min-width:32rem}.w-sm-1{width:1rem}.w-sm-1-max{max-width:1rem}.w-sm-1-min{min-width:1rem}.w-sm-2{width:2rem}.w-sm-2-max{max-width:2rem}.w-sm-2-min{min-width:2rem}.w-sm-4{width:4rem}.w-sm-4-max{max-width:4rem}.w-sm-4-min{min-width:4rem}.w-sm-8{width:8rem}.w-sm-8-max{max-width:8rem}.w-sm-8-min{min-width:8rem}.w-sm-16{width:16rem}.w-sm-16-max{max-width:16rem}.w-sm-16-min{min-width:16rem}.w-sm-24{width:24rem}.w-sm-24-max{max-width:24rem}.w-sm-24-min{min-width:24rem}.w-sm-32{width:32rem}.w-sm-32-max{max-width:32rem}.w-sm-32-min{min-width:32rem}.w-sm-48{width:48rem}.w-sm-48-max{max-width:48rem}.w-sm-48-min{min-width:48rem}.w-sm-64{width:64rem}.w-sm-64-max{max-width:64rem}.w-sm-64-min{min-width:64rem}.w-sm-1-16{width:6.25%}.w-sm-1-16-max{max-width:6.25%}.w-sm-1-16-min{min-width:6.25%}.w-sm-2-16{width:12.5%}.w-sm-2-16-max{max-width:12.5%}.w-sm-2-16-min{min-width:12.5%}.w-sm-3-16{width:18.75%}.w-sm-3-16-max{max-width:18.75%}.w-sm-3-16-min{min-width:18.75%}.w-sm-4-16{width:25%}.w-sm-4-16-max{max-width:25%}.w-sm-4-16-min{min-width:25%}.w-sm-5-16{width:31.25%}.w-sm-5-16-max{max-width:31.25%}.w-sm-5-16-min{min-width:31.25%}.w-sm-6-16{width:37.5%}.w-sm-6-16-max{max-width:37.5%}.w-sm-6-16-min{min-width:37.5%}.w-sm-7-16{width:43.75%}.w-sm-7-16-max{max-width:43.75%}.w-sm-7-16-min{min-width:43.75%}.w-sm-8-16{width:50%}.w-sm-8-16-max{max-width:50%}.w-sm-8-16-min{min-width:50%}.w-sm-9-16{width:56.25%}.w-sm-9-16-max{max-width:56.25%}.w-sm-9-16-min{min-width:56.25%}.w-sm-10-16{width:62.5%}.w-sm-10-16-max{max-width:62.5%}.w-sm-10-16-min{min-width:62.5%}.w-sm-11-16{width:68.75%}.w-sm-11-16-max{max-width:68.75%}.w-sm-11-16-min{min-width:68.75%}.w-sm-12-16{width:75%}.w-sm-12-16-max{max-width:75%}.w-sm-12-16-min{min-width:75%}.w-sm-13-16{width:81.25%}.w-sm-13-16-max{max-width:81.25%}.w-sm-13-16-min{min-width:81.25%}.w-sm-14-16{width:87.5%}.w-sm-14-16-max{max-width:87.5%}.w-sm-14-16-min{min-width:87.5%}.w-sm-15-16{width:93.75%}.w-sm-15-16-max{max-width:93.75%}.w-sm-15-16-min{min-width:93.75%}.w-sm-16-16{width:100%}.w-sm-16-16-max{max-width:100%}.w-sm-16-16-min{min-width:100%}.h-sm-full{height:100%}.h-sm-full-max{max-height:100%}.h-sm-full-min{min-height:100%}.h-sm-mid{height:50%}.h-sm-mid-max{max-height:50%}.h-sm-mid-min{min-height:50%}.h-sm-quarter{height:25%}.h-sm-quarter-max{max-height:25%}.h-sm-quarter-min{min-height:25%}.h-sm-tiers{height:33%}.h-sm-tiers-max{max-height:33%}.h-sm-tiers-min{min-height:33%}.h-sm-content-max{height:max-content}.h-sm-content-max-max{max-height:max-content}.h-sm-content-max-min{min-height:max-content}.h-sm-content-min{height:min-content}.h-sm-content-min-max{max-height:min-content}.h-sm-content-min-min{min-height:min-content}.h-sm-tiny{height:2rem}.h-sm-tiny-max{max-height:2rem}.h-sm-tiny-min{min-height:2rem}.h-sm-small{height:4rem}.h-sm-small-max{max-height:4rem}.h-sm-small-min{min-height:4rem}.h-sm-medium{height:8rem}.h-sm-medium-max{max-height:8rem}.h-sm-medium-min{min-height:8rem}.h-sm-large{height:16rem}.h-sm-large-max{max-height:16rem}.h-sm-large-min{min-height:16rem}.h-sm-wide{height:32rem}.h-sm-wide-max{max-height:32rem}.h-sm-wide-min{min-height:32rem}.h-sm-1{height:1rem}.h-sm-1-max{max-height:1rem}.h-sm-1-min{min-height:1rem}.h-sm-2{height:2rem}.h-sm-2-max{max-height:2rem}.h-sm-2-min{min-height:2rem}.h-sm-4{height:4rem}.h-sm-4-max{max-height:4rem}.h-sm-4-min{min-height:4rem}.h-sm-8{height:8rem}.h-sm-8-max{max-height:8rem}.h-sm-8-min{min-height:8rem}.h-sm-16{height:16rem}.h-sm-16-max{max-height:16rem}.h-sm-16-min{min-height:16rem}.h-sm-24{height:24rem}.h-sm-24-max{max-height:24rem}.h-sm-24-min{min-height:24rem}.h-sm-32{height:32rem}.h-sm-32-max{max-height:32rem}.h-sm-32-min{min-height:32rem}.h-sm-48{height:48rem}.h-sm-48-max{max-height:48rem}.h-sm-48-min{min-height:48rem}.h-sm-64{height:64rem}.h-sm-64-max{max-height:64rem}.h-sm-64-min{min-height:64rem}.h-sm-1-16{height:6.25%}.h-sm-1-16-max{max-height:6.25%}.h-sm-1-16-min{min-height:6.25%}.h-sm-2-16{height:12.5%}.h-sm-2-16-max{max-height:12.5%}.h-sm-2-16-min{min-height:12.5%}.h-sm-3-16{height:18.75%}.h-sm-3-16-max{max-height:18.75%}.h-sm-3-16-min{min-height:18.75%}.h-sm-4-16{height:25%}.h-sm-4-16-max{max-height:25%}.h-sm-4-16-min{min-height:25%}.h-sm-5-16{height:31.25%}.h-sm-5-16-max{max-height:31.25%}.h-sm-5-16-min{min-height:31.25%}.h-sm-6-16{height:37.5%}.h-sm-6-16-max{max-height:37.5%}.h-sm-6-16-min{min-height:37.5%}.h-sm-7-16{height:43.75%}.h-sm-7-16-max{max-height:43.75%}.h-sm-7-16-min{min-height:43.75%}.h-sm-8-16{height:50%}.h-sm-8-16-max{max-height:50%}.h-sm-8-16-min{min-height:50%}.h-sm-9-16{height:56.25%}.h-sm-9-16-max{max-height:56.25%}.h-sm-9-16-min{min-height:56.25%}.h-sm-10-16{height:62.5%}.h-sm-10-16-max{max-height:62.5%}.h-sm-10-16-min{min-height:62.5%}.h-sm-11-16{height:68.75%}.h-sm-11-16-max{max-height:68.75%}.h-sm-11-16-min{min-height:68.75%}.h-sm-12-16{height:75%}.h-sm-12-16-max{max-height:75%}.h-sm-12-16-min{min-height:75%}.h-sm-13-16{height:81.25%}.h-sm-13-16-max{max-height:81.25%}.h-sm-13-16-min{min-height:81.25%}.h-sm-14-16{height:87.5%}.h-sm-14-16-max{max-height:87.5%}.h-sm-14-16-min{min-height:87.5%}.h-sm-15-16{height:93.75%}.h-sm-15-16-max{max-height:93.75%}.h-sm-15-16-min{min-height:93.75%}.h-sm-16-16{height:100%}.h-sm-16-16-max{max-height:100%}.h-sm-16-16-min{min-height:100%}}@media only screen and (min-width: 768px){.w-md-full{width:100%}.w-md-full-max{max-width:100%}.w-md-full-min{min-width:100%}.w-md-mid{width:50%}.w-md-mid-max{max-width:50%}.w-md-mid-min{min-width:50%}.w-md-quarter{width:25%}.w-md-quarter-max{max-width:25%}.w-md-quarter-min{min-width:25%}.w-md-tiers{width:33%}.w-md-tiers-max{max-width:33%}.w-md-tiers-min{min-width:33%}.w-md-content-max{width:max-content}.w-md-content-max-max{max-width:max-content}.w-md-content-max-min{min-width:max-content}.w-md-content-min{width:min-content}.w-md-content-min-max{max-width:min-content}.w-md-content-min-min{min-width:min-content}.w-md-tiny{width:2rem}.w-md-tiny-max{max-width:2rem}.w-md-tiny-min{min-width:2rem}.w-md-small{width:4rem}.w-md-small-max{max-width:4rem}.w-md-small-min{min-width:4rem}.w-md-medium{width:8rem}.w-md-medium-max{max-width:8rem}.w-md-medium-min{min-width:8rem}.w-md-large{width:16rem}.w-md-large-max{max-width:16rem}.w-md-large-min{min-width:16rem}.w-md-wide{width:32rem}.w-md-wide-max{max-width:32rem}.w-md-wide-min{min-width:32rem}.w-md-1{width:1rem}.w-md-1-max{max-width:1rem}.w-md-1-min{min-width:1rem}.w-md-2{width:2rem}.w-md-2-max{max-width:2rem}.w-md-2-min{min-width:2rem}.w-md-4{width:4rem}.w-md-4-max{max-width:4rem}.w-md-4-min{min-width:4rem}.w-md-8{width:8rem}.w-md-8-max{max-width:8rem}.w-md-8-min{min-width:8rem}.w-md-16{width:16rem}.w-md-16-max{max-width:16rem}.w-md-16-min{min-width:16rem}.w-md-24{width:24rem}.w-md-24-max{max-width:24rem}.w-md-24-min{min-width:24rem}.w-md-32{width:32rem}.w-md-32-max{max-width:32rem}.w-md-32-min{min-width:32rem}.w-md-48{width:48rem}.w-md-48-max{max-width:48rem}.w-md-48-min{min-width:48rem}.w-md-64{width:64rem}.w-md-64-max{max-width:64rem}.w-md-64-min{min-width:64rem}.w-md-1-16{width:6.25%}.w-md-1-16-max{max-width:6.25%}.w-md-1-16-min{min-width:6.25%}.w-md-2-16{width:12.5%}.w-md-2-16-max{max-width:12.5%}.w-md-2-16-min{min-width:12.5%}.w-md-3-16{width:18.75%}.w-md-3-16-max{max-width:18.75%}.w-md-3-16-min{min-width:18.75%}.w-md-4-16{width:25%}.w-md-4-16-max{max-width:25%}.w-md-4-16-min{min-width:25%}.w-md-5-16{width:31.25%}.w-md-5-16-max{max-width:31.25%}.w-md-5-16-min{min-width:31.25%}.w-md-6-16{width:37.5%}.w-md-6-16-max{max-width:37.5%}.w-md-6-16-min{min-width:37.5%}.w-md-7-16{width:43.75%}.w-md-7-16-max{max-width:43.75%}.w-md-7-16-min{min-width:43.75%}.w-md-8-16{width:50%}.w-md-8-16-max{max-width:50%}.w-md-8-16-min{min-width:50%}.w-md-9-16{width:56.25%}.w-md-9-16-max{max-width:56.25%}.w-md-9-16-min{min-width:56.25%}.w-md-10-16{width:62.5%}.w-md-10-16-max{max-width:62.5%}.w-md-10-16-min{min-width:62.5%}.w-md-11-16{width:68.75%}.w-md-11-16-max{max-width:68.75%}.w-md-11-16-min{min-width:68.75%}.w-md-12-16{width:75%}.w-md-12-16-max{max-width:75%}.w-md-12-16-min{min-width:75%}.w-md-13-16{width:81.25%}.w-md-13-16-max{max-width:81.25%}.w-md-13-16-min{min-width:81.25%}.w-md-14-16{width:87.5%}.w-md-14-16-max{max-width:87.5%}.w-md-14-16-min{min-width:87.5%}.w-md-15-16{width:93.75%}.w-md-15-16-max{max-width:93.75%}.w-md-15-16-min{min-width:93.75%}.w-md-16-16{width:100%}.w-md-16-16-max{max-width:100%}.w-md-16-16-min{min-width:100%}.h-md-full{height:100%}.h-md-full-max{max-height:100%}.h-md-full-min{min-height:100%}.h-md-mid{height:50%}.h-md-mid-max{max-height:50%}.h-md-mid-min{min-height:50%}.h-md-quarter{height:25%}.h-md-quarter-max{max-height:25%}.h-md-quarter-min{min-height:25%}.h-md-tiers{height:33%}.h-md-tiers-max{max-height:33%}.h-md-tiers-min{min-height:33%}.h-md-content-max{height:max-content}.h-md-content-max-max{max-height:max-content}.h-md-content-max-min{min-height:max-content}.h-md-content-min{height:min-content}.h-md-content-min-max{max-height:min-content}.h-md-content-min-min{min-height:min-content}.h-md-tiny{height:2rem}.h-md-tiny-max{max-height:2rem}.h-md-tiny-min{min-height:2rem}.h-md-small{height:4rem}.h-md-small-max{max-height:4rem}.h-md-small-min{min-height:4rem}.h-md-medium{height:8rem}.h-md-medium-max{max-height:8rem}.h-md-medium-min{min-height:8rem}.h-md-large{height:16rem}.h-md-large-max{max-height:16rem}.h-md-large-min{min-height:16rem}.h-md-wide{height:32rem}.h-md-wide-max{max-height:32rem}.h-md-wide-min{min-height:32rem}.h-md-1{height:1rem}.h-md-1-max{max-height:1rem}.h-md-1-min{min-height:1rem}.h-md-2{height:2rem}.h-md-2-max{max-height:2rem}.h-md-2-min{min-height:2rem}.h-md-4{height:4rem}.h-md-4-max{max-height:4rem}.h-md-4-min{min-height:4rem}.h-md-8{height:8rem}.h-md-8-max{max-height:8rem}.h-md-8-min{min-height:8rem}.h-md-16{height:16rem}.h-md-16-max{max-height:16rem}.h-md-16-min{min-height:16rem}.h-md-24{height:24rem}.h-md-24-max{max-height:24rem}.h-md-24-min{min-height:24rem}.h-md-32{height:32rem}.h-md-32-max{max-height:32rem}.h-md-32-min{min-height:32rem}.h-md-48{height:48rem}.h-md-48-max{max-height:48rem}.h-md-48-min{min-height:48rem}.h-md-64{height:64rem}.h-md-64-max{max-height:64rem}.h-md-64-min{min-height:64rem}.h-md-1-16{height:6.25%}.h-md-1-16-max{max-height:6.25%}.h-md-1-16-min{min-height:6.25%}.h-md-2-16{height:12.5%}.h-md-2-16-max{max-height:12.5%}.h-md-2-16-min{min-height:12.5%}.h-md-3-16{height:18.75%}.h-md-3-16-max{max-height:18.75%}.h-md-3-16-min{min-height:18.75%}.h-md-4-16{height:25%}.h-md-4-16-max{max-height:25%}.h-md-4-16-min{min-height:25%}.h-md-5-16{height:31.25%}.h-md-5-16-max{max-height:31.25%}.h-md-5-16-min{min-height:31.25%}.h-md-6-16{height:37.5%}.h-md-6-16-max{max-height:37.5%}.h-md-6-16-min{min-height:37.5%}.h-md-7-16{height:43.75%}.h-md-7-16-max{max-height:43.75%}.h-md-7-16-min{min-height:43.75%}.h-md-8-16{height:50%}.h-md-8-16-max{max-height:50%}.h-md-8-16-min{min-height:50%}.h-md-9-16{height:56.25%}.h-md-9-16-max{max-height:56.25%}.h-md-9-16-min{min-height:56.25%}.h-md-10-16{height:62.5%}.h-md-10-16-max{max-height:62.5%}.h-md-10-16-min{min-height:62.5%}.h-md-11-16{height:68.75%}.h-md-11-16-max{max-height:68.75%}.h-md-11-16-min{min-height:68.75%}.h-md-12-16{height:75%}.h-md-12-16-max{max-height:75%}.h-md-12-16-min{min-height:75%}.h-md-13-16{height:81.25%}.h-md-13-16-max{max-height:81.25%}.h-md-13-16-min{min-height:81.25%}.h-md-14-16{height:87.5%}.h-md-14-16-max{max-height:87.5%}.h-md-14-16-min{min-height:87.5%}.h-md-15-16{height:93.75%}.h-md-15-16-max{max-height:93.75%}.h-md-15-16-min{min-height:93.75%}.h-md-16-16{height:100%}.h-md-16-16-max{max-height:100%}.h-md-16-16-min{min-height:100%}}@media only screen and (min-width: 1024px){.w-lg-full{width:100%}.w-lg-full-max{max-width:100%}.w-lg-full-min{min-width:100%}.w-lg-mid{width:50%}.w-lg-mid-max{max-width:50%}.w-lg-mid-min{min-width:50%}.w-lg-quarter{width:25%}.w-lg-quarter-max{max-width:25%}.w-lg-quarter-min{min-width:25%}.w-lg-tiers{width:33%}.w-lg-tiers-max{max-width:33%}.w-lg-tiers-min{min-width:33%}.w-lg-content-max{width:max-content}.w-lg-content-max-max{max-width:max-content}.w-lg-content-max-min{min-width:max-content}.w-lg-content-min{width:min-content}.w-lg-content-min-max{max-width:min-content}.w-lg-content-min-min{min-width:min-content}.w-lg-tiny{width:2rem}.w-lg-tiny-max{max-width:2rem}.w-lg-tiny-min{min-width:2rem}.w-lg-small{width:4rem}.w-lg-small-max{max-width:4rem}.w-lg-small-min{min-width:4rem}.w-lg-medium{width:8rem}.w-lg-medium-max{max-width:8rem}.w-lg-medium-min{min-width:8rem}.w-lg-large{width:16rem}.w-lg-large-max{max-width:16rem}.w-lg-large-min{min-width:16rem}.w-lg-wide{width:32rem}.w-lg-wide-max{max-width:32rem}.w-lg-wide-min{min-width:32rem}.w-lg-1{width:1rem}.w-lg-1-max{max-width:1rem}.w-lg-1-min{min-width:1rem}.w-lg-2{width:2rem}.w-lg-2-max{max-width:2rem}.w-lg-2-min{min-width:2rem}.w-lg-4{width:4rem}.w-lg-4-max{max-width:4rem}.w-lg-4-min{min-width:4rem}.w-lg-8{width:8rem}.w-lg-8-max{max-width:8rem}.w-lg-8-min{min-width:8rem}.w-lg-16{width:16rem}.w-lg-16-max{max-width:16rem}.w-lg-16-min{min-width:16rem}.w-lg-24{width:24rem}.w-lg-24-max{max-width:24rem}.w-lg-24-min{min-width:24rem}.w-lg-32{width:32rem}.w-lg-32-max{max-width:32rem}.w-lg-32-min{min-width:32rem}.w-lg-48{width:48rem}.w-lg-48-max{max-width:48rem}.w-lg-48-min{min-width:48rem}.w-lg-64{width:64rem}.w-lg-64-max{max-width:64rem}.w-lg-64-min{min-width:64rem}.w-lg-1-16{width:6.25%}.w-lg-1-16-max{max-width:6.25%}.w-lg-1-16-min{min-width:6.25%}.w-lg-2-16{width:12.5%}.w-lg-2-16-max{max-width:12.5%}.w-lg-2-16-min{min-width:12.5%}.w-lg-3-16{width:18.75%}.w-lg-3-16-max{max-width:18.75%}.w-lg-3-16-min{min-width:18.75%}.w-lg-4-16{width:25%}.w-lg-4-16-max{max-width:25%}.w-lg-4-16-min{min-width:25%}.w-lg-5-16{width:31.25%}.w-lg-5-16-max{max-width:31.25%}.w-lg-5-16-min{min-width:31.25%}.w-lg-6-16{width:37.5%}.w-lg-6-16-max{max-width:37.5%}.w-lg-6-16-min{min-width:37.5%}.w-lg-7-16{width:43.75%}.w-lg-7-16-max{max-width:43.75%}.w-lg-7-16-min{min-width:43.75%}.w-lg-8-16{width:50%}.w-lg-8-16-max{max-width:50%}.w-lg-8-16-min{min-width:50%}.w-lg-9-16{width:56.25%}.w-lg-9-16-max{max-width:56.25%}.w-lg-9-16-min{min-width:56.25%}.w-lg-10-16{width:62.5%}.w-lg-10-16-max{max-width:62.5%}.w-lg-10-16-min{min-width:62.5%}.w-lg-11-16{width:68.75%}.w-lg-11-16-max{max-width:68.75%}.w-lg-11-16-min{min-width:68.75%}.w-lg-12-16{width:75%}.w-lg-12-16-max{max-width:75%}.w-lg-12-16-min{min-width:75%}.w-lg-13-16{width:81.25%}.w-lg-13-16-max{max-width:81.25%}.w-lg-13-16-min{min-width:81.25%}.w-lg-14-16{width:87.5%}.w-lg-14-16-max{max-width:87.5%}.w-lg-14-16-min{min-width:87.5%}.w-lg-15-16{width:93.75%}.w-lg-15-16-max{max-width:93.75%}.w-lg-15-16-min{min-width:93.75%}.w-lg-16-16{width:100%}.w-lg-16-16-max{max-width:100%}.w-lg-16-16-min{min-width:100%}.h-lg-full{height:100%}.h-lg-full-max{max-height:100%}.h-lg-full-min{min-height:100%}.h-lg-mid{height:50%}.h-lg-mid-max{max-height:50%}.h-lg-mid-min{min-height:50%}.h-lg-quarter{height:25%}.h-lg-quarter-max{max-height:25%}.h-lg-quarter-min{min-height:25%}.h-lg-tiers{height:33%}.h-lg-tiers-max{max-height:33%}.h-lg-tiers-min{min-height:33%}.h-lg-content-max{height:max-content}.h-lg-content-max-max{max-height:max-content}.h-lg-content-max-min{min-height:max-content}.h-lg-content-min{height:min-content}.h-lg-content-min-max{max-height:min-content}.h-lg-content-min-min{min-height:min-content}.h-lg-tiny{height:2rem}.h-lg-tiny-max{max-height:2rem}.h-lg-tiny-min{min-height:2rem}.h-lg-small{height:4rem}.h-lg-small-max{max-height:4rem}.h-lg-small-min{min-height:4rem}.h-lg-medium{height:8rem}.h-lg-medium-max{max-height:8rem}.h-lg-medium-min{min-height:8rem}.h-lg-large{height:16rem}.h-lg-large-max{max-height:16rem}.h-lg-large-min{min-height:16rem}.h-lg-wide{height:32rem}.h-lg-wide-max{max-height:32rem}.h-lg-wide-min{min-height:32rem}.h-lg-1{height:1rem}.h-lg-1-max{max-height:1rem}.h-lg-1-min{min-height:1rem}.h-lg-2{height:2rem}.h-lg-2-max{max-height:2rem}.h-lg-2-min{min-height:2rem}.h-lg-4{height:4rem}.h-lg-4-max{max-height:4rem}.h-lg-4-min{min-height:4rem}.h-lg-8{height:8rem}.h-lg-8-max{max-height:8rem}.h-lg-8-min{min-height:8rem}.h-lg-16{height:16rem}.h-lg-16-max{max-height:16rem}.h-lg-16-min{min-height:16rem}.h-lg-24{height:24rem}.h-lg-24-max{max-height:24rem}.h-lg-24-min{min-height:24rem}.h-lg-32{height:32rem}.h-lg-32-max{max-height:32rem}.h-lg-32-min{min-height:32rem}.h-lg-48{height:48rem}.h-lg-48-max{max-height:48rem}.h-lg-48-min{min-height:48rem}.h-lg-64{height:64rem}.h-lg-64-max{max-height:64rem}.h-lg-64-min{min-height:64rem}.h-lg-1-16{height:6.25%}.h-lg-1-16-max{max-height:6.25%}.h-lg-1-16-min{min-height:6.25%}.h-lg-2-16{height:12.5%}.h-lg-2-16-max{max-height:12.5%}.h-lg-2-16-min{min-height:12.5%}.h-lg-3-16{height:18.75%}.h-lg-3-16-max{max-height:18.75%}.h-lg-3-16-min{min-height:18.75%}.h-lg-4-16{height:25%}.h-lg-4-16-max{max-height:25%}.h-lg-4-16-min{min-height:25%}.h-lg-5-16{height:31.25%}.h-lg-5-16-max{max-height:31.25%}.h-lg-5-16-min{min-height:31.25%}.h-lg-6-16{height:37.5%}.h-lg-6-16-max{max-height:37.5%}.h-lg-6-16-min{min-height:37.5%}.h-lg-7-16{height:43.75%}.h-lg-7-16-max{max-height:43.75%}.h-lg-7-16-min{min-height:43.75%}.h-lg-8-16{height:50%}.h-lg-8-16-max{max-height:50%}.h-lg-8-16-min{min-height:50%}.h-lg-9-16{height:56.25%}.h-lg-9-16-max{max-height:56.25%}.h-lg-9-16-min{min-height:56.25%}.h-lg-10-16{height:62.5%}.h-lg-10-16-max{max-height:62.5%}.h-lg-10-16-min{min-height:62.5%}.h-lg-11-16{height:68.75%}.h-lg-11-16-max{max-height:68.75%}.h-lg-11-16-min{min-height:68.75%}.h-lg-12-16{height:75%}.h-lg-12-16-max{max-height:75%}.h-lg-12-16-min{min-height:75%}.h-lg-13-16{height:81.25%}.h-lg-13-16-max{max-height:81.25%}.h-lg-13-16-min{min-height:81.25%}.h-lg-14-16{height:87.5%}.h-lg-14-16-max{max-height:87.5%}.h-lg-14-16-min{min-height:87.5%}.h-lg-15-16{height:93.75%}.h-lg-15-16-max{max-height:93.75%}.h-lg-15-16-min{min-height:93.75%}.h-lg-16-16{height:100%}.h-lg-16-16-max{max-height:100%}.h-lg-16-16-min{min-height:100%}}@media only screen and (min-width: 1280px){.w-xl-full{width:100%}.w-xl-full-max{max-width:100%}.w-xl-full-min{min-width:100%}.w-xl-mid{width:50%}.w-xl-mid-max{max-width:50%}.w-xl-mid-min{min-width:50%}.w-xl-quarter{width:25%}.w-xl-quarter-max{max-width:25%}.w-xl-quarter-min{min-width:25%}.w-xl-tiers{width:33%}.w-xl-tiers-max{max-width:33%}.w-xl-tiers-min{min-width:33%}.w-xl-content-max{width:max-content}.w-xl-content-max-max{max-width:max-content}.w-xl-content-max-min{min-width:max-content}.w-xl-content-min{width:min-content}.w-xl-content-min-max{max-width:min-content}.w-xl-content-min-min{min-width:min-content}.w-xl-tiny{width:2rem}.w-xl-tiny-max{max-width:2rem}.w-xl-tiny-min{min-width:2rem}.w-xl-small{width:4rem}.w-xl-small-max{max-width:4rem}.w-xl-small-min{min-width:4rem}.w-xl-medium{width:8rem}.w-xl-medium-max{max-width:8rem}.w-xl-medium-min{min-width:8rem}.w-xl-large{width:16rem}.w-xl-large-max{max-width:16rem}.w-xl-large-min{min-width:16rem}.w-xl-wide{width:32rem}.w-xl-wide-max{max-width:32rem}.w-xl-wide-min{min-width:32rem}.w-xl-1{width:1rem}.w-xl-1-max{max-width:1rem}.w-xl-1-min{min-width:1rem}.w-xl-2{width:2rem}.w-xl-2-max{max-width:2rem}.w-xl-2-min{min-width:2rem}.w-xl-4{width:4rem}.w-xl-4-max{max-width:4rem}.w-xl-4-min{min-width:4rem}.w-xl-8{width:8rem}.w-xl-8-max{max-width:8rem}.w-xl-8-min{min-width:8rem}.w-xl-16{width:16rem}.w-xl-16-max{max-width:16rem}.w-xl-16-min{min-width:16rem}.w-xl-24{width:24rem}.w-xl-24-max{max-width:24rem}.w-xl-24-min{min-width:24rem}.w-xl-32{width:32rem}.w-xl-32-max{max-width:32rem}.w-xl-32-min{min-width:32rem}.w-xl-48{width:48rem}.w-xl-48-max{max-width:48rem}.w-xl-48-min{min-width:48rem}.w-xl-64{width:64rem}.w-xl-64-max{max-width:64rem}.w-xl-64-min{min-width:64rem}.w-xl-1-16{width:6.25%}.w-xl-1-16-max{max-width:6.25%}.w-xl-1-16-min{min-width:6.25%}.w-xl-2-16{width:12.5%}.w-xl-2-16-max{max-width:12.5%}.w-xl-2-16-min{min-width:12.5%}.w-xl-3-16{width:18.75%}.w-xl-3-16-max{max-width:18.75%}.w-xl-3-16-min{min-width:18.75%}.w-xl-4-16{width:25%}.w-xl-4-16-max{max-width:25%}.w-xl-4-16-min{min-width:25%}.w-xl-5-16{width:31.25%}.w-xl-5-16-max{max-width:31.25%}.w-xl-5-16-min{min-width:31.25%}.w-xl-6-16{width:37.5%}.w-xl-6-16-max{max-width:37.5%}.w-xl-6-16-min{min-width:37.5%}.w-xl-7-16{width:43.75%}.w-xl-7-16-max{max-width:43.75%}.w-xl-7-16-min{min-width:43.75%}.w-xl-8-16{width:50%}.w-xl-8-16-max{max-width:50%}.w-xl-8-16-min{min-width:50%}.w-xl-9-16{width:56.25%}.w-xl-9-16-max{max-width:56.25%}.w-xl-9-16-min{min-width:56.25%}.w-xl-10-16{width:62.5%}.w-xl-10-16-max{max-width:62.5%}.w-xl-10-16-min{min-width:62.5%}.w-xl-11-16{width:68.75%}.w-xl-11-16-max{max-width:68.75%}.w-xl-11-16-min{min-width:68.75%}.w-xl-12-16{width:75%}.w-xl-12-16-max{max-width:75%}.w-xl-12-16-min{min-width:75%}.w-xl-13-16{width:81.25%}.w-xl-13-16-max{max-width:81.25%}.w-xl-13-16-min{min-width:81.25%}.w-xl-14-16{width:87.5%}.w-xl-14-16-max{max-width:87.5%}.w-xl-14-16-min{min-width:87.5%}.w-xl-15-16{width:93.75%}.w-xl-15-16-max{max-width:93.75%}.w-xl-15-16-min{min-width:93.75%}.w-xl-16-16{width:100%}.w-xl-16-16-max{max-width:100%}.w-xl-16-16-min{min-width:100%}.h-xl-full{height:100%}.h-xl-full-max{max-height:100%}.h-xl-full-min{min-height:100%}.h-xl-mid{height:50%}.h-xl-mid-max{max-height:50%}.h-xl-mid-min{min-height:50%}.h-xl-quarter{height:25%}.h-xl-quarter-max{max-height:25%}.h-xl-quarter-min{min-height:25%}.h-xl-tiers{height:33%}.h-xl-tiers-max{max-height:33%}.h-xl-tiers-min{min-height:33%}.h-xl-content-max{height:max-content}.h-xl-content-max-max{max-height:max-content}.h-xl-content-max-min{min-height:max-content}.h-xl-content-min{height:min-content}.h-xl-content-min-max{max-height:min-content}.h-xl-content-min-min{min-height:min-content}.h-xl-tiny{height:2rem}.h-xl-tiny-max{max-height:2rem}.h-xl-tiny-min{min-height:2rem}.h-xl-small{height:4rem}.h-xl-small-max{max-height:4rem}.h-xl-small-min{min-height:4rem}.h-xl-medium{height:8rem}.h-xl-medium-max{max-height:8rem}.h-xl-medium-min{min-height:8rem}.h-xl-large{height:16rem}.h-xl-large-max{max-height:16rem}.h-xl-large-min{min-height:16rem}.h-xl-wide{height:32rem}.h-xl-wide-max{max-height:32rem}.h-xl-wide-min{min-height:32rem}.h-xl-1{height:1rem}.h-xl-1-max{max-height:1rem}.h-xl-1-min{min-height:1rem}.h-xl-2{height:2rem}.h-xl-2-max{max-height:2rem}.h-xl-2-min{min-height:2rem}.h-xl-4{height:4rem}.h-xl-4-max{max-height:4rem}.h-xl-4-min{min-height:4rem}.h-xl-8{height:8rem}.h-xl-8-max{max-height:8rem}.h-xl-8-min{min-height:8rem}.h-xl-16{height:16rem}.h-xl-16-max{max-height:16rem}.h-xl-16-min{min-height:16rem}.h-xl-24{height:24rem}.h-xl-24-max{max-height:24rem}.h-xl-24-min{min-height:24rem}.h-xl-32{height:32rem}.h-xl-32-max{max-height:32rem}.h-xl-32-min{min-height:32rem}.h-xl-48{height:48rem}.h-xl-48-max{max-height:48rem}.h-xl-48-min{min-height:48rem}.h-xl-64{height:64rem}.h-xl-64-max{max-height:64rem}.h-xl-64-min{min-height:64rem}.h-xl-1-16{height:6.25%}.h-xl-1-16-max{max-height:6.25%}.h-xl-1-16-min{min-height:6.25%}.h-xl-2-16{height:12.5%}.h-xl-2-16-max{max-height:12.5%}.h-xl-2-16-min{min-height:12.5%}.h-xl-3-16{height:18.75%}.h-xl-3-16-max{max-height:18.75%}.h-xl-3-16-min{min-height:18.75%}.h-xl-4-16{height:25%}.h-xl-4-16-max{max-height:25%}.h-xl-4-16-min{min-height:25%}.h-xl-5-16{height:31.25%}.h-xl-5-16-max{max-height:31.25%}.h-xl-5-16-min{min-height:31.25%}.h-xl-6-16{height:37.5%}.h-xl-6-16-max{max-height:37.5%}.h-xl-6-16-min{min-height:37.5%}.h-xl-7-16{height:43.75%}.h-xl-7-16-max{max-height:43.75%}.h-xl-7-16-min{min-height:43.75%}.h-xl-8-16{height:50%}.h-xl-8-16-max{max-height:50%}.h-xl-8-16-min{min-height:50%}.h-xl-9-16{height:56.25%}.h-xl-9-16-max{max-height:56.25%}.h-xl-9-16-min{min-height:56.25%}.h-xl-10-16{height:62.5%}.h-xl-10-16-max{max-height:62.5%}.h-xl-10-16-min{min-height:62.5%}.h-xl-11-16{height:68.75%}.h-xl-11-16-max{max-height:68.75%}.h-xl-11-16-min{min-height:68.75%}.h-xl-12-16{height:75%}.h-xl-12-16-max{max-height:75%}.h-xl-12-16-min{min-height:75%}.h-xl-13-16{height:81.25%}.h-xl-13-16-max{max-height:81.25%}.h-xl-13-16-min{min-height:81.25%}.h-xl-14-16{height:87.5%}.h-xl-14-16-max{max-height:87.5%}.h-xl-14-16-min{min-height:87.5%}.h-xl-15-16{height:93.75%}.h-xl-15-16-max{max-height:93.75%}.h-xl-15-16-min{min-height:93.75%}.h-xl-16-16{height:100%}.h-xl-16-16-max{max-height:100%}.h-xl-16-16-min{min-height:100%}}@media only screen and (min-width: 1540px){.w-xxl-full{width:100%}.w-xxl-full-max{max-width:100%}.w-xxl-full-min{min-width:100%}.w-xxl-mid{width:50%}.w-xxl-mid-max{max-width:50%}.w-xxl-mid-min{min-width:50%}.w-xxl-quarter{width:25%}.w-xxl-quarter-max{max-width:25%}.w-xxl-quarter-min{min-width:25%}.w-xxl-tiers{width:33%}.w-xxl-tiers-max{max-width:33%}.w-xxl-tiers-min{min-width:33%}.w-xxl-content-max{width:max-content}.w-xxl-content-max-max{max-width:max-content}.w-xxl-content-max-min{min-width:max-content}.w-xxl-content-min{width:min-content}.w-xxl-content-min-max{max-width:min-content}.w-xxl-content-min-min{min-width:min-content}.w-xxl-tiny{width:2rem}.w-xxl-tiny-max{max-width:2rem}.w-xxl-tiny-min{min-width:2rem}.w-xxl-small{width:4rem}.w-xxl-small-max{max-width:4rem}.w-xxl-small-min{min-width:4rem}.w-xxl-medium{width:8rem}.w-xxl-medium-max{max-width:8rem}.w-xxl-medium-min{min-width:8rem}.w-xxl-large{width:16rem}.w-xxl-large-max{max-width:16rem}.w-xxl-large-min{min-width:16rem}.w-xxl-wide{width:32rem}.w-xxl-wide-max{max-width:32rem}.w-xxl-wide-min{min-width:32rem}.w-xxl-1{width:1rem}.w-xxl-1-max{max-width:1rem}.w-xxl-1-min{min-width:1rem}.w-xxl-2{width:2rem}.w-xxl-2-max{max-width:2rem}.w-xxl-2-min{min-width:2rem}.w-xxl-4{width:4rem}.w-xxl-4-max{max-width:4rem}.w-xxl-4-min{min-width:4rem}.w-xxl-8{width:8rem}.w-xxl-8-max{max-width:8rem}.w-xxl-8-min{min-width:8rem}.w-xxl-16{width:16rem}.w-xxl-16-max{max-width:16rem}.w-xxl-16-min{min-width:16rem}.w-xxl-24{width:24rem}.w-xxl-24-max{max-width:24rem}.w-xxl-24-min{min-width:24rem}.w-xxl-32{width:32rem}.w-xxl-32-max{max-width:32rem}.w-xxl-32-min{min-width:32rem}.w-xxl-48{width:48rem}.w-xxl-48-max{max-width:48rem}.w-xxl-48-min{min-width:48rem}.w-xxl-64{width:64rem}.w-xxl-64-max{max-width:64rem}.w-xxl-64-min{min-width:64rem}.w-xxl-1-16{width:6.25%}.w-xxl-1-16-max{max-width:6.25%}.w-xxl-1-16-min{min-width:6.25%}.w-xxl-2-16{width:12.5%}.w-xxl-2-16-max{max-width:12.5%}.w-xxl-2-16-min{min-width:12.5%}.w-xxl-3-16{width:18.75%}.w-xxl-3-16-max{max-width:18.75%}.w-xxl-3-16-min{min-width:18.75%}.w-xxl-4-16{width:25%}.w-xxl-4-16-max{max-width:25%}.w-xxl-4-16-min{min-width:25%}.w-xxl-5-16{width:31.25%}.w-xxl-5-16-max{max-width:31.25%}.w-xxl-5-16-min{min-width:31.25%}.w-xxl-6-16{width:37.5%}.w-xxl-6-16-max{max-width:37.5%}.w-xxl-6-16-min{min-width:37.5%}.w-xxl-7-16{width:43.75%}.w-xxl-7-16-max{max-width:43.75%}.w-xxl-7-16-min{min-width:43.75%}.w-xxl-8-16{width:50%}.w-xxl-8-16-max{max-width:50%}.w-xxl-8-16-min{min-width:50%}.w-xxl-9-16{width:56.25%}.w-xxl-9-16-max{max-width:56.25%}.w-xxl-9-16-min{min-width:56.25%}.w-xxl-10-16{width:62.5%}.w-xxl-10-16-max{max-width:62.5%}.w-xxl-10-16-min{min-width:62.5%}.w-xxl-11-16{width:68.75%}.w-xxl-11-16-max{max-width:68.75%}.w-xxl-11-16-min{min-width:68.75%}.w-xxl-12-16{width:75%}.w-xxl-12-16-max{max-width:75%}.w-xxl-12-16-min{min-width:75%}.w-xxl-13-16{width:81.25%}.w-xxl-13-16-max{max-width:81.25%}.w-xxl-13-16-min{min-width:81.25%}.w-xxl-14-16{width:87.5%}.w-xxl-14-16-max{max-width:87.5%}.w-xxl-14-16-min{min-width:87.5%}.w-xxl-15-16{width:93.75%}.w-xxl-15-16-max{max-width:93.75%}.w-xxl-15-16-min{min-width:93.75%}.w-xxl-16-16{width:100%}.w-xxl-16-16-max{max-width:100%}.w-xxl-16-16-min{min-width:100%}.h-xxl-full{height:100%}.h-xxl-full-max{max-height:100%}.h-xxl-full-min{min-height:100%}.h-xxl-mid{height:50%}.h-xxl-mid-max{max-height:50%}.h-xxl-mid-min{min-height:50%}.h-xxl-quarter{height:25%}.h-xxl-quarter-max{max-height:25%}.h-xxl-quarter-min{min-height:25%}.h-xxl-tiers{height:33%}.h-xxl-tiers-max{max-height:33%}.h-xxl-tiers-min{min-height:33%}.h-xxl-content-max{height:max-content}.h-xxl-content-max-max{max-height:max-content}.h-xxl-content-max-min{min-height:max-content}.h-xxl-content-min{height:min-content}.h-xxl-content-min-max{max-height:min-content}.h-xxl-content-min-min{min-height:min-content}.h-xxl-tiny{height:2rem}.h-xxl-tiny-max{max-height:2rem}.h-xxl-tiny-min{min-height:2rem}.h-xxl-small{height:4rem}.h-xxl-small-max{max-height:4rem}.h-xxl-small-min{min-height:4rem}.h-xxl-medium{height:8rem}.h-xxl-medium-max{max-height:8rem}.h-xxl-medium-min{min-height:8rem}.h-xxl-large{height:16rem}.h-xxl-large-max{max-height:16rem}.h-xxl-large-min{min-height:16rem}.h-xxl-wide{height:32rem}.h-xxl-wide-max{max-height:32rem}.h-xxl-wide-min{min-height:32rem}.h-xxl-1{height:1rem}.h-xxl-1-max{max-height:1rem}.h-xxl-1-min{min-height:1rem}.h-xxl-2{height:2rem}.h-xxl-2-max{max-height:2rem}.h-xxl-2-min{min-height:2rem}.h-xxl-4{height:4rem}.h-xxl-4-max{max-height:4rem}.h-xxl-4-min{min-height:4rem}.h-xxl-8{height:8rem}.h-xxl-8-max{max-height:8rem}.h-xxl-8-min{min-height:8rem}.h-xxl-16{height:16rem}.h-xxl-16-max{max-height:16rem}.h-xxl-16-min{min-height:16rem}.h-xxl-24{height:24rem}.h-xxl-24-max{max-height:24rem}.h-xxl-24-min{min-height:24rem}.h-xxl-32{height:32rem}.h-xxl-32-max{max-height:32rem}.h-xxl-32-min{min-height:32rem}.h-xxl-48{height:48rem}.h-xxl-48-max{max-height:48rem}.h-xxl-48-min{min-height:48rem}.h-xxl-64{height:64rem}.h-xxl-64-max{max-height:64rem}.h-xxl-64-min{min-height:64rem}.h-xxl-1-16{height:6.25%}.h-xxl-1-16-max{max-height:6.25%}.h-xxl-1-16-min{min-height:6.25%}.h-xxl-2-16{height:12.5%}.h-xxl-2-16-max{max-height:12.5%}.h-xxl-2-16-min{min-height:12.5%}.h-xxl-3-16{height:18.75%}.h-xxl-3-16-max{max-height:18.75%}.h-xxl-3-16-min{min-height:18.75%}.h-xxl-4-16{height:25%}.h-xxl-4-16-max{max-height:25%}.h-xxl-4-16-min{min-height:25%}.h-xxl-5-16{height:31.25%}.h-xxl-5-16-max{max-height:31.25%}.h-xxl-5-16-min{min-height:31.25%}.h-xxl-6-16{height:37.5%}.h-xxl-6-16-max{max-height:37.5%}.h-xxl-6-16-min{min-height:37.5%}.h-xxl-7-16{height:43.75%}.h-xxl-7-16-max{max-height:43.75%}.h-xxl-7-16-min{min-height:43.75%}.h-xxl-8-16{height:50%}.h-xxl-8-16-max{max-height:50%}.h-xxl-8-16-min{min-height:50%}.h-xxl-9-16{height:56.25%}.h-xxl-9-16-max{max-height:56.25%}.h-xxl-9-16-min{min-height:56.25%}.h-xxl-10-16{height:62.5%}.h-xxl-10-16-max{max-height:62.5%}.h-xxl-10-16-min{min-height:62.5%}.h-xxl-11-16{height:68.75%}.h-xxl-11-16-max{max-height:68.75%}.h-xxl-11-16-min{min-height:68.75%}.h-xxl-12-16{height:75%}.h-xxl-12-16-max{max-height:75%}.h-xxl-12-16-min{min-height:75%}.h-xxl-13-16{height:81.25%}.h-xxl-13-16-max{max-height:81.25%}.h-xxl-13-16-min{min-height:81.25%}.h-xxl-14-16{height:87.5%}.h-xxl-14-16-max{max-height:87.5%}.h-xxl-14-16-min{min-height:87.5%}.h-xxl-15-16{height:93.75%}.h-xxl-15-16-max{max-height:93.75%}.h-xxl-15-16-min{min-height:93.75%}.h-xxl-16-16{height:100%}.h-xxl-16-16-max{max-height:100%}.h-xxl-16-16-min{min-height:100%}}
@@ -1,3 +1,5 @@
1
+
2
+ /**---------------------table.css---------------------*/
1
3
  /** cssfabric : tbl*/
2
4
  .table {
3
5
  border-collapse: collapse;
@@ -1,159 +1,161 @@
1
- @media only screen and (max-width: 1300px) {
1
+
2
+ /**---------------------table.responsive.css---------------------*/
3
+ @media only screen and (min-width: 640px) {
2
4
  /** cssfabric : tbl*/
3
5
  .table {
4
6
  border-collapse: collapse;
5
7
  border-spacing: 0;
6
8
  }
7
9
  .table thead,
8
- .table .thead {
10
+ .table .thead {
9
11
  position: relative;
10
12
  margin-bottom: 2rem;
11
13
  }
12
- .table.tbl-xxl-head thead tr th {
14
+ .table.tbl-sm-head thead tr th {
13
15
  background-color: table_bg_color_head;
14
16
  }
15
17
  .table thead tr th,
16
- .table .thead .tr .th {
18
+ .table .thead .tr .th {
17
19
  padding: 0.5rem 0.25rem;
18
20
  font-weight: normal;
19
21
  }
20
22
  .table tbody tr td,
21
- .table .tbody .tr .td {
23
+ .table .tbody .tr .td {
22
24
  padding: 0.25em;
23
25
  }
24
- .table.tbl-xxl-layout {
26
+ .table.tbl-sm-layout {
25
27
  table-layout: fixed;
26
28
  }
27
- .table.tbl-xxl-h-line th,
28
- .table.tbl-xxl-h-line td,
29
- .table.tbl-xxl-h-line .th,
30
- .table.tbl-xxl-h-line .td {
29
+ .table.tbl-sm-h-line th,
30
+ .table.tbl-sm-h-line td,
31
+ .table.tbl-sm-h-line .th,
32
+ .table.tbl-sm-h-line .td {
31
33
  border-bottom: 1px solid #ededed;
32
34
  }
33
- .table.tbl-xxl-h-line:last-child {
35
+ .table.tbl-sm-h-line:last-child {
34
36
  border-bottom: none;
35
37
  }
36
- .table.tbl-xxl-v-line tr th, .table.tbl-xxl-v-line tr td {
38
+ .table.tbl-sm-v-line tr th, .table.tbl-sm-v-line tr td {
37
39
  border-right: 1px solid #ededed;
38
40
  }
39
- .table.tbl-xxl-v-line tr th:last-child, .table.tbl-xxl-v-line tr td:last-child {
41
+ .table.tbl-sm-v-line tr th:last-child, .table.tbl-sm-v-line tr td:last-child {
40
42
  border-right: none;
41
43
  }
42
- .table.tbl-xxl-border {
44
+ .table.tbl-sm-border {
43
45
  border: 1px solid #ededed;
44
46
  }
45
- .table.tbl-xxl-shad thead tr th {
47
+ .table.tbl-sm-shad thead tr th {
46
48
  box-shadow: 4px 4px 8px #ccc;
47
49
  z-index: 11;
48
50
  }
49
- .table.tbl-xxl-shad thead tr th:last-child {
51
+ .table.tbl-sm-shad thead tr th:last-child {
50
52
  box-shadow: 4px 4px 8px #ccc;
51
53
  z-index: -1;
52
54
  }
53
- .table.tbl-xxl-bg-strip-2 tr:nth-child(2n+2) td {
55
+ .table.tbl-sm-bg-strip-2 tr:nth-child(2n+2) td {
54
56
  background-color: #ededed;
55
57
  }
56
- .table.tbl-xxl-bg-strip-5 tr:nth-child(5n+5) td {
58
+ .table.tbl-sm-bg-strip-5 tr:nth-child(5n+5) td {
57
59
  background-color: #ededed;
58
60
  }
59
- .table.tbl-xxl-sticky {
61
+ .table.tbl-sm-sticky {
60
62
  position: relative;
61
63
  }
62
- .table.tbl-xxl-sticky thead tr,
63
- .table.tbl-xxl-sticky .thead .tr {
64
+ .table.tbl-sm-sticky thead tr,
65
+ .table.tbl-sm-sticky .thead .tr {
64
66
  position: static;
65
67
  }
66
- .table.tbl-xxl-sticky thead tr th,
67
- .table.tbl-xxl-sticky thead tr .th,
68
- .table.tbl-xxl-sticky .thead .tr th,
69
- .table.tbl-xxl-sticky .thead .tr .th {
68
+ .table.tbl-sm-sticky thead tr th,
69
+ .table.tbl-sm-sticky thead tr .th,
70
+ .table.tbl-sm-sticky .thead .tr th,
71
+ .table.tbl-sm-sticky .thead .tr .th {
70
72
  background-color: #ededed;
71
73
  position: sticky;
72
74
  top: 0;
73
75
  }
74
76
  }
75
- @media only screen and (max-width: 1200px) {
77
+ @media only screen and (min-width: 768px) {
76
78
  /** cssfabric : tbl*/
77
79
  .table {
78
80
  border-collapse: collapse;
79
81
  border-spacing: 0;
80
82
  }
81
83
  .table thead,
82
- .table .thead {
84
+ .table .thead {
83
85
  position: relative;
84
86
  margin-bottom: 2rem;
85
87
  }
86
- .table.tbl-xl-head thead tr th {
88
+ .table.tbl-md-head thead tr th {
87
89
  background-color: table_bg_color_head;
88
90
  }
89
91
  .table thead tr th,
90
- .table .thead .tr .th {
92
+ .table .thead .tr .th {
91
93
  padding: 0.5rem 0.25rem;
92
94
  font-weight: normal;
93
95
  }
94
96
  .table tbody tr td,
95
- .table .tbody .tr .td {
97
+ .table .tbody .tr .td {
96
98
  padding: 0.25em;
97
99
  }
98
- .table.tbl-xl-layout {
100
+ .table.tbl-md-layout {
99
101
  table-layout: fixed;
100
102
  }
101
- .table.tbl-xl-h-line th,
102
- .table.tbl-xl-h-line td,
103
- .table.tbl-xl-h-line .th,
104
- .table.tbl-xl-h-line .td {
103
+ .table.tbl-md-h-line th,
104
+ .table.tbl-md-h-line td,
105
+ .table.tbl-md-h-line .th,
106
+ .table.tbl-md-h-line .td {
105
107
  border-bottom: 1px solid #ededed;
106
108
  }
107
- .table.tbl-xl-h-line:last-child {
109
+ .table.tbl-md-h-line:last-child {
108
110
  border-bottom: none;
109
111
  }
110
- .table.tbl-xl-v-line tr th, .table.tbl-xl-v-line tr td {
112
+ .table.tbl-md-v-line tr th, .table.tbl-md-v-line tr td {
111
113
  border-right: 1px solid #ededed;
112
114
  }
113
- .table.tbl-xl-v-line tr th:last-child, .table.tbl-xl-v-line tr td:last-child {
115
+ .table.tbl-md-v-line tr th:last-child, .table.tbl-md-v-line tr td:last-child {
114
116
  border-right: none;
115
117
  }
116
- .table.tbl-xl-border {
118
+ .table.tbl-md-border {
117
119
  border: 1px solid #ededed;
118
120
  }
119
- .table.tbl-xl-shad thead tr th {
121
+ .table.tbl-md-shad thead tr th {
120
122
  box-shadow: 4px 4px 8px #ccc;
121
123
  z-index: 11;
122
124
  }
123
- .table.tbl-xl-shad thead tr th:last-child {
125
+ .table.tbl-md-shad thead tr th:last-child {
124
126
  box-shadow: 4px 4px 8px #ccc;
125
127
  z-index: -1;
126
128
  }
127
- .table.tbl-xl-bg-strip-2 tr:nth-child(2n+2) td {
129
+ .table.tbl-md-bg-strip-2 tr:nth-child(2n+2) td {
128
130
  background-color: #ededed;
129
131
  }
130
- .table.tbl-xl-bg-strip-5 tr:nth-child(5n+5) td {
132
+ .table.tbl-md-bg-strip-5 tr:nth-child(5n+5) td {
131
133
  background-color: #ededed;
132
134
  }
133
- .table.tbl-xl-sticky {
135
+ .table.tbl-md-sticky {
134
136
  position: relative;
135
137
  }
136
- .table.tbl-xl-sticky thead tr,
137
- .table.tbl-xl-sticky .thead .tr {
138
+ .table.tbl-md-sticky thead tr,
139
+ .table.tbl-md-sticky .thead .tr {
138
140
  position: static;
139
141
  }
140
- .table.tbl-xl-sticky thead tr th,
141
- .table.tbl-xl-sticky thead tr .th,
142
- .table.tbl-xl-sticky .thead .tr th,
143
- .table.tbl-xl-sticky .thead .tr .th {
142
+ .table.tbl-md-sticky thead tr th,
143
+ .table.tbl-md-sticky thead tr .th,
144
+ .table.tbl-md-sticky .thead .tr th,
145
+ .table.tbl-md-sticky .thead .tr .th {
144
146
  background-color: #ededed;
145
147
  position: sticky;
146
148
  top: 0;
147
149
  }
148
150
  }
149
- @media only screen and (max-width: 960px) {
151
+ @media only screen and (min-width: 1024px) {
150
152
  /** cssfabric : tbl*/
151
153
  .table {
152
154
  border-collapse: collapse;
153
155
  border-spacing: 0;
154
156
  }
155
157
  .table thead,
156
- .table .thead {
158
+ .table .thead {
157
159
  position: relative;
158
160
  margin-bottom: 2rem;
159
161
  }
@@ -161,21 +163,21 @@
161
163
  background-color: table_bg_color_head;
162
164
  }
163
165
  .table thead tr th,
164
- .table .thead .tr .th {
166
+ .table .thead .tr .th {
165
167
  padding: 0.5rem 0.25rem;
166
168
  font-weight: normal;
167
169
  }
168
170
  .table tbody tr td,
169
- .table .tbody .tr .td {
171
+ .table .tbody .tr .td {
170
172
  padding: 0.25em;
171
173
  }
172
174
  .table.tbl-lg-layout {
173
175
  table-layout: fixed;
174
176
  }
175
177
  .table.tbl-lg-h-line th,
176
- .table.tbl-lg-h-line td,
177
- .table.tbl-lg-h-line .th,
178
- .table.tbl-lg-h-line .td {
178
+ .table.tbl-lg-h-line td,
179
+ .table.tbl-lg-h-line .th,
180
+ .table.tbl-lg-h-line .td {
179
181
  border-bottom: 1px solid #ededed;
180
182
  }
181
183
  .table.tbl-lg-h-line:last-child {
@@ -208,87 +210,161 @@
208
210
  position: relative;
209
211
  }
210
212
  .table.tbl-lg-sticky thead tr,
211
- .table.tbl-lg-sticky .thead .tr {
213
+ .table.tbl-lg-sticky .thead .tr {
212
214
  position: static;
213
215
  }
214
216
  .table.tbl-lg-sticky thead tr th,
215
- .table.tbl-lg-sticky thead tr .th,
216
- .table.tbl-lg-sticky .thead .tr th,
217
- .table.tbl-lg-sticky .thead .tr .th {
217
+ .table.tbl-lg-sticky thead tr .th,
218
+ .table.tbl-lg-sticky .thead .tr th,
219
+ .table.tbl-lg-sticky .thead .tr .th {
218
220
  background-color: #ededed;
219
221
  position: sticky;
220
222
  top: 0;
221
223
  }
222
224
  }
223
- @media only screen and (max-width: 760px) {
225
+ @media only screen and (min-width: 1280px) {
224
226
  /** cssfabric : tbl*/
225
227
  .table {
226
228
  border-collapse: collapse;
227
229
  border-spacing: 0;
228
230
  }
229
231
  .table thead,
230
- .table .thead {
232
+ .table .thead {
231
233
  position: relative;
232
234
  margin-bottom: 2rem;
233
235
  }
234
- .table.tbl-md-head thead tr th {
236
+ .table.tbl-xl-head thead tr th {
235
237
  background-color: table_bg_color_head;
236
238
  }
237
239
  .table thead tr th,
238
- .table .thead .tr .th {
240
+ .table .thead .tr .th {
239
241
  padding: 0.5rem 0.25rem;
240
242
  font-weight: normal;
241
243
  }
242
244
  .table tbody tr td,
243
- .table .tbody .tr .td {
245
+ .table .tbody .tr .td {
244
246
  padding: 0.25em;
245
247
  }
246
- .table.tbl-md-layout {
248
+ .table.tbl-xl-layout {
247
249
  table-layout: fixed;
248
250
  }
249
- .table.tbl-md-h-line th,
250
- .table.tbl-md-h-line td,
251
- .table.tbl-md-h-line .th,
252
- .table.tbl-md-h-line .td {
251
+ .table.tbl-xl-h-line th,
252
+ .table.tbl-xl-h-line td,
253
+ .table.tbl-xl-h-line .th,
254
+ .table.tbl-xl-h-line .td {
253
255
  border-bottom: 1px solid #ededed;
254
256
  }
255
- .table.tbl-md-h-line:last-child {
257
+ .table.tbl-xl-h-line:last-child {
256
258
  border-bottom: none;
257
259
  }
258
- .table.tbl-md-v-line tr th, .table.tbl-md-v-line tr td {
260
+ .table.tbl-xl-v-line tr th, .table.tbl-xl-v-line tr td {
259
261
  border-right: 1px solid #ededed;
260
262
  }
261
- .table.tbl-md-v-line tr th:last-child, .table.tbl-md-v-line tr td:last-child {
263
+ .table.tbl-xl-v-line tr th:last-child, .table.tbl-xl-v-line tr td:last-child {
262
264
  border-right: none;
263
265
  }
264
- .table.tbl-md-border {
266
+ .table.tbl-xl-border {
265
267
  border: 1px solid #ededed;
266
268
  }
267
- .table.tbl-md-shad thead tr th {
269
+ .table.tbl-xl-shad thead tr th {
268
270
  box-shadow: 4px 4px 8px #ccc;
269
271
  z-index: 11;
270
272
  }
271
- .table.tbl-md-shad thead tr th:last-child {
273
+ .table.tbl-xl-shad thead tr th:last-child {
272
274
  box-shadow: 4px 4px 8px #ccc;
273
275
  z-index: -1;
274
276
  }
275
- .table.tbl-md-bg-strip-2 tr:nth-child(2n+2) td {
277
+ .table.tbl-xl-bg-strip-2 tr:nth-child(2n+2) td {
276
278
  background-color: #ededed;
277
279
  }
278
- .table.tbl-md-bg-strip-5 tr:nth-child(5n+5) td {
280
+ .table.tbl-xl-bg-strip-5 tr:nth-child(5n+5) td {
279
281
  background-color: #ededed;
280
282
  }
281
- .table.tbl-md-sticky {
283
+ .table.tbl-xl-sticky {
282
284
  position: relative;
283
285
  }
284
- .table.tbl-md-sticky thead tr,
285
- .table.tbl-md-sticky .thead .tr {
286
+ .table.tbl-xl-sticky thead tr,
287
+ .table.tbl-xl-sticky .thead .tr {
286
288
  position: static;
287
289
  }
288
- .table.tbl-md-sticky thead tr th,
289
- .table.tbl-md-sticky thead tr .th,
290
- .table.tbl-md-sticky .thead .tr th,
291
- .table.tbl-md-sticky .thead .tr .th {
290
+ .table.tbl-xl-sticky thead tr th,
291
+ .table.tbl-xl-sticky thead tr .th,
292
+ .table.tbl-xl-sticky .thead .tr th,
293
+ .table.tbl-xl-sticky .thead .tr .th {
294
+ background-color: #ededed;
295
+ position: sticky;
296
+ top: 0;
297
+ }
298
+ }
299
+ @media only screen and (min-width: 1540px) {
300
+ /** cssfabric : tbl*/
301
+ .table {
302
+ border-collapse: collapse;
303
+ border-spacing: 0;
304
+ }
305
+ .table thead,
306
+ .table .thead {
307
+ position: relative;
308
+ margin-bottom: 2rem;
309
+ }
310
+ .table.tbl-xxl-head thead tr th {
311
+ background-color: table_bg_color_head;
312
+ }
313
+ .table thead tr th,
314
+ .table .thead .tr .th {
315
+ padding: 0.5rem 0.25rem;
316
+ font-weight: normal;
317
+ }
318
+ .table tbody tr td,
319
+ .table .tbody .tr .td {
320
+ padding: 0.25em;
321
+ }
322
+ .table.tbl-xxl-layout {
323
+ table-layout: fixed;
324
+ }
325
+ .table.tbl-xxl-h-line th,
326
+ .table.tbl-xxl-h-line td,
327
+ .table.tbl-xxl-h-line .th,
328
+ .table.tbl-xxl-h-line .td {
329
+ border-bottom: 1px solid #ededed;
330
+ }
331
+ .table.tbl-xxl-h-line:last-child {
332
+ border-bottom: none;
333
+ }
334
+ .table.tbl-xxl-v-line tr th, .table.tbl-xxl-v-line tr td {
335
+ border-right: 1px solid #ededed;
336
+ }
337
+ .table.tbl-xxl-v-line tr th:last-child, .table.tbl-xxl-v-line tr td:last-child {
338
+ border-right: none;
339
+ }
340
+ .table.tbl-xxl-border {
341
+ border: 1px solid #ededed;
342
+ }
343
+ .table.tbl-xxl-shad thead tr th {
344
+ box-shadow: 4px 4px 8px #ccc;
345
+ z-index: 11;
346
+ }
347
+ .table.tbl-xxl-shad thead tr th:last-child {
348
+ box-shadow: 4px 4px 8px #ccc;
349
+ z-index: -1;
350
+ }
351
+ .table.tbl-xxl-bg-strip-2 tr:nth-child(2n+2) td {
352
+ background-color: #ededed;
353
+ }
354
+ .table.tbl-xxl-bg-strip-5 tr:nth-child(5n+5) td {
355
+ background-color: #ededed;
356
+ }
357
+ .table.tbl-xxl-sticky {
358
+ position: relative;
359
+ }
360
+ .table.tbl-xxl-sticky thead tr,
361
+ .table.tbl-xxl-sticky .thead .tr {
362
+ position: static;
363
+ }
364
+ .table.tbl-xxl-sticky thead tr th,
365
+ .table.tbl-xxl-sticky thead tr .th,
366
+ .table.tbl-xxl-sticky .thead .tr th,
367
+ .table.tbl-xxl-sticky .thead .tr .th {
292
368
  background-color: #ededed;
293
369
  position: sticky;
294
370
  top: 0;
@@ -0,0 +1 @@
1
+ @media only screen and (min-width: 640px){.table{border-collapse:collapse;border-spacing:0}.table thead,.table .thead{position:relative;margin-bottom:2rem}.table.tbl-sm-head thead tr th{background-color:table_bg_color_head}.table thead tr th,.table .thead .tr .th{padding:.5rem .25rem;font-weight:normal}.table tbody tr td,.table .tbody .tr .td{padding:.25em}.table.tbl-sm-layout{table-layout:fixed}.table.tbl-sm-h-line th,.table.tbl-sm-h-line td,.table.tbl-sm-h-line .th,.table.tbl-sm-h-line .td{border-bottom:1px solid #ededed}.table.tbl-sm-h-line:last-child{border-bottom:none}.table.tbl-sm-v-line tr th,.table.tbl-sm-v-line tr td{border-right:1px solid #ededed}.table.tbl-sm-v-line tr th:last-child,.table.tbl-sm-v-line tr td:last-child{border-right:none}.table.tbl-sm-border{border:1px solid #ededed}.table.tbl-sm-shad thead tr th{box-shadow:4px 4px 8px #ccc;z-index:11}.table.tbl-sm-shad thead tr th:last-child{box-shadow:4px 4px 8px #ccc;z-index:-1}.table.tbl-sm-bg-strip-2 tr:nth-child(2n+2) td{background-color:#ededed}.table.tbl-sm-bg-strip-5 tr:nth-child(5n+5) td{background-color:#ededed}.table.tbl-sm-sticky{position:relative}.table.tbl-sm-sticky thead tr,.table.tbl-sm-sticky .thead .tr{position:static}.table.tbl-sm-sticky thead tr th,.table.tbl-sm-sticky thead tr .th,.table.tbl-sm-sticky .thead .tr th,.table.tbl-sm-sticky .thead .tr .th{background-color:#ededed;position:sticky;top:0}}@media only screen and (min-width: 768px){.table{border-collapse:collapse;border-spacing:0}.table thead,.table .thead{position:relative;margin-bottom:2rem}.table.tbl-md-head thead tr th{background-color:table_bg_color_head}.table thead tr th,.table .thead .tr .th{padding:.5rem .25rem;font-weight:normal}.table tbody tr td,.table .tbody .tr .td{padding:.25em}.table.tbl-md-layout{table-layout:fixed}.table.tbl-md-h-line th,.table.tbl-md-h-line td,.table.tbl-md-h-line .th,.table.tbl-md-h-line .td{border-bottom:1px solid #ededed}.table.tbl-md-h-line:last-child{border-bottom:none}.table.tbl-md-v-line tr th,.table.tbl-md-v-line tr td{border-right:1px solid #ededed}.table.tbl-md-v-line tr th:last-child,.table.tbl-md-v-line tr td:last-child{border-right:none}.table.tbl-md-border{border:1px solid #ededed}.table.tbl-md-shad thead tr th{box-shadow:4px 4px 8px #ccc;z-index:11}.table.tbl-md-shad thead tr th:last-child{box-shadow:4px 4px 8px #ccc;z-index:-1}.table.tbl-md-bg-strip-2 tr:nth-child(2n+2) td{background-color:#ededed}.table.tbl-md-bg-strip-5 tr:nth-child(5n+5) td{background-color:#ededed}.table.tbl-md-sticky{position:relative}.table.tbl-md-sticky thead tr,.table.tbl-md-sticky .thead .tr{position:static}.table.tbl-md-sticky thead tr th,.table.tbl-md-sticky thead tr .th,.table.tbl-md-sticky .thead .tr th,.table.tbl-md-sticky .thead .tr .th{background-color:#ededed;position:sticky;top:0}}@media only screen and (min-width: 1024px){.table{border-collapse:collapse;border-spacing:0}.table thead,.table .thead{position:relative;margin-bottom:2rem}.table.tbl-lg-head thead tr th{background-color:table_bg_color_head}.table thead tr th,.table .thead .tr .th{padding:.5rem .25rem;font-weight:normal}.table tbody tr td,.table .tbody .tr .td{padding:.25em}.table.tbl-lg-layout{table-layout:fixed}.table.tbl-lg-h-line th,.table.tbl-lg-h-line td,.table.tbl-lg-h-line .th,.table.tbl-lg-h-line .td{border-bottom:1px solid #ededed}.table.tbl-lg-h-line:last-child{border-bottom:none}.table.tbl-lg-v-line tr th,.table.tbl-lg-v-line tr td{border-right:1px solid #ededed}.table.tbl-lg-v-line tr th:last-child,.table.tbl-lg-v-line tr td:last-child{border-right:none}.table.tbl-lg-border{border:1px solid #ededed}.table.tbl-lg-shad thead tr th{box-shadow:4px 4px 8px #ccc;z-index:11}.table.tbl-lg-shad thead tr th:last-child{box-shadow:4px 4px 8px #ccc;z-index:-1}.table.tbl-lg-bg-strip-2 tr:nth-child(2n+2) td{background-color:#ededed}.table.tbl-lg-bg-strip-5 tr:nth-child(5n+5) td{background-color:#ededed}.table.tbl-lg-sticky{position:relative}.table.tbl-lg-sticky thead tr,.table.tbl-lg-sticky .thead .tr{position:static}.table.tbl-lg-sticky thead tr th,.table.tbl-lg-sticky thead tr .th,.table.tbl-lg-sticky .thead .tr th,.table.tbl-lg-sticky .thead .tr .th{background-color:#ededed;position:sticky;top:0}}@media only screen and (min-width: 1280px){.table{border-collapse:collapse;border-spacing:0}.table thead,.table .thead{position:relative;margin-bottom:2rem}.table.tbl-xl-head thead tr th{background-color:table_bg_color_head}.table thead tr th,.table .thead .tr .th{padding:.5rem .25rem;font-weight:normal}.table tbody tr td,.table .tbody .tr .td{padding:.25em}.table.tbl-xl-layout{table-layout:fixed}.table.tbl-xl-h-line th,.table.tbl-xl-h-line td,.table.tbl-xl-h-line .th,.table.tbl-xl-h-line .td{border-bottom:1px solid #ededed}.table.tbl-xl-h-line:last-child{border-bottom:none}.table.tbl-xl-v-line tr th,.table.tbl-xl-v-line tr td{border-right:1px solid #ededed}.table.tbl-xl-v-line tr th:last-child,.table.tbl-xl-v-line tr td:last-child{border-right:none}.table.tbl-xl-border{border:1px solid #ededed}.table.tbl-xl-shad thead tr th{box-shadow:4px 4px 8px #ccc;z-index:11}.table.tbl-xl-shad thead tr th:last-child{box-shadow:4px 4px 8px #ccc;z-index:-1}.table.tbl-xl-bg-strip-2 tr:nth-child(2n+2) td{background-color:#ededed}.table.tbl-xl-bg-strip-5 tr:nth-child(5n+5) td{background-color:#ededed}.table.tbl-xl-sticky{position:relative}.table.tbl-xl-sticky thead tr,.table.tbl-xl-sticky .thead .tr{position:static}.table.tbl-xl-sticky thead tr th,.table.tbl-xl-sticky thead tr .th,.table.tbl-xl-sticky .thead .tr th,.table.tbl-xl-sticky .thead .tr .th{background-color:#ededed;position:sticky;top:0}}@media only screen and (min-width: 1540px){.table{border-collapse:collapse;border-spacing:0}.table thead,.table .thead{position:relative;margin-bottom:2rem}.table.tbl-xxl-head thead tr th{background-color:table_bg_color_head}.table thead tr th,.table .thead .tr .th{padding:.5rem .25rem;font-weight:normal}.table tbody tr td,.table .tbody .tr .td{padding:.25em}.table.tbl-xxl-layout{table-layout:fixed}.table.tbl-xxl-h-line th,.table.tbl-xxl-h-line td,.table.tbl-xxl-h-line .th,.table.tbl-xxl-h-line .td{border-bottom:1px solid #ededed}.table.tbl-xxl-h-line:last-child{border-bottom:none}.table.tbl-xxl-v-line tr th,.table.tbl-xxl-v-line tr td{border-right:1px solid #ededed}.table.tbl-xxl-v-line tr th:last-child,.table.tbl-xxl-v-line tr td:last-child{border-right:none}.table.tbl-xxl-border{border:1px solid #ededed}.table.tbl-xxl-shad thead tr th{box-shadow:4px 4px 8px #ccc;z-index:11}.table.tbl-xxl-shad thead tr th:last-child{box-shadow:4px 4px 8px #ccc;z-index:-1}.table.tbl-xxl-bg-strip-2 tr:nth-child(2n+2) td{background-color:#ededed}.table.tbl-xxl-bg-strip-5 tr:nth-child(5n+5) td{background-color:#ededed}.table.tbl-xxl-sticky{position:relative}.table.tbl-xxl-sticky thead tr,.table.tbl-xxl-sticky .thead .tr{position:static}.table.tbl-xxl-sticky thead tr th,.table.tbl-xxl-sticky thead tr .th,.table.tbl-xxl-sticky .thead .tr th,.table.tbl-xxl-sticky .thead .tr .th{background-color:#ededed;position:sticky;top:0}}
@@ -1,3 +1,5 @@
1
+
2
+ /**---------------------text.css---------------------*/
1
3
  .text-ellipsis {
2
4
  text-overflow: ellipsis;
3
5
  overflow: hidden;