Sha256: fcab683246b377daba80ec2fb07b6b2b76757591c32b0e081e564ef1e6b3ace6

Contents?: true

Size: 1.58 KB

Versions: 21

Compression:

Stored size: 1.58 KB

Contents

//
// background.scss
//


// Fixed at the bottom

.bg-fixed-bottom {
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100% auto;
  background-attachment: fixed;
}

// Calculate the width of the main container because 
// the background-attachment property will use 100vw instead

.navbar-vertical~.main-content.bg-fixed-bottom {
  background-size: 100%;

  @include media-breakpoint-up(md) {
    background-size: calc(100% - #{$navbar-vertical-width});
  }
}


// Cover

.bg-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


// Auth

.bg-auth {
  background-color: $auth-bg;
}


// Ellipses

@each $color,
$value in $theme-colors {

  .bg-ellipses.bg-#{$color} {
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-image: radial-gradient(#{$value}, #{$value} 70%, transparent 70.1%);
    background-size: 200% 150%;
    background-position: center bottom;
  }
}


// Hero

.bg-hero {
  background-image: linear-gradient(to bottom, fade-out($black, .15), fade-out($black, .15)),
  url(#{$path-to-img}/covers/header-cover.jpg);
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center center;
  background-size: cover, cover;
}


// Colors

.bg-lighter {
  background-color: $nft-soft-lighter !important;
}


// Soft colors

@each $color,
$value in $theme-colors {
  .bg-#{$color}-soft {
    background-color: theme-color-level($color, $bg-soft-level) !important;
  }
}

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
viniBaxter-desk_front-300.0.12 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-300.0.11 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-300.0.10 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-300.0.8 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-300.0.7 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-300.0.6 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-300.0.4 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-300.0.2 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-300.0.1 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-200.0.1 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-100.0.1 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-40.3.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-40.2.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-40.1.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-40.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-39.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-38.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-37.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-36.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-35.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss