Functional CSS library in SCSS
npm install quantum-css

> “Everything should be made as simple as possible, but no simpler.” – Albert Einstein 1
Quantum CSS is an atomic CSS library written in SCSS.
You won’t need to write any CSS rules and media queries while using Quantum CSS. Creating highly responsive UIs becomes pleasure while extension pattern provides means of controlled customization. You can create molecules with avaialble atoms using [@extend][1].
Here is a sample button component with rounded corners, hover and focus transition animations (which are disabled on small screens to provide better experience on touch devices):
``html`
`sass
.btn {
@extend .px15, .h40; // Size
@extend .bds-s, .bdw1, .bdr5; // Border style solid, border width 1px and rounded corners
@extend .trp-c, .trd200ms; // Color transitions
&-fb { @extend .bgc-fb, .c-w, .bdc-tt, .SM_bgc-dfb-hf } // Facebook
&-tw { @extend .bgc-tw, .c-w, .bdc-tt, .SM_bgc-dtw-hf } // Twitter
}
`
Benefits of using [@extend][1] approach:
- Highly standardized styles. Limited amount of building blocks allows you to have more order in your design.
- Stylesheet compilation time errors. Build fails if unknown atoms are used.
- Easy to remember class names. Atoms naming convention was heavily inspired by Emmet, and most of the time abbreviations are first letters of words that property or value names consist of.
- Value Aliases
- Color Values
- Unit-less Properties
1. Breakpoints
1. Pseudo-classes and Pseudo-elements
1. Grid System
- Containers
- Rows
- Columns
- Column Ordering
1. Atom Index
- Background
background-color
background-attachment
background-clip
background-image
background-origin
background-repeat
background-size
background-position
background-position-x
background-position-y
fill
- Border
border-color
border-top-color
border-right-color
border-bottom-color
border-left-color
border-width
border-top-width
border-right-width
border-bottom-width
border-left-width
border-style
border-top-style
border-right-style
border-bottom-style
border-left-style
border-radius
border-top-right-radius
border-top-left-radius
border-bottom-right-radius
border-bottom-left-radius
- Images
object-fit
- Flexible Box Layout
flex-direction
flex-wrap
flex-grow
flex-shrink
flex-basis
justify-content
align-items
align-content
align-self
order
- Positioning
float
clear
position
top
right
bottom
left
z-index
- Fonts
font-size
line-height
font-family
font-weight
font-style
font-variant
font-size-adjust
font-stretch
-webkit-font-smoothing
-moz-osx-font-smoothing
- Transitions
transition-property
transition-duration
transition-timing-function
- Text
letter-spacing
overflow-wrap
text-align
text-align-last
text-indent
text-decoration
text-transform
white-space
word-break
word-wrap
- Lists and Counters
list-style
list-style-position
list-style-type
- Colors
color
opacity
- Box Model
box-sizing
height
width
margin
padding
overflow
overflow-x
overflow-y
-webkit-overflow-scrolling
visibility
- Page
page-break-before
page-break-inside
page-break-after
- User Interface
cursor
resize
text-overflow
user-select
- Table
border-collapse
caption-side
empty-cells
table-layout
vertical-align
- Miscellaneous
display
1. License
In Quantum CSS every class name consists of four parts in given order:
1. Optional breakpoint name: SM, MD etc.w
1. Property abbreviation: bdtc, ws etc.
1. Value abbreviation: , 100p, 360d etc.hf
1. Optional pseudo-class or pseudo-element modifier: , h etc.
You can configure separators between each parts of class name with following variables:
- $breakpoint-sep define separator between breakpoint name and property abbreviation.
- $literal-sep and $ordinal-sep define separators that are inserted between property name and literal value abbreviation or ordinal one respectively.
- $pseudo-sep defines separator between pseudo modifier from value abbreviation.
Aliases for commonly used values:
- p → %e
- → emx
- → exr
- → remd
- → degt
- → turn
These aliases are used instead of full units:
- w100p → width: 100%@media (min-width: 576px) { max-height: 42px }
- SM_mah42 →
Names for colors are used fo increase readability. By default, Tango palette is used for every color-related atom. You can specify your own palette overriding variables in _variables.scss.
Greyscale | Value
---------------- | ---------
1. White w | #fffg1
2. Grey 15% | #eeeeecg2
3. Grey 30% | #d3d7cfg3
4. Grey 45% | #babdb6g4
5. Grey 60% | #888a85g5
6. Grey 75% | #555753g6
7. Grey 90% | #2e3436b
8. Black | #000
Color | Light l | Medium | Dark dy
----------------- | --------- | --------- | ---------
9. Yellow | #fce94f | #edd400 | #c4a000o
10. Orange | #fcaf3e | #f57900 | #ce5c00c
11. Chocolate | #e9b96e | #c17d11 | #8f5902g
12. Green | #8ae234 | #73d216 | #4e9a06n
13. Navy | #729fcf | #3465a4 | #204a87p
14. Purple | #ad7f8a | #75507b | #5c3566r
15. Red | #ef2929 | #cc0000 | #a40000
CSS-literal colors:
- cc → currentColor t
- → transparenti
- → inherit
Generated atom examples:
- SM_bgc-dg → background-color: #4e9a06 Dark greenborder-right-color: white
- bdrc-w → color: black
- LG_c-b →
Some CSS properties are defined as unit-less, e.g. no unit suffix will be outputted:
- lh1 → line-height: 1font-weight: 400
- fw400 → opacity: 0.37
- op37 →
One of the most powerful features of Quantum is breakpoint-based media queries.
You can configure set of pseudo-classes and pseudo-elements for which atoms are generated via $pseudos. To emit disjunction of pseudos use comma-separated list.
`sass
$pseudos: (hf: (hover, focus));
.c-w-hf:hover,
.c-w-hf:focus {
color: white;
}
`
Space-separated list defines selector conjunction:
`sass
$pseudos: (eh: empty hover);
.c-w-eh:empty:hover {
color: white;
}
`
Combine those different list types for precise class targeting:
`sass
$pseudos: (foo: (active hover, active focus));
.c-w-foo:active:hover,
.c-w-foo:active:focus {
color: white;
}
`
As well as in Bootstrap Containers are the most basic layout element and are required when using grid system. Use g-f to create a fixed-width centered responsive layout of columns.
While containers _can_ be nested, most layouts do not require a nested container.
`html`
Widths of fixed-width container are stored in $grid-widths.
Rows are horizontal groups of columns that ensure your columns are lined up properly.
`html`
Content should be placed within columns, and only columns may be immediate children of rows.
Column classes indicate the number of columns you’d like to use out of the possible 12 per row. So if you want three equal-width columns, you’d use SM_gc4. You can change number of columns in grid altering $grid-col-count.
Column widths are set in percentages, so they’re always fluid and sized relative to their parent element.
Columns have horizontal padding to create the gutters between individual columns. Gutters can be configured per every breakpoint via $grid-gutters.
`html`
In addition to column clearing at responsive breakpoints, you may need to reset offsets, pushes, or pulls.
Move columns to the right using [breakpoint\_]go(0…12/1) classes. These classes increase the left margin of a column by specified number of columns. For example, MD_go4 moved MD_gc4 over four columns.
Change the order of columns by relatively shifting them to the left with [breakpoint\_]gsl(0…12/1) or to the right with [breakpoint\_]gsr(0…12/1) classes.
`html`
Values for each atom are listed in the order they are listed in generated CSS.
- (1…10/2) Range of possible values from 1 to 10 with step 2.[breakpoint_]
- and [-pseudo] Optional breakpoint and pseudo-element or pseudo-class.{key}
- and {value} Placeholders for map key and map value.
Example [breakpoint_]fw(100…900/100) expands to fw100, fw200 … SM_fw100, SM_fw200 … LG_fw900.
#### background-color
[breakpoint\_]bgc{key}[-pseudo] → background-color: {value}
Specify mapping in $background-colors: (key: value).
1. bga-f → fixedscroll
1. bga-s →
#### background-clip
1. bgcp-bb → border-boxpadding-box
1. bgcp-pb → content-box
1. bgcp-cb → inherit
1. bgcp-i →
#### background-image
1. bgi-n → noneinherit
1. bgi-i →
#### background-origin
1. bgo-bb → border-boxpadding-box
1. bgo-pb → content-box
1. bgo-cb →
#### background-repeat
1. bgr-n → no-repeatrepeat-x
1. bgr-x → repeat-y
1. bgr-y → space
1. bgr-s → round
1. bgr-r →
#### background-size
1. bgz-a → autocontain
1. bgz-ct → cover
1. bgz-cv →
#### background-position
1. bgp-tc → top centertop left
1. bgp-tl → center right
1. bgp-cr → center center
1. bgp-cc → center left
1. bgp-cl → bottom right
1. bgp-br → bottom center
1. bgp-bc → bottom left
1. bgp-bl →
1. bgpx-r → rightcenter
1. bgpx-c → left
1. bgpx-l →
1. bgpy-t → topcenter
1. bgpy-c → bottom
1. bgpy-b →
#### fill
[breakpoint\_]fi{key}[-pseudo] → fill: {value}
Specify mapping in $background-colors: (key: value).
#### border-color
1. [breakpoint\_]bdc{key}[-pseudo] → border-color: {value}border-top-color: {value}
1. [breakpoint\_]bdxc{key}[-pseudo] = bdlc{key}, bdrc{key}
1. [breakpoint\_]bdyc{key}[-pseudo] = bdtc{key}, bdbc{key}
1. [breakpoint\_]bdtc{key}[-pseudo] → border-bottom-color: {value}
1. [breakpoint\_]bdbc{key}[-pseudo] → border-right-color: {value}
1. [breakpoint\_]bdrc{key}[-pseudo] → border-left-color: {value}
1. [breakpoint\_]bdlc{key}[-pseudo] →
Specify mapping in $border-colors: (key: value).
#### border-width
1. [breakpoint\_]bdw{key} → border-width: {value}border-top-width: {value}
1. [breakpoint\_]bdxw{key} = bdlw{key}, bdrw{key}
1. [breakpoint\_]bdyw{key} = bdtw{key}, bdbw{key}
1. [breakpoint\_]bdtw{key} → border-bottom-width: {value}
1. [breakpoint\_]bdbw{key} → border-right-width: {value}
1. [breakpoint\_]bdrw{key} → border-left-width: {value}
1. [breakpoint\_]bdlw{key} →
Specify mapping in $border-widths: (key: value).
#### border-style
1. [breakpoint\_]bds{key} → border-style: {value}border-top-style: {value}
1. [breakpoint\_]bdxs{key} = bdls{key}, bdrs{key}
1. [breakpoint\_]bdys{key} = bdts{key}, bdbs{key}
1. [breakpoint\_]bdts{key} → border-bottom-style: {value}
1. [breakpoint\_]bdbs{key} → border-right-style: {value}
1. [breakpoint\_]bdrs{key} → border-left-style: {value}
1. [breakpoint\_]bdls{key} →
Specify mapping in $border-styles: (key: value).
By default, all available border styles are included. Border style atoms are emitted for every breakpoint what can
cause significant increase of outputted CSS file. Be sure to remove unused border styles in order to reduce file size.
#### border-radius
1. [breakpoint\_]bdr{key} → border-radius: {value}border-top-right-radius: {value}
1. [breakpoint\_]bdtr{key} = bdtlr{key}, bdtrr{key}
1. [breakpoint\_]bdrr{key} = bdtrr{key}, bdbrr{key}
1. [breakpoint\_]bdbr{key} = bdblr{key}, bdbrr{key}
1. [breakpoint\_]bdlr{key} = bdtlr{key}, bdblr{key}
1. [breakpoint\_]bdtrr{key} → border-top-left-radius: {value}
1. [breakpoint\_]bdtlr{key} → border-bottom-right-radius: {value}
1. [breakpoint\_]bdbrr{key} → border-bottom-left-radius: {value}
1. [breakpoint\_]bdblr{key} →
Specify mapping in $border-radiuses: (key: value).
#### object-fit
1. of-n → nonefill
1. of-f → contain
1. of-ct → cover
1. of-cv → scale-down
1. of-sd → inherit
1. of-i →
#### transform
1. ts-n → noneinherit
1. ts-i → transform: rotate(45deg)
1. tsr(45d…360/45d) → …rotate(360deg)transform: rotate(-45deg)
1. tsr(-45d…-360/-45d) → …rotate(-360deg)transform: scale(0)
1. tss(0…200/25) → …scale(2)
1. [breakpoint\_]fx-r = d-fx, fxd-r
1. [breakpoint\_]fx-rr = d-fx, fxd-rr
1. [breakpoint\_]fx-c = d-fx, fxd-c
1. [breakpoint\_]fx-cr = d-fx, fxd-cr
#### flex-direction
1. [breakpoint\_]fxd-r → rowrow-reverse
1. [breakpoint\_]fxd-rr → column
1. [breakpoint\_]fxd-c → column-reverse
1. [breakpoint\_]fxd-cr →
#### flex-wrap
1. [breakpoint\_]fxw-n → nowrapwrap
1. [breakpoint\_]fxw-w → wrap-reverse
1. [breakpoint\_]fxw-wr →
#### flex-grow
[breakpoint\_]fxg(0…10/1) → flex-grow: 0…10
#### flex-shrink
[breakpoint\_]fxs(0…10/1) → flex-shrink: 0…10
#### flex-basis
1. [breakpoint\_]fxb-a → automax-content
1. [breakpoint\_]fxb-mac → min-content
1. [breakpoint\_]fxb-mic → fit-content
1. [breakpoint\_]fxb-fc → content
1. [breakpoint\_]fxb-c →
#### justify-content
1. [breakpoint\_]jc-fs → flex-startflex-end
1. [breakpoint\_]jc-fe → center
1. [breakpoint\_]jc-c → space-between
1. [breakpoint\_]jc-sb → space-around
1. [breakpoint\_]jc-sa →
#### align-items
1. [breakpoint\_]ai-fs → flex-startflex-end
1. [breakpoint\_]ai-fe → center
1. [breakpoint\_]ai-c → baseline
1. [breakpoint\_]ai-bs → stretch
1. [breakpoint\_]ai-s →
#### align-content
1. [breakpoint\_]ac-fs → flex-startflex-end
1. [breakpoint\_]ac-fe → center
1. [breakpoint\_]ac-c → space-between
1. [breakpoint\_]ac-sb → space-around
1. [breakpoint\_]ac-sa → stretch
1. [breakpoint\_]ac-s →
#### align-self
1. [breakpoint\_]as-a → autoflex-start
1. [breakpoint\_]as-fs → flex-end
1. [breakpoint\_]as-fe → center
1. [breakpoint\_]as-c → baseline
1. [breakpoint\_]as-b → stretch
1. [breakpoint\_]as-s →
#### order
[breakpoint\_]ord(0…10/1) → order: 0…10
#### float
1. [breakpoint\_]fl-l → leftright
1. [breakpoint\_]fl-r → none
1. [breakpoint\_]fl-n →
#### clear
1. cl-l → leftright
1. cl-r → both
1. cl-b → none
1. cl-n →
#### position
1. pos-s → staticabsolute
1. pos-a → relative
1. pos-r → fixed
1. pos-f →
1. [breakpoint\_]t{key} → top: {value}right: {value}
1. [breakpoint\_]r{key} → bottom: {value}
1. [breakpoint\_]b{key} → left: {value}
1. [breakpoint\_]l{key} →
Specify mapping in $positions: (key: value).
#### z-index
1. z(0…10/1) → z-index: 0…10auto
1. z-a → inherit
1. z-i →
#### font-size
1. [breakpoint\_]fz-xxs → xx-smallx-small
1. [breakpoint\_]fz-xs → small
1. [breakpoint\_]fz-s → medium
1. [breakpoint\_]fz-m → large
1. [breakpoint\_]fz-l → x-large
1. [breakpoint\_]fz-xl → xx-large
1. [breakpoint\_]fz-xxl → larger
1. [breakpoint\_]fz-lr → smaller
1. [breakpoint\_]fz-sr → inherit
1. [breakpoint\_]fz-i → font-size: {value}
1. [breakpoint\_]fz{key} →
Specify mapping in $font-sizes: (key: value).
#### line-height
1. lh-n → normalinherit
1. lh-i → 0
1. lh0 → 1
1. lh1 → line-height: {value}
1. lh{key} →
Specify mapping in $line-heights: (key: value).
#### font-family
1. [breakpoint\_]fs-s → serifsans-serif
1. [breakpoint\_]fs-ss → monospace
1. [breakpoint\_]fs-m → cursive
1. [breakpoint\_]fs-c → fantasy
1. [breakpoint\_]fs-f → inherit
1. [breakpoint\_]fs-i → font-family: {value}
1. [breakpoint\_]fs{key} →
Specify mapping in $font-families: (key: value).
#### font-weight
1. [breakpoint\_]fw(100…900/100) → font-weight: 100…900normal
1. [breakpoint\_]fw-n → bold
1. [breakpoint\_]fw-b → bolder
1. [breakpoint\_]fw-br → lighter
1. [breakpoint\_]fw-lr → inherit
1. [breakpoint\_]fw-i →
#### font-style
1. [breakpoint\_]fs-n → normalitalic
1. [breakpoint\_]fs-i → oblique
1. [breakpoint\_]fs-o →
#### font-variant
1. fv-cl → common-ligaturesall-petite-caps
1. fv-apc → all-small-caps
1. fv-asc → small-caps
1. fv-sc → contextual
1. fv-c → diagonal-fractions
1. fv-df → stacked-fractions
1. fv-sf → historical-forms
1. fv-hf → historical-ligatures
1. fv-hl → inherit
1. fv-i → normal
1. fv-n → tabular-nums
1. fv-tn → proportional-nums
1. fv-pn → proportional-width
1. fv-pw →
#### font-size-adjust
fza-n → none
#### font-stretch
1. fst-n → normalultra-condensed
1. fst-uc → extra-condensed
1. fst-ec → condensed
1. fst-c → semi-condensed
1. fst-sc → semi-expanded
1. fst-se → expanded
1. fst-e → extra-expanded
1. fst-ee → ultra-expanded
1. fst-ue →
1. wfsm-a → antialiasedsubpixel-antialiased
1. wfsm-sa → none
1. wfsm-n →
1. mfsm-a → autograyscale
1. mfsm-g →
#### transition-property
1. trp-n → noneall
1. trp-a →
#### transition-duration
trd(100ms…1000ms/100ms) → transition-duration: 100ms…1000ms
#### transition-timing-function
1. trtf-e → easeease-in
1. trtf-ei → ease-out
1. trtf-eo → ease-in-out
1. trtf-eio → linear
1. trtf-l → step-start
1. trtf-ss → step-end
1. trtf-se →
#### letter-spacing
1. ls-n → normalinherit
1. ls-i → letter-spacing: {value}
1. ls{key} →
Specify mapping in $letter-spacings: (key: value).
#### overflow-wrap
1. ovw-n → normalbreak-word
1. ovw-b →
#### text-align
1. [breakpoint\_]ta-l → leftcenter
1. [breakpoint\_]ta-c → right
1. [breakpoint\_]ta-r → justify
1. [breakpoint\_]ta-j →
#### text-align-last
1. [breakpoint\_]tal-l → leftcenter
1. [breakpoint\_]tal-c → right
1. [breakpoint\_]tal-r → justify
1. [breakpoint\_]tal-j →
#### text-indent
ti{key} → text-indent: {value}
Specify mapping in $text-indents: (key: value).
#### text-decoration
1. [breakpoint\_]td-n[-pseudo] → noneunderline
1. [breakpoint\_]td-u[-pseudo] → overline
1. [breakpoint\_]td-o → line-through
1. [breakpoint\_]td-lt →
#### text-transform
1. tt-c → capitalizeuppercase
1. tt-u → lowercase
1. tt-l → none
1. tt-n → full-width
1. tt-fw →
#### white-space
1. [breakpoint\_]ws-n → normalpre
1. [breakpoint\_]ws-p → nowrap
1. [breakpoint\_]ws-nw → pre-wrap
1. [breakpoint\_]ws-pw → pre-line
1. [breakpoint\_]ws-pl →
#### word-break
1. wob-n → normalkeep-all
1. wob-ka → break-all
1. wob-ba →
#### word-wrap
1. wow-n → normalbreak-word
1. wow-bw →
#### list-style
1. lis-n → noneinherit
1. lis-i →
#### list-style-position
1. lisp-in → insideoutside
1. lisp-o → inherit
1. lisp-i →
#### list-style-type
1. list-n → nonedisc
1. list-d → circle
1. list-c → square
1. list-s → decimal
1. list-dc → decimal-leading-zero
1. list-dclz → lower-roman
1. list-lr → upper-roman
1. list-ur → inherit
1. list-i →
#### color
[breakpoint\_]c{key}[-pseudo] → color: {value}
Specify mapping in $colors: (key: value).
#### opacity
op(0…100/1) → opacity: 0…1
#### box-shadow
bxs{key}[-pseudo] → box-shadow: {value}
Specify mapping in $box-shadows: (key: value).
#### box-sizing
1. bxz-cb → content-boxborder-box
1. bxz-bb → inherit
1. bxz-i →
#### height
1. [breakpoint\_]h{key} → height: {value}max-height: none
1. [breakpoint\_]mah-n → max-height: {value}
1. [breakpoint\_]mah{key} → min-height: {value}
1. [breakpoint\_]mih{key} →
Specify mapping in $heights: (key: value).
#### width
1. [breakpoint\_]w{key} → width: {value}max-width: none
1. [breakpoint\_]maw-n → max-width: {value}
1. [breakpoint\_]maw{key} → min-width: {value}
1. [breakpoint\_]miw{key} →
Specify mapping in $widths: (key: value).
#### margin
1. [breakpoint\_]m{key} → margin: {value}margin-left: auto
1. [breakpoint\_]mx-a → , margin-right: automargin-top: {value}
1. [breakpoint\_]mx{key} = ml{key}, mr{key}
1. [breakpoint\_]my{key} = mt{key}, mb{key}
1. [breakpoint\_]mt{key} → margin-right: {value}
1. [breakpoint\_]mr{key} → margin-bottom: {value}
1. [breakpoint\_]mb{key} → margin-left: {value}
1. [breakpoint\_]ml{key} →
Specify mapping in $margins: (key: value).
#### padding
1. [breakpoint\_]p{key} → padding: {value}padding-top: {value}
1. [breakpoint\_]px{key} = pl{key}, pr{key}
1. [breakpoint\_]py{key} = pt{key}, pb{key}
1. [breakpoint\_]pt{key} → padding-right: {value}
1. [breakpoint\_]pr{key} → padding-bottom: 100%
1. [breakpoint\_]pb100p → padding-bottom: {value}
1. [breakpoint\_]pb{key} → padding-left: {value}
1. [breakpoint\_]pl{key} →
Specify mapping in $paddings: (key: value).
#### overflow
1. ov-v → visiblehidden
1. ov-h → scroll
1. ov-s → auto
1. ov-a →
#### overflow-x
1. ovx-v → visiblehidden
1. ovx-h → scroll
1. ovx-s → auto
1. ovx-a →
#### overflow-y
1. ovy-v → visiblehidden
1. ovy-h → scroll
1. ovy-s → auto
1. ovy-a →
#### -webkit-overflow-scrolling
1. wovs-t → touchauto
1. wovs-a →
#### visibility
1. [breakpoint\_]v-v → visiblehidden
1. [breakpoint\_]v-h → collapse
1. [breakpoint\_]v-c →
#### page-break-before
1. pgbb-a → autoalways
1. pgbb-al → avoid
1. pgbb-av → left
1. pgbb-l → right
1. pgbb-r →
#### page-break-inside
1. pgbi-a → autoavoid
1. pgbi-av →
#### page-break-after
1. pgba-a → autoalways
1. pgba-al → avoid
1. pgba-av → left
1. pgba-l → right
1. pgba-r →
#### cursor
1. cur-a → autodefault
1. cur-d → context-menu
1. cur-cm → help
1. cur-h → pointer
1. cur-p → progress
1. cur-ps → wait
1. cur-w → cell
1. cur-cl → crosshair
1. cur-c → text
1. cur-t → alias
1. cur-al → copy
1. cur-cp → move
1. cur-m → no-drop
1. cur-nd → not-allowed
1. cur-na → all-scroll
1. cur-as → col-resize
1. cur-cr → row-resize
1. cur-rr → n-resize
1. cur-nr → e-resize
1. cur-er → s-resize
1. cur-sr → w-resize
1. cur-wr → ne-resize
1. cur-ner → nw-resize
1. cur-nwr → se-resize
1. cur-ser → sw-resize
1. cur-swr → ew-resize
1. cur-ewr → ns-resize
1. cur-nsr → nesw-resize
1. cur-neswr → nwse-resize
1. cur-nwser → zoom-in
1. cur-zi → zoom-out
1. cur-zo → grab
1. cur-g → grabbing
1. cur-gr → none
1. cur-n →
#### resize
1. rz-n → noneboth
1. rz-b → horizontal
1. rz-h → vertical
1. rz-v →
#### text-overflow
1. tov-e → ellipsisclip
1. tov-c →
#### user-select
1. us-n → nonetext
1. us-t → all
1. us-a →
#### border-collapse
1. bdce-c → collapseseparate
1. bdce-s → inherit
1. bdce-i →
#### caption-side
1. cps-t → topbottom
1. cps-b →
#### empty-cells
1. ec-s → showhide
1. ec-h →
#### table-layout
1. tbl-a → autofixed
1. tbl-f →
#### vertical-align
1. va-sp → supertop
1. va-t → text-top
1. va-tt → middle
1. va-m → baseline
1. va-bs → bottom
1. va-b → text-bottom
1. va-tb → sub
1. va-sb →
#### display
1. d-n → noneblock
1. d-b → flex
1. d-fx → list-item
1. d-li → run-in
1. d-ri → inline
1. d-i → inline-table
1. d-itb → inline-flex
1. d-ifx → inline-block
1. d-ib → table
1. d-tb → table-caption
1. d-tcp → table-column
1. d-tc → table-column-group
1. d-tcg → table-header-group
1. d-thg → table-footer-group
1. d-tfg → table-row
1. d-tr → table-row-group
1. d-trg → table-cell
1. d-tcl → ruby
1. d-rb → ruby-base
1. d-rbb → ruby-base-container
1. d-rbbc → ruby-text
1. d-rbt → ruby-text-container`
1. d-rbtc →
The code is available under MIT licence.
[1]: http://sass-lang.com/documentation/file.SASS_REFERENCE.html#extend