Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

container.css 474B

123456789101112131415161718192021
  1. /* based on Fomantic UI container module, with just the parts extracted that we use. If you find any
  2. unused rules here after refactoring, please remove them. */
  3. .ui.container {
  4. width: 1280px;
  5. max-width: calc(100% - calc(2 * var(--page-margin-x)));
  6. margin-left: auto;
  7. margin-right: auto;
  8. }
  9. .ui.fluid.container {
  10. width: 100%;
  11. }
  12. .ui.container.fluid.padded {
  13. padding: 0 var(--page-margin-x);
  14. }
  15. .ui[class*="center aligned"].container {
  16. text-align: center;
  17. }