Skip to content
Snippets Groups Projects
spoke.scss 2.94 KiB
@import 'shared';
@import 'loader';

$spoke-action-color: #2F80ED;
$breakpoint: 1280px;
$mobile-breakpoint: 450px;

body {
  @extend %default-font;
  background: black;
  color: white;
  margin: 0;
}

:local(.bg) {
  background: radial-gradient(#222C41 0%, black 100%); 
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
}

:local(.ui) {
  display: flex;
  flex-direction: column;
}

:local(.content) {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 72px);
}

:local(.header) {
  font-size: 1.1em;
  font-weight: bold;
  color: white;
}

:local(.header-links) {
  display: flex;
  margin: 24px 12px;

  @media(max-width: $mobile-breakpoint) {
    justify-content: space-between;
  }

  a {
    color: white;
    text-decoration: none;
    margin: 0px 18px;
  }
}

:local(.hero-pane) {
  display: flex;
  height: 100%;
  position: relative;

  @media(max-width: $breakpoint) {
    flex-direction: column;
  }
}

:local(.spoke-logo) {
  position: relative;

  img {