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.

93 lines
1.9 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
  1. /*!
  2. * # Semantic UI 2.0.0 - Container
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2014 Contributorss
  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: auto;
  21. margin-left: 1em !important;
  22. margin-right: 1em !important;
  23. }
  24. .ui.grid.container {
  25. width: auto;
  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: -webkit-calc( 752px + 2em );
  36. width: calc( 752px + 2em );
  37. }
  38. }
  39. @media only screen and (min-width: 988px) and (max-width: 1228px) {
  40. .ui.container {
  41. width: 960px;
  42. margin-left: auto !important;
  43. margin-right: auto !important;
  44. }
  45. .ui.grid.container {
  46. width: -webkit-calc( 960px + 2em );
  47. width: calc( 960px + 2em );
  48. }
  49. }
  50. @media only screen and (min-width: 1228px) {
  51. .ui.container {
  52. width: 1200px;
  53. margin-left: auto !important;
  54. margin-right: auto !important;
  55. }
  56. .ui.grid.container {
  57. width: -webkit-calc( 1200px + 2em );
  58. width: calc( 1200px + 2em );
  59. }
  60. }
  61. /*******************************
  62. Types
  63. *******************************/
  64. .ui.text.container {
  65. display: block;
  66. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  67. max-width: 700px !important;
  68. line-height: 1.5;
  69. }
  70. .ui.text.container {
  71. font-size: 1.14285714rem;
  72. }
  73. /*******************************
  74. Variations
  75. *******************************/
  76. .ui[class*="left aligned"].container {
  77. text-align: left;
  78. }
  79. .ui[class*="center aligned"].container {
  80. text-align: center;
  81. }
  82. .ui[class*="right aligned"].container {
  83. text-align: right;
  84. }