Skip to content
Snippets Groups Projects
_layout.scss 2.27 KiB
Newer Older
  • Learn to ignore specific revisions
  • Hugo NOUTS's avatar
    Hugo NOUTS committed
    @import 'color';
    @import '../base/breakpoint';
    
    html {
      background: $app-background;
    }
    
    body {
      background: $app-background;
      overflow: unset !important;
    }
    
    .column {
      display: flex;
      flex-direction: column;
    }
    
    .row {
      display: flex;
      flex-direction: row;
    }
    
    .cozy-bar {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    [role='banner'] .coz-bar-container {
      padding: 0 3.25em 0 0;
      background-color: white;
      @media #{$large-phone} {
        background-color: unset;
      }
    }
    
    .coz-bar-wrapper {
      box-shadow: unset !important;
      background: unset !important;
    }
    
    .header {
      display: flex;
      align-items: center;
      flex-direction: column;
      overflow: hidden;
      width: 100%;
      z-index: 18;
      position: fixed;
      top: 48px;
      left: 0;
      @media #{$large-phone} {
        top: 0;
      }
      .header-bar {
        background: linear-gradient(180deg, #000000 0%, rgba(27, 28, 34, 0) 70%);
        height: 8px;
        width: 100%;
      }
      .header-top {
        background: radial-gradient(
          74.83% 76.97% at 50% 13.64%,
          #343641 0%,
          #1b1c22 100%
        );
        width: 100%;
        .header-text {
          padding: 0 1rem 1rem 1rem;
          color: $text-bright;
        }
      }
      .header-content {
        margin: 0 0 0 220px;
        .header-text {
          padding: 2rem 1rem;
        }
        .header-text-desktop {
          display: block;
          padding: 2rem 1.25rem;
          color: $text-bright;
        }
        @media #{$tablet} {
          margin: 0;
        }
        @media #{$large-phone} {
          margin: 60px 0 0 0;
          .header-text {
            padding: 0 1rem 1rem 1rem;
            color: $text-bright;
          }
          .header-text-desktop {
            display: none;
          }
        }
      }
    }
    
    .content-view {
      margin-top: 116px;
      @media #{$large-phone} {
        margin-top: 0;
      }
    }
    
    .content-view-loading {
      height: 80vh;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: $text-bright;
      .content-view-loading-text {
        padding-top: 1rem;
        margin: 0 2rem;
        text-align: center;
      }
      .content-view-loading-button {
        max-width: 50vw;
        margin-top: 1rem;
      }
    }
    
    [role='main']{
      /* width */
      &::-webkit-scrollbar {
        width: 10px;
      }
      /* Track */
      &::-webkit-scrollbar-track {
        background: #3e4045;
      }
      /* Handle */
      &::-webkit-scrollbar-thumb {
        background: #6f7074;
      }
    }