Skip to content
Snippets Groups Projects
_layout.scss 2.77 KiB
Newer Older
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 {
  background-color: white;
  @media #{$large-phone} {
    padding: 0 3.25em 0 0;
Hugo NOUTS's avatar
Hugo NOUTS committed
    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;
  }
}

  background-color:rgba(18, 18, 18, 0.7);
  position: absolute;

Hugo NOUTS's avatar
Hugo NOUTS committed
  padding: 0rem 1rem 0rem 0rem;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
Hugo NOUTS's avatar
Hugo NOUTS committed
  @media #{$large-phone} {
    height: 26.5rem;
  }
  height: 34.5rem;

  .cta-box-header {
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.2px;
    margin-bottom: 1.5em;
    color: $text-bright;
  }
  .cta-box-button {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
Hugo NOUTS's avatar
Hugo NOUTS committed
  /* width */
  &::-webkit-scrollbar {
    width: 10px;
  }
  /* Track */
  &::-webkit-scrollbar-track {
    background: #3e4045;
  }
  /* Handle */
  &::-webkit-scrollbar-thumb {
    background: #6f7074;
  }