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.

90 lines
1.8 KiB

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
10 years ago
10 years ago
10 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 !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. .ui.text.container {
  62. display: block;
  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. /*******************************
  71. Variations
  72. *******************************/
  73. .ui[class*="left aligned"].container {
  74. text-align: left;
  75. }
  76. .ui[class*="center aligned"].container {
  77. text-align: center;
  78. }
  79. .ui[class*="right aligned"].container {
  80. text-align: right;
  81. }