Sha256: 68cbee90eabe25b96593d6aa3b30fe365d103f9c6adad3985575b4a8f5c150fc

Contents?: true

Size: 927 Bytes

Versions: 2

Compression:

Stored size: 927 Bytes

Contents

// Converted Variables


// Custom Media Query Variables


/*

  TEXT ALIGN
  Docs: http://tachyons.io/docs/typography/text-align/

  Base
    t = text-align

  Modifiers
    l = left
    r = right
    c = center
    j = justify

  Media Query Extensions:
    -ns = not-small
    -m  = medium
    -l  = large

*/

.tl  { text-align: left; }
.tr  { text-align: right; }
.tc  { text-align: center; }
.tj  { text-align: justify; }

@media #{$breakpoint-not-small} {
  .tl-ns  { text-align: left; }
  .tr-ns  { text-align: right; }
  .tc-ns  { text-align: center; }
  .tj-ns  { text-align: justify; }
}

@media #{$breakpoint-medium} {
  .tl-m  { text-align: left; }
  .tr-m  { text-align: right; }
  .tc-m  { text-align: center; }
  .tj-m  { text-align: justify; }
}

@media #{$breakpoint-large} {
  .tl-l  { text-align: left; }
  .tr-l  { text-align: right; }
  .tc-l  { text-align: center; }
  .tj-l  { text-align: justify; }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tachyonscss-rails-4.9.0.1 app/assets/stylesheets/scss/_text-align.scss
tachyonscss-rails-4.9.0 app/assets/stylesheets/scss/_text-align.scss