Sha256: a69b1656c4879931357ed1bd1352472e388875295e47a6558691ae37024c4079

Contents?: true

Size: 1.16 KB

Versions: 14

Compression:

Stored size: 1.16 KB

Contents

// Converted Variables


// Custom Media Query Variables


/*

  Z-INDEX

  Base
    z = z-index

  Modifiers
    -0 = literal value 0
    -1 = literal value 1
    -2 = literal value 2
    -3 = literal value 3
    -4 = literal value 4
    -5 = literal value 5
    -999 = literal value 999
    -9999 = literal value 9999

    -max = largest accepted z-index value as integer

    -inherit = string value inherit
    -initial = string value initial
    -unset = string value unset

  MDN: https://developer.mozilla.org/en/docs/Web/CSS/z-index
  Spec: http://www.w3.org/TR/CSS2/zindex.html
  Articles:
    https://philipwalton.com/articles/what-no-one-told-you-about-z-index/

  Tips on extending:
  There might be a time worth using negative z-index values.
  Or if you are using tachyons with another project, you might need to
  adjust these values to suit your needs.

*/

.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.z-4 { z-index: 4; }
.z-5 { z-index: 5; }

.z-999 { z-index: 999; }
.z-9999 { z-index: 9999; }

.z-max {
  z-index: 2147483647;
}

.z-inherit { z-index: inherit; }
.z-initial { z-index: initial; }
.z-unset { z-index: unset; }

Version data entries

14 entries across 14 versions & 5 rubygems

Version Path
tachyonscss-rails-4.9.0.1 app/assets/stylesheets/scss/_z-index.scss
pocket-theme-0.4.4 _sass/_z-index.scss
pocket-theme-0.4.3 _sass/_z-index.scss
pocket-theme-0.4.1 _sass/_z-index.scss
tachyonscss-rails-4.9.0 app/assets/stylesheets/scss/_z-index.scss
jekyll-theme-jam-0.1.2 _sass/scss/_z-index.scss
jekyll-theme-jam-0.0.2 _sass/scss/_z-index.scss
jekyll-theme-jam-0.0.1 _sass/scss/_z-index.scss
ark-jekyll-theme-0.0.2 _sass/scss/_z-index.scss
minimal-jekyll-theme-0.2.1 _sass/scss/_z-index.scss
minimal-jekyll-theme-0.2.0 _sass/scss/_z-index.scss
minimal-jekyll-theme-0.1.4 _sass/scss/_z-index.scss
minimal-jekyll-theme-0.1.3 _sass/scss/_z-index.scss
minimal-jekyll-theme-0.1.2 _sass/scss/_z-index.scss