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.

96 lines
1.9 KiB

9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 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. .ui.container {
  15. display: block;
  16. max-width: 100% !important;
  17. }
  18. @media only screen and (max-width: 780px) {
  19. .ui.container {
  20. width: 100%;
  21. margin-left: 1em !important;
  22. margin-right: 1em !important;
  23. }
  24. .ui.grid.container {
  25. width: 100% !important;
  26. }
  27. }
  28. @media only screen and (min-width: 781px) and (max-width: 991px) {
  29. .ui.container {
  30. width: 752px;
  31. margin-left: auto !important;
  32. margin-right: auto !important;
  33. }
  34. .ui.grid.container {
  35. width: calc( 752px + 2em ) !important;
  36. }
  37. }
  38. @media only screen and (min-width: 988px) and (max-width: 1228px) {
  39. .ui.container {
  40. width: 960px;
  41. margin-left: auto !important;
  42. margin-right: auto !important;
  43. }
  44. .ui.grid.container {
  45. width: calc( 960px + 2em ) !important;
  46. }
  47. }
  48. @media only screen and (min-width: 1228px) {
  49. .ui.container {
  50. width: 1200px;
  51. margin-left: auto !important;
  52. margin-right: auto !important;
  53. }
  54. .ui.grid.container {
  55. width: calc( 1200px + 2em ) !important;
  56. }
  57. }
  58. /*******************************
  59. Types
  60. *******************************/
  61. /* Text Container */
  62. .ui.text.container {
  63. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  64. max-width: 700px !important;
  65. line-height: 1.5;
  66. }
  67. .ui.text.container {
  68. font-size: 1.14285714rem;
  69. }
  70. /* Fluid */
  71. .ui.fluid.container {
  72. width: 100%;
  73. }
  74. /*******************************
  75. Variations
  76. *******************************/
  77. .ui[class*="left aligned"].container {
  78. text-align: left;
  79. }
  80. .ui[class*="center aligned"].container {
  81. text-align: center;
  82. }
  83. .ui[class*="right aligned"].container {
  84. text-align: right;
  85. }