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.

78 lines
1.6 KiB

  1. /*!
  2. * # Semantic UI 1.11.5 - 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. }
  25. @media only screen and (min-width: 781px) and (max-width: 991px) {
  26. .ui.container {
  27. width: 752px;
  28. margin-left: auto !important;
  29. margin-right: auto !important;
  30. }
  31. }
  32. @media only screen and (min-width: 988px) and (max-width: 1148px) {
  33. .ui.container {
  34. width: 960px;
  35. margin-left: auto !important;
  36. margin-right: auto !important;
  37. }
  38. }
  39. @media only screen and (min-width: 1148px) {
  40. .ui.container {
  41. width: 1120px;
  42. margin-left: auto !important;
  43. margin-right: auto !important;
  44. }
  45. }
  46. /*******************************
  47. Types
  48. *******************************/
  49. .ui.text.container {
  50. display: block;
  51. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  52. max-width: 700px !important;
  53. line-height: 1.5;
  54. }
  55. .ui.text.container {
  56. font-size: 1.14285714rem;
  57. }
  58. /*******************************
  59. Variations
  60. *******************************/
  61. .ui[class*="left aligned"].container {
  62. text-align: left;
  63. }
  64. .ui[class*="center aligned"].container {
  65. text-align: center;
  66. }
  67. .ui[class*="right aligned"].container {
  68. text-align: right;
  69. }