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.

128 lines
2.5 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  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: -webkit-calc( 723px + 2em ) !important;
  39. width: calc( 723px + 2em ) !important;
  40. }
  41. }
  42. /* Small Monitor */
  43. @media only screen and (min-width: 992px) and (max-width: 1199px) {
  44. .ui.container {
  45. width: 933px;
  46. margin-left: auto !important;
  47. margin-right: auto !important;
  48. }
  49. .ui.grid.container {
  50. width: -webkit-calc( 933px + 2em ) !important;
  51. width: calc( 933px + 2em ) !important;
  52. }
  53. }
  54. /* Large Monitor */
  55. @media only screen and (min-width: 1200px) {
  56. .ui.container {
  57. width: 1127px;
  58. margin-left: auto !important;
  59. margin-right: auto !important;
  60. }
  61. .ui.grid.container {
  62. width: -webkit-calc( 1127px + 2em ) !important;
  63. width: calc( 1127px + 2em ) !important;
  64. }
  65. }
  66. /*******************************
  67. Types
  68. *******************************/
  69. /* Text Container */
  70. .ui.text.container {
  71. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  72. max-width: 700px !important;
  73. line-height: 1.5;
  74. }
  75. .ui.text.container {
  76. font-size: 1.14285714rem;
  77. }
  78. /* Fluid */
  79. .ui.fluid.container {
  80. width: 100%;
  81. }
  82. /*******************************
  83. Variations
  84. *******************************/
  85. .ui[class*="left aligned"].container {
  86. text-align: left;
  87. }
  88. .ui[class*="center aligned"].container {
  89. text-align: center;
  90. }
  91. .ui[class*="right aligned"].container {
  92. text-align: right;
  93. }
  94. .ui.justified.container {
  95. text-align: justify;
  96. -webkit-hyphens: auto;
  97. -moz-hyphens: auto;
  98. -ms-hyphens: auto;
  99. hyphens: auto;
  100. }
  101. /*******************************
  102. Theme Overrides
  103. *******************************/
  104. /*******************************
  105. Site Overrides
  106. *******************************/