Skip to content
Snippets Groups Projects
Select Git revision
  • 968e6d99836d00c56dc03f88c93c78b5d759ff14
  • test default protected
  • master protected
  • feat/custom-css
  • feat/redesign-improvements-10
  • feat/redesign-improvements-8
  • feat/redesign-fixes-3
  • feat/pirstan-changes
  • feat/separate-import-thread
  • feat/dary-improvements
  • features/add-pdf-page
  • features/add-typed-table
  • features/fix-broken-calendar-categories
  • features/add-embed-to-articles
  • features/create-mastodon-feed-block
  • features/add-custom-numbering-for-candidates
  • features/add-timeline
  • features/create-wordcloud-from-article-page
  • features/create-collapsible-extra-legal-info
  • features/extend-hero-banner
  • features/add-link-to-images
21 results

container.pcss

Blame
    • Daniel Kriz's avatar
      968e6d99
      [FIX] · 968e6d99
      Daniel Kriz authored
      Responsive -> photos, articles, twitter, newsletter
      person.mustache -> format
      968e6d99
      History
      [FIX]
      Daniel Kriz authored
      Responsive -> photos, articles, twitter, newsletter
      person.mustache -> format
    container.pcss 1.53 KiB
    .container--default {
      @apply max-w-screen-xl;
    }
    
    .container--narrow {
      margin: auto;
      width: 882px;
    }
    
    .container--medium {
      margin: auto;
      max-width: 1300px;
    }
    
    .container--wide {
      margin: auto;
      max-width: 1400px;
    }
    
    .section-clip {
      clip-path: polygon(0 1%, 100% 0%, 100% 99%, 0% 100%);
      margin-bottom: -3.2vw;
    
      @screen xl {
        clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
        margin-bottom: -4.2vw;
      }
    }
    
    .header-max-width {
      max-width: 1340px !important;
    }
    
    .container {
      @apply: mx-auto;
      max-width: 1150px;
    }
    
    .grid-container {
      @apply grid mx-5;
      grid-template-columns: 1fr;
      grid-template-areas:
      "left-side"
      "content"
      "right-side";
      gap: 1rem;
      max-width: 1150px;
    }
    @responsive {
      .grid-container {
        @screen xl {
          grid-template-columns: 240px 1fr 102px;
          grid-template-areas:
          "left-side content right-side";
          margin-left: 10%;
        }
         @screen 3xl {
          margin-left: 20%;
        }
      }
    }
    
    .grid-content {
      grid-area: content;
    }
    
    .grid-left-side {
      grid-area: left-side;
    }