code.gitea.io/gitea@v1.22.3/web_src/css/modules/container.css (about)

     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  
     4  .ui.container {
     5    width: 1280px;
     6    max-width: calc(100% - calc(2 * var(--page-margin-x)));
     7    margin-left: auto;
     8    margin-right: auto;
     9  }
    10  
    11  .ui.fluid.container {
    12    width: 100%;
    13  }
    14  
    15  .ui[class*="center aligned"].container {
    16    text-align: center;
    17  }