gitea源码

container.css 388B

1234567891011121314151617
  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.medium-width {
  13. width: 800px;
  14. }