Sha256: 39c9d331a3403249750a504c076b535929278a2dec01a1b83afe4c4fc24c157a

Contents?: true

Size: 1.57 KB

Versions: 28

Compression:

Stored size: 1.57 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: $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

28 entries across 28 versions & 1 rubygems

Version Path
viniBaxter-desk_front-33.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-32.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-31.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-30.0.1 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-26 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-25.1 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-25 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-24.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-22.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-21.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-20.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-19.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-18.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-17.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-16.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-15.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-14.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-13.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-12.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss
viniBaxter-desk_front-11.0.0 lib/viniBaxter/sass/desk_front/dashkit/utilities/_background.scss