You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

125 lines
2.3 KiB

  1. /*!
  2. * # Semantic UI 2.0.0 - Container
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2015 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Container
  13. *******************************/
  14. /* All Sizes */
  15. .ui.container {
  16. display: block;
  17. max-width: 100% !important;
  18. }
  19. /* Mobile */
  20. @media only screen and (max-width: 767px) {
  21. .ui.container {
  22. width: auto;
  23. margin-left: 1em !important;
  24. margin-right: 1em !important;
  25. }
  26. .ui.grid.container {
  27. width: auto !important;
  28. }
  29. }
  30. /* Tablet */
  31. @media only screen and (min-width: 768px) and (max-width: 991px) {
  32. .ui.container {
  33. width: 723px;
  34. margin-left: auto !important;
  35. margin-right: auto !important;
  36. }
  37. .ui.grid.container {
  38. width: calc( 723px + 2em ) !important;
  39. }
  40. }
  41. /* Small Monitor */
  42. @media only screen and (min-width: 992px) and (max-width: 1199px) {
  43. .ui.container {
  44. width: 933px;
  45. margin-left: auto !important;
  46. margin-right: auto !important;
  47. }
  48. .ui.grid.container {
  49. width: calc( 933px + 2em ) !important;
  50. }
  51. }
  52. /* Large Monitor */
  53. @media only screen and (min-width: 1200px) {
  54. .ui.container {
  55. width: 1127px;
  56. margin-left: auto !important;
  57. margin-right: auto !important;
  58. }
  59. .ui.grid.container {
  60. width: calc( 1127px + 2em ) !important;
  61. }
  62. }
  63. /*******************************
  64. Types
  65. *******************************/
  66. /* Text Container */
  67. .ui.text.container {
  68. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  69. max-width: 700px !important;
  70. line-height: 1.5;
  71. }
  72. .ui.text.container {
  73. font-size: 1.14285714rem;
  74. }
  75. /* Fluid */
  76. .ui.fluid.container {
  77. width: 100%;
  78. }
  79. /*******************************
  80. Variations
  81. *******************************/
  82. .ui[class*="left aligned"].container {
  83. text-align: left;
  84. }
  85. .ui[class*="center aligned"].container {
  86. text-align: center;
  87. }
  88. .ui[class*="right aligned"].container {
  89. text-align: right;
  90. }
  91. .ui.justified.container {
  92. text-align: justify;
  93. -webkit-hyphens: auto;
  94. -moz-hyphens: auto;
  95. -ms-hyphens: auto;
  96. hyphens: auto;
  97. }
  98. /*******************************
  99. Theme Overrides
  100. *******************************/
  101. /*******************************
  102. Site Overrides
  103. *******************************/