1.1.0 • Published 7 years ago

functional-css v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Functional CSS

This module will let you seamlessly integrate functional css. This also comes with a dark and light theme.

Install

npm install functional-css

Usage

Webpack with JS ES6 / TypeScript

import 'functional-css'

Webpack with ES5

require('functional-css')

With CSS/SCSS

@import '~functional-css'

Import what's required

// core functional-css classes
import 'functional-css/dist/core.min.css'

// light and dark themes
import 'functional-css/dist/theme.min.css'

// light theme
import 'functional-css/dist/light-theme.min.css'

// dark theme
import 'functional-css/dist/dark-theme.min.css'

Without Bundle

 <link rel="stylesheet" media="all" href="./node_modules/functional-css/dist/index.min.css">

Create Your Own Color Theme

This module comes with the two color themes dark and light. Define the color name as a class on the body tag, then use colors as defined under Colors Classes

You can define colors themes on your own as below. Colors are defined in pairs. The second color is the contrast color to the first.

@import '~functional-css/src/mixins'
.name-of-the-theme {
  @include addColor(primary, #2C3336, #d7e3ea);
  @include addColor(primary-s1, #162029, #abb4bd);
  @include addColor(primary-s2, #3C4549, #d3dce0);
  @include addColor(primary-s3, #58656d, #d3dce0);
  @include addColor(secondary, #fafafa, #4b585f);
  @include addColor(secondary-s1, #ecf0f3, #4b585f);
  @include addColor(secondary-s2, #58656d, #ecf0f3);
  @include addColor(accent, #ffae27, #424242);
  @include addColor(white, #fff, #000);
  @include addColor(black, #000, #fff);
  @include addColor(error, #D02A2B, #fff);
  @include addColor(success, #29D185, #fff);
  @include addColor(warning, #ffae27, #424242);
  @include addColor(divider, #263138);
}

Table of Contents

Styles

Colors Classes

StyleCss
.${color}background-color: ${value}; color: ${contrast};
.${color}-contrastcolor: ${contrast};
.${color}-textcolor: ${value};
.${color}-bgbackground-color: ${value};
.${color}-brborder-color: ${value};
.${color}-brtborder-top-color: ${value};
.${color}-brrborder-right-color: ${value};
.${color}-brbborder-bottom-color: ${value};
.${color}-brlborder-left-color: ${value};
.${color}-oloutline-color: ${value};
.${color}-oltoutline-top-color: ${value};
.${color}-olroutline-right-color: ${value};
.${color}-olboutline-bottom-color: ${value};
.${color}-olloutline-left-color: ${value};
.${color}-oloutline-color: ${value};
.${color}-fifill: ${value};
.${color}-ststroke: ${value};
.${color}--hoverbackground-color: ${value}; color: ${contrast};
.${color}-contrast--hovercolor: ${contrast};
.${color}-text--hovercolor: ${value};
.${color}-bg--hoverbackground-color: ${value};
.${color}-br--hoverborder-color: ${value};
.${color}-brt--hoverborder-top-color: ${value};
.${color}-brr--hoverborder-right-color: ${value};
.${color}-brb--hoverborder-bottom-color: ${value};
.${color}-brl--hoverborder-left-color: ${value};
.${color}-ol--hoveroutline-color: ${value};
.${color}-olt--hoveroutline-top-color: ${value};
.${color}-olr--hoveroutline-right-color: ${value};
.${color}-olb--hoveroutline-bottom-color: ${value};
.${color}-oll--hoveroutline-left-color: ${value};
.${color}-fi--hoverfill: ${value};
.${color}-st--hoverstroke: ${value};
.${color}--focusbackground-color: ${value}; color: ${contrast};
.${color}-contrast--focuscolor: ${contrast};
.${color}-text--focuscolor: ${value};
.${color}-bg--focusbackground-color: ${value};
.${color}-br--focusborder-color: ${value};
.${color}-brt--focusborder-top-color: ${value};
.${color}-brr--focusborder-right-color: ${value};
.${color}-brb--focusborder-bottom-color: ${value};
.${color}-brl--focusborder-left-color: ${value};
.${color}-ol--focusoutline-color: ${value};
.${color}-olt--focusoutline-top-color: ${value};
.${color}-olr--focusoutline-right-color: ${value};
.${color}-olb--focusoutline-bottom-color: ${value};
.${color}-oll--focusoutline-left-color: ${value};
.${color}-fi--focusfill: ${value};
.${color}-st--focusstroke: ${value};

Available Colors

StyleCss (Dark Theme)
primarybackground-color: #162029color: #abb4bd
primary-s1background-color: #2C3336color: #d7e3ea
primary-s2background-color: #3C4549color: #d3dce0
primary-s3background-color: #58656dcolor: #d3dce0
secondarybackground-color: #fafafacolor: #4b585f
secondary-s1background-color: #ecf0f3color: #4b585f
secondary-s2background-color: #58656dcolor: #ecf0f3
accentbackground-color: #ffae27color: #424242
whitebackground-color: #fffcolor: #000
blackbackground-color: #000color: #fff
errorbackground-color: #D02A2Bcolor: #fff
successbackground-color: #29D185color: #fff
warningbackground-color: #ffae27color: #424242
dividerbackground-color: #263138

}

Transparent Colors

StyleCss
.transparentbackground-color: transparent;
.transparent-textcolor: transparent;
.transparent-bgbackground-color: transparent;
.transparent-bborder-color: transparent;
.transparent-btborder-top-color: transparent;
.transparent-brborder-right-color: transparent;
.transparent-bbborder-bottom-color: transparent;
.transparent-blborder-left-color: transparent;
.transparent-ooutline-color: transparent;
.transparent--hoverbackground-color: transparent;
.transparent-text--hovercolor: transparent;
.transparent-bg--hoverbackground-color: transparent;
.transparent-b--hoverborder-color: transparent;
.transparent-bt--hoverborder-top-color: transparent;
.transparent-br--hoverborder-right-color: transparent;
.transparent-bb--hoverborder-bottom-color: transparent;
.transparent-bl--hoverborder-left-color: transparent;
.transparent-o--hoveroutline-color: transparent;
.transparent--focusbackground-color: transparent;
.transparent-text--focuscolor: transparent;
.transparent-bg--focusbackground-color: transparent;
.transparent-b--focusborder-color: transparent;
.transparent-bt--focusborder-top-color: transparent;
.transparent-br--focusborder-right-color: transparent;
.transparent-bb--focusborder-bottom-color: transparent;
.transparent-bl--focusborder-left-color: transparent;
.transparent-o--focusoutline-color: transparent;

Border Radius

StyleCss
.brd0border-radius: 0rem;
.brd1border-radius: 0.05rem;
.brd2border-radius: 0.1rem;
.brd3border-radius: 0.15rem;
.brd4border-radius: 0.2rem;
.brd5border-radius: 0.25rem;
.brd6border-radius: 0.3rem;
.brd7border-radius: 0.35rem;
.brd8border-radius: 0.4rem;
.brd9border-radius: 0.45rem;
.brd10border-radius: 0.5rem;
.brd11border-radius: 0.55rem;
.brd12border-radius: 0.6rem;
.brd13border-radius: 0.65rem;
.brd14border-radius: 0.7rem;
.brd15border-radius: 0.75rem;
.brd16border-radius: 0.8rem;
.brd17border-radius: 0.85rem;
.brd18border-radius: 0.9rem;
.brd19border-radius: 0.95rem;
.brd20border-radius: 1rem;
.brd100border-radius: 100%;

Border Style

StyleCss
.br--noneborder-style: none;
.br--solidborder-style: solid;
.br--dottedborder-style: dotted;
.br--dashedborder-style: dashed;

Outline Style

StyleCss
.ol--noneoutline-style: none;
.ol--solidoutline-style: solid;
.ol--dottedoutline-style: dotted;
.ol--dashedoutline-style: dashed;

Border Width

StyleCss
.br0border-width: 0rem;
.brt0border-top-width: 0rem;
.brr0border-right-width: 0rem;
.brb0border-bottom-width: 0rem;
.brl0border-left-width: 0rem;
.brv0border-top-width: 0rem; border-bottom-width: 0rem;
.brh0border-left-width: 0rem; border-right-width: 0rem;
.br1border-width: 0.08333rem;
.brt1border-top-width: 0.08333rem;
.brr1border-right-width: 0.08333rem;
.brb1border-bottom-width: 0.08333rem;
.brl1border-left-width: 0.08333rem;
.brv1border-top-width: 0.08333rem; border-bottom-width: 0.08333rem;
.brh1border-left-width: 0.08333rem; border-right-width: 0.08333rem;
.br2border-width: 0.16667rem;
.brt2border-top-width: 0.16667rem;
.brr2border-right-width: 0.16667rem;
.brb2border-bottom-width: 0.16667rem;
.brl2border-left-width: 0.16667rem;
.brv2border-top-width: 0.16667rem; border-bottom-width: 0.16667rem;
.brh2border-left-width: 0.16667rem; border-right-width: 0.16667rem;
.br3border-width: 0.25rem;
.brt3border-top-width: 0.25rem;
.brr3border-right-width: 0.25rem;
.brb3border-bottom-width: 0.25rem;
.brl3border-left-width: 0.25rem;
.brv3border-top-width: 0.25rem; border-bottom-width: 0.25rem;
.brh3border-left-width: 0.25rem; border-right-width: 0.25rem;
.br4border-width: 0.33333rem;
.brt4border-top-width: 0.33333rem;
.brr4border-right-width: 0.33333rem;
.brb4border-bottom-width: 0.33333rem;
.brl4border-left-width: 0.33333rem;
.brv4border-top-width: 0.33333rem; border-bottom-width: 0.33333rem;
.brh4border-left-width: 0.33333rem; border-right-width: 0.33333rem;
.br5border-width: 0.41667rem;
.brt5border-top-width: 0.41667rem;
.brr5border-right-width: 0.41667rem;
.brb5border-bottom-width: 0.41667rem;
.brl5border-left-width: 0.41667rem;
.brv5border-top-width: 0.41667rem; border-bottom-width: 0.41667rem;
.brh5border-left-width: 0.41667rem; border-right-width: 0.41667rem;
.br6border-width: 0.5rem;
.brt6border-top-width: 0.5rem;
.brr6border-right-width: 0.5rem;
.brb6border-bottom-width: 0.5rem;
.brl6border-left-width: 0.5rem;
.brv6border-top-width: 0.5rem; border-bottom-width: 0.5rem;
.brh6border-left-width: 0.5rem; border-right-width: 0.5rem;
.br7border-width: 0.58333rem;
.brt7border-top-width: 0.58333rem;
.brr7border-right-width: 0.58333rem;
.brb7border-bottom-width: 0.58333rem;
.brl7border-left-width: 0.58333rem;
.brv7border-top-width: 0.58333rem; border-bottom-width: 0.58333rem;
.brh7border-left-width: 0.58333rem; border-right-width: 0.58333rem;
.br8border-width: 0.66667rem;
.brt8border-top-width: 0.66667rem;
.brr8border-right-width: 0.66667rem;
.brb8border-bottom-width: 0.66667rem;
.brl8border-left-width: 0.66667rem;
.brv8border-top-width: 0.66667rem; border-bottom-width: 0.66667rem;
.brh8border-left-width: 0.66667rem; border-right-width: 0.66667rem;

Outline

StyleCss
.ol0outline-width: 0rem;
.olt0outline-top-width: 0rem;
.olr0outline-right-width: 0rem;
.olb0outline-bottom-width: 0rem;
.oll0outline-left-width: 0rem;
.olv0outline-top-width: 0rem; outline-bottom-width: 0rem;
.olh0outline-left-width: 0rem; outline-right-width: 0rem;
.ol1outline-width: 0.08333rem;
.olt1outline-top-width: 0.08333rem;
.olr1outline-right-width: 0.08333rem;
.olb1outline-bottom-width: 0.08333rem;
.oll1outline-left-width: 0.08333rem;
.olv1outline-top-width: 0.08333rem; outline-bottom-width: 0.08333rem;
.olh1outline-left-width: 0.08333rem; outline-right-width: 0.08333rem;
.ol2outline-width: 0.16667rem;
.olt2outline-top-width: 0.16667rem;
.olr2outline-right-width: 0.16667rem;
.olb2outline-bottom-width: 0.16667rem;
.oll2outline-left-width: 0.16667rem;
.olv2outline-top-width: 0.16667rem; outline-bottom-width: 0.16667rem;
.olh2outline-left-width: 0.16667rem; outline-right-width: 0.16667rem;
.ol3outline-width: 0.25rem;
.olt3outline-top-width: 0.25rem;
.olr3outline-right-width: 0.25rem;
.olb3outline-bottom-width: 0.25rem;
.oll3outline-left-width: 0.25rem;
.olv3outline-top-width: 0.25rem; outline-bottom-width: 0.25rem;
.olh3outline-left-width: 0.25rem; outline-right-width: 0.25rem;
.ol4outline-width: 0.33333rem;
.olt4outline-top-width: 0.33333rem;
.olr4outline-right-width: 0.33333rem;
.olb4outline-bottom-width: 0.33333rem;
.oll4outline-left-width: 0.33333rem;
.olv4outline-top-width: 0.33333rem; outline-bottom-width: 0.33333rem;
.olh4outline-left-width: 0.33333rem; outline-right-width: 0.33333rem;
.ol5outline-width: 0.41667rem;
.olt5outline-top-width: 0.41667rem;
.olr5outline-right-width: 0.41667rem;
.olb5outline-bottom-width: 0.41667rem;
.oll5outline-left-width: 0.41667rem;
.olv5outline-top-width: 0.41667rem; outline-bottom-width: 0.41667rem;
.olh5outline-left-width: 0.41667rem; outline-right-width: 0.41667rem;
.ol6outline-width: 0.5rem;
.olt6outline-top-width: 0.5rem;
.olr6outline-right-width: 0.5rem;
.olb6outline-bottom-width: 0.5rem;
.oll6outline-left-width: 0.5rem;
.olv6outline-top-width: 0.5rem; outline-bottom-width: 0.5rem;
.olh6outline-left-width: 0.5rem; outline-right-width: 0.5rem;
.ol7outline-width: 0.58333rem;
.olt7outline-top-width: 0.58333rem;
.olr7outline-right-width: 0.58333rem;
.olb7outline-bottom-width: 0.58333rem;
.oll7outline-left-width: 0.58333rem;
.olv7outline-top-width: 0.58333rem; outline-bottom-width: 0.58333rem;
.olh7outline-left-width: 0.58333rem; outline-right-width: 0.58333rem;
.ol8outline-width: 0.66667rem;
.olt8outline-top-width: 0.66667rem;
.olr8outline-right-width: 0.66667rem;
.olb8outline-bottom-width: 0.66667rem;
.oll8outline-left-width: 0.66667rem;
.olv8outline-top-width: 0.66667rem; outline-bottom-width: 0.66667rem;
.olh8outline-left-width: 0.66667rem; outline-right-width: 0.66667rem;

Flexbox

StyleCss
.flxdisplay: flex;
.flx0flex: 0;
.flx1flex: 1;
.flx2flex: 2;
.flx3flex: 3;
.flx4flex: 4;
.flx5flex: 5;
.flx6flex: 6;
.flx7flex: 7;
.flx8flex: 8;
.flx9flex: 9;
.flx10flex: 10;
.flxrflex-direction: row;
.flxcflex-direction: column;
.flxrrflex-direction: row-reverse;
.flxcrflex-direction: column-reverse;
.flxwflex-wrap: wrap;
.aifsalign-itrems: flex-start;
.aicalign-itrems: center;
.aifealign-itrems: flex-end;
.aisalign-itrems: stretch;
.asfsflex-start;
.ascalign-self: center;
.asfealign-self: flex-end;
.assalign-self: stretch;
.acfsalign-content: flex-start;
.acfealign-content: flex-end;
.accalign-content: center;
.acsbalign-content: space-between;
.acsaalign-content: space-around;
.acsalign-content: stretch;
.jcfsjustify-content: flex-start;
.jcfejustify-content: flex-end;
.jccjustify-content: center;
.jcsbjustify-content: space-between;
.jcsajustify-content: space-around;

Font Weight

StyleCss
.fw1font-weight: 100;
.fw2font-weight: 200;
.fw3font-weight: 300;
.fw4font-weight: 400;
.fw5font-weight: 500;
.fw6font-weight: 600;
.fw7font-weight: 700;
.fw8font-weight: 800;
.fw9font-weight: 900;

Opacity

StyleCss
.o0opacity: 0;
.o1opacity: 0.1;
.o2opacity: 0.2;
.o3opacity: 0.3;
.o4opacity: 0.4;
.o5opacity: 0.5;
.o6opacity: 0.6;
.o7opacity: 0.7;
.o8opacity: 0.8;
.o9opacity: 0.9;
.o10opacity: 1;

Image

StyleCss
imgbackground-repeat: no-repeat; background-size: contain; -o-object-fit: contain; object-fit: contain; -o-object-position: 0 50%; object-position: 0 50%;
img.center-o-object-position: 50% 50%; object-position: 50% 50%;
img.right-o-object-position: 100% 50%; object-position: 100% 50%;

Shadow

StyleCss
.s0box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
.s1box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
.s2box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
.s3box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
.s4box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
.s5box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.3);
.s6box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.3);
.s0--hoverbox-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
.s1--hoverbox-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
.s2--hoverbox-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
.s3--hoverbox-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
.s4--hoverbox-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
.s5--hoverbox-shadow: 5px 5px 25px rgba(0, 0, 0, 0.3);
.s6--hoverbox-shadow: 6px 6px 30px rgba(0, 0, 0, 0.3);
.s0--focusbox-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
.s1--focusbox-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
.s2--focusbox-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
.s3--focusbox-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
.s4--focusbox-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
.s5--focusbox-shadow: 5px 5px 25px rgba(0, 0, 0, 0.3);
.s6--focusbox-shadow: 6px 6px 30px rgba(0, 0, 0, 0.3);

Text

StyleCss
.ifont-style: italic;
.bfont-weight: bold;
.lttext-decoration: line-through;
.tltext-align: left;
.tctext-align: center;
.trtext-align: right;
.tjtext-align: justify;
.uctext-transform: uppercase;
.lctext-transform: lowercase;
.catext-transform: capitalize;

Margin

StyleCss
.ma0margin: 0rem;
.ma1margin: 0.25rem;
.ma2margin: 0.5rem;
.ma3margin: 0.75rem;
.ma4margin: 1rem;
.ma5margin: 1.25rem;
.ma6margin: 1.5rem;
.ma7margin: 1.75rem;
.ma8margin: 2rem;
.ma9margin: 2.25rem;
.ma10margin: 2.5rem;
.ma11margin: 2.75rem;
.ma12margin: 3rem;
.ma13margin: 3.25rem;
.ma14margin: 3.5rem;
.ma15margin: 3.75rem;
.ma16margin: 4rem;
.ma17margin: 4.25rem;
.ma18margin: 4.5rem;
.ma19margin: 4.75rem;
.ma20margin: 5rem;

Margin Bottom

StyleCss
.mb0margin-bottom: 0rem;
.mb1margin-bottom: 0.25rem;
.mb2margin-bottom: 0.5rem;
.mb3margin-bottom: 0.75rem;
.mb4margin-bottom: 1rem;
.mb5margin-bottom: 1.25rem;
.mb6margin-bottom: 1.5rem;
.mb7margin-bottom: 1.75rem;
.mb8margin-bottom: 2rem;
.mb9margin-bottom: 2.25rem;
.mb10margin-bottom: 2.5rem;
.mb11margin-bottom: 2.75rem;
.mb12margin-bottom: 3rem;
.mb13margin-bottom: 3.25rem;
.mb14margin-bottom: 3.5rem;
.mb15margin-bottom: 3.75rem;
.mb16margin-bottom: 4rem;
.mb17margin-bottom: 4.25rem;
.mb18margin-bottom: 4.5rem;
.mb19margin-bottom: 4.75rem;
.mb20margin-bottom: 5rem;

Margin Left

StyleCss
.ml0margin-left: 0rem;
.ml1margin-left: 0.25rem;
.ml2margin-left: 0.5rem;
.ml3margin-left: 0.75rem;
.ml4margin-left: 1rem;
.ml5margin-left: 1.25rem;
.ml6margin-left: 1.5rem;
.ml7margin-left: 1.75rem;
.ml8margin-left: 2rem;
.ml9margin-left: 2.25rem;
.ml10margin-left: 2.5rem;
.ml11margin-left: 2.75rem;
.ml12margin-left: 3rem;
.ml13margin-left: 3.25rem;
.ml14margin-left: 3.5rem;
.ml15margin-left: 3.75rem;
.ml16margin-left: 4rem;
.ml17margin-left: 4.25rem;
.ml18margin-left: 4.5rem;
.ml19margin-left: 4.75rem;
.ml20margin-left: 5rem;

Margin Right

StyleCss
.mr0margin-right: 0rem;
.mr1margin-right: 0.25rem;
.mr2margin-right: 0.5rem;
.mr3margin-right: 0.75rem;
.mr4margin-right: 1rem;
.mr5margin-right: 1.25rem;
.mr6margin-right: 1.5rem;
.mr7margin-right: 1.75rem;
.mr8margin-right: 2rem;
.mr9margin-right: 2.25rem;
.mr10margin-right: 2.5rem;
.mr11margin-right: 2.75rem;
.mr12margin-right: 3rem;
.mr13margin-right: 3.25rem;
.mr14margin-right: 3.5rem;
.mr15margin-right: 3.75rem;
.mr16margin-right: 4rem;
.mr17margin-right: 4.25rem;
.mr18margin-right: 4.5rem;
.mr19margin-right: 4.75rem;
.mr20margin-right: 5rem;

Margin Top

StyleCss
.mt0margin-top: 0rem;
.mt1margin-top: 0.25rem;
.mt2margin-top: 0.5rem;
.mt3margin-top: 0.75rem;
.mt4margin-top: 1rem;
.mt5margin-top: 1.25rem;
.mt6margin-top: 1.5rem;
.mt7margin-top: 1.75rem;
.mt8margin-top: 2rem;
.mt9margin-top: 2.25rem;
.mt10margin-top: 2.5rem;
.mt11margin-top: 2.75rem;
.mt12margin-top: 3rem;
.mt13margin-top: 3.25rem;
.mt14margin-top: 3.5rem;
.mt15margin-top: 3.75rem;
.mt16margin-top: 4rem;
.mt17margin-top: 4.25rem;
.mt18margin-top: 4.5rem;
.mt19margin-top: 4.75rem;
.mt20margin-top: 5rem;

Margin Horizontal

StyleCss
.mh0margin-left: 0rem; margin-right: 0rem;
.mh1margin-left: 0.25rem; margin-right: 0.25rem;
.mh2margin-left: 0.5rem; margin-right: 0.5rem;
.mh3margin-left: 0.75rem; margin-right: 0.75rem;
.mh4margin-left: 1rem; margin-right: 1rem;
.mh5margin-left: 1.25rem; margin-right: 1.25rem;
.mh6margin-left: 1.5rem; margin-right: 1.5rem;
.mh7margin-left: 1.75rem; margin-right: 1.75rem;
.mh8margin-left: 2rem; margin-right: 2rem;
.mh9margin-left: 2.25rem; margin-right: 2.25rem;
.mh10margin-left: 2.5rem; margin-right: 2.5rem;
.mh11margin-left: 2.75rem; margin-right: 2.75rem;
.mh12margin-left: 3rem; margin-right: 3rem;
.mh13margin-left: 3.25rem; margin-right: 3.25rem;
.mh14margin-left: 3.5rem; margin-right: 3.5rem;
.mh15margin-left: 3.75rem; margin-right: 3.75rem;
.mh16margin-left: 4rem; margin-right: 4rem;
.mh17margin-left: 4.25rem; margin-right: 4.25rem;
.mh18margin-left: 4.5rem; margin-right: 4.5rem;
.mh19margin-left: 4.75rem; margin-right: 4.75rem;
.mh20margin-left: 5rem; margin-right: 5rem;

Margin Vertical

StyleCss
.mv0margin-top: 0rem; margin-bottom: 0rem;
.mv1margin-top: 0.25rem; margin-bottom: 0.25rem;
.mv2margin-top: 0.5rem; margin-bottom: 0.5rem;
.mv3margin-top: 0.75rem; margin-bottom: 0.75rem;
.mv4margin-top: 1rem; margin-bottom: 1rem;
.mv5margin-top: 1.25rem; margin-bottom: 1.25rem;
.mv6margin-top: 1.5rem; margin-bottom: 1.5rem;
.mv7margin-top: 1.75rem; margin-bottom: 1.75rem;
.mv8margin-top: 2rem; margin-bottom: 2rem;
.mv9margin-top: 2.25rem; margin-bottom: 2.25rem;
.mv10margin-top: 2.5rem; margin-bottom: 2.5rem;
.mv11margin-top: 2.75rem; margin-bottom: 2.75rem;
.mv12margin-top: 3rem; margin-bottom: 3rem;
.mv13margin-top: 3.25rem; margin-bottom: 3.25rem;
.mv14margin-top: 3.5rem; margin-bottom: 3.5rem;
.mv15margin-top: 3.75rem; margin-bottom: 3.75rem;
.mv16margin-top: 4rem; margin-bottom: 4rem;
.mv17margin-top: 4.25rem; margin-bottom: 4.25rem;
.mv18margin-top: 4.5rem; margin-bottom: 4.5rem;
.mv19margin-top: 4.75rem; margin-bottom: 4.75rem;
.mv20margin-top: 5rem; margin-bottom: 5rem;

Padding

StyleCss
.pa0padding: 0rem;
.pa1padding: 0.25rem;
.pa2padding: 0.5rem;
.pa3padding: 0.75rem;
.pa4padding: 1rem;
.pa5padding: 1.25rem;
.pa6padding: 1.5rem;
.pa7padding: 1.75rem;
.pa8padding: 2rem;
.pa9padding: 2.25rem;
.pa10padding: 2.5rem;
.pa11padding: 2.75rem;
.pa12padding: 3rem;
.pa13padding: 3.25rem;
.pa14padding: 3.5rem;
.pa15padding: 3.75rem;
.pa16padding: 4rem;
.pa17padding: 4.25rem;
.pa18padding: 4.5rem;
.pa19padding: 4.75rem;
.pa20padding: 5rem;

Padding Bottom

StyleCss
.pb0padding-bottom: 0rem;
.pb1padding-bottom: 0.25rem;
.pb2padding-bottom: 0.5rem;
.pb3padding-bottom: 0.75rem;
.pb4padding-bottom: 1rem;
.pb5padding-bottom: 1.25rem;
.pb6padding-bottom: 1.5rem;
.pb7padding-bottom: 1.75rem;
.pb8padding-bottom: 2rem;
.pb9padding-bottom: 2.25rem;
.pb10padding-bottom: 2.5rem;
.pb11padding-bottom: 2.75rem;
.pb12padding-bottom: 3rem;
.pb13padding-bottom: 3.25rem;
.pb14padding-bottom: 3.5rem;
.pb15padding-bottom: 3.75rem;
.pb16padding-bottom: 4rem;
.pb17padding-bottom: 4.25rem;
.pb18padding-bottom: 4.5rem;
.pb19padding-bottom: 4.75rem;
.pb20padding-bottom: 5rem;

Padding Left

StyleCss
.pl0padding-left: 0rem;
.pl1padding-left: 0.25rem;
.pl2padding-left: 0.5rem;
.pl3padding-left: 0.75rem;
.pl4padding-left: 1rem;
.pl5padding-left: 1.25rem;
.pl6padding-left: 1.5rem;
.pl7padding-left: 1.75rem;
.pl8padding-left: 2rem;
.pl9padding-left: 2.25rem;
.pl10padding-left: 2.5rem;
.pl11padding-left: 2.75rem;
.pl12padding-left: 3rem;
.pl13padding-left: 3.25rem;
.pl14padding-left: 3.5rem;
.pl15padding-left: 3.75rem;
.pl16padding-left: 4rem;
.pl17padding-left: 4.25rem;
.pl18padding-left: 4.5rem;
.pl19padding-left: 4.75rem;
.pl20padding-left: 5rem;

Padding Right

StyleCss
.pr0padding-right: 0rem;
.pr1padding-right: 0.25rem;
.pr2padding-right: 0.5rem;
.pr3padding-right: 0.75rem;
.pr4padding-right: 1rem;
.pr5padding-right: 1.25rem;
.pr6padding-right: 1.5rem;
.pr7padding-right: 1.75rem;
.pr8padding-right: 2rem;
.pr9padding-right: 2.25rem;
.pr10padding-right: 2.5rem;
.pr11padding-right: 2.75rem;
.pr12padding-right: 3rem;
.pr13padding-right: 3.25rem;
.pr14padding-right: 3.5rem;
.pr15padding-right: 3.75rem;
.pr16padding-right: 4rem;
.pr17padding-right: 4.25rem;
.pr18padding-right: 4.5rem;
.pr19padding-right: 4.75rem;
.pr20padding-right: 5rem;

Padding Top

StyleCss
.pt0padding-top: 0rem;
.pt1padding-top: 0.25rem;
.pt2padding-top: 0.5rem;
.pt3padding-top: 0.75rem;
.pt4padding-top: 1rem;
.pt5padding-top: 1.25rem;
.pt6padding-top: 1.5rem;
.pt7padding-top: 1.75rem;
.pt8padding-top: 2rem;
.pt9padding-top: 2.25rem;
.pt10padding-top: 2.5rem;
.pt11padding-top: 2.75rem;
.pt12padding-top: 3rem;
.pt13padding-top: 3.25rem;
.pt14padding-top: 3.5rem;
.pt15padding-top: 3.75rem;
.pt16padding-top: 4rem;
.pt17padding-top: 4.25rem;
.pt18padding-top: 4.5rem;
.pt19padding-top: 4.75rem;
.pt20padding-top: 5rem;

Padding Horizontal

StyleCss
.ph0padding-left: 0rem; padding-right: 0rem;
.ph1padding-left: 0.25rem; padding-right: 0.25rem;
.ph2padding-left: 0.5rem; padding-right: 0.5rem;
.ph3padding-left: 0.75rem; padding-right: 0.75rem;
.ph4padding-left: 1rem; padding-right: 1rem;
.ph5padding-left: 1.25rem; padding-right: 1.25rem;
.ph6padding-left: 1.5rem; padding-right: 1.5rem;
.ph7padding-left: 1.75rem; padding-right: 1.75rem;
.ph8padding-left: 2rem; padding-right: 2rem;
.ph9padding-left: 2.25rem; padding-right: 2.25rem;
.ph10padding-left: 2.5rem; padding-right: 2.5rem;
.ph11padding-left: 2.75rem; padding-right: 2.75rem;
.ph12padding-left: 3rem; padding-right: 3rem;
.ph13padding-left: 3.25rem; padding-right: 3.25rem;
.ph14padding-left: 3.5rem; padding-right: 3.5rem;
.ph15padding-left: 3.75rem; padding-right: 3.75rem;
.ph16padding-left: 4rem; padding-right: 4rem;
.ph17padding-left: 4.25rem; padding-right: 4.25rem;
.ph18padding-left: 4.5rem; padding-right: 4.5rem;
.ph19padding-left: 4.75rem; padding-right: 4.75rem;
.ph20padding-left: 5rem; padding-right: 5rem;

Padding Vertical

StyleCss
.pv0padding-top: 0rem; padding-bottom: 0rem;
.pv1padding-top: 0.25rem; padding-bottom: 0.25rem;
.pv2padding-top: 0.5rem; padding-bottom: 0.5rem;
.pv3padding-top: 0.75rem; padding-bottom: 0.75rem;
.pv4padding-top: 1rem; padding-bottom: 1rem;
.pv5padding-top: 1.25rem; padding-bottom: 1.25rem;
.pv6padding-top: 1.5rem; padding-bottom: 1.5rem;
.pv7padding-top: 1.75rem; padding-bottom: 1.75rem;
.pv8padding-top: 2rem; padding-bottom: 2rem;
.pv9padding-top: 2.25rem; padding-bottom: 2.25rem;
.pv10padding-top: 2.5rem; padding-bottom: 2.5rem;
.pv11padding-top: 2.75rem; padding-bottom: 2.75rem;
.pv12padding-top: 3rem; padding-bottom: 3rem;
.pv13padding-top: 3.25rem; padding-bottom: 3.25rem;
.pv14padding-top: 3.5rem; padding-bottom: 3.5rem;
.pv15padding-top: 3.75rem; padding-bottom: 3.75rem;
.pv16padding-top: 4rem; padding-bottom: 4rem;
.pv17padding-top: 4.25rem; padding-bottom: 4.25rem;
.pv18padding-top: 4.5rem; padding-bottom: 4.5rem;
.pv19padding-top: 4.75rem; padding-bottom: 4.75rem;
.pv20padding-top: 5rem; padding-bottom: 5rem;

Font Size

StyleCss
.f0font-size: 0rem;
.f1font-size: 0.25rem;
.f2font-size: 0.5rem;
.f3font-size: 0.75rem;
.f4font-size: 1rem;
.f5font-size: 1.25rem;
.f6font-size: 1.5rem;
.f7font-size: 1.75rem;
.f8font-size: 2rem;
.f9font-size: 2.25rem;
.f10font-size: 2.5rem;
.f11font-size: 2.75rem;
.f12font-size: 3rem;
.f13font-size: 3.25rem;
.f14font-size: 3.5rem;
.f15font-size: 3.75rem;
.f16font-size: 4rem;
.f17font-size: 4.25rem;
.f18font-size: 4.5rem;
.f19font-size: 4.75rem;
.f20font-size: 5rem;

Left

StyleCss
.l0left: 0rem;
.l1left: 0.25rem;
.l2left: 0.5rem;
.l3left: 0.75rem;
.l4left: 1rem;
.l5left: 1.25rem;
.l6left: 1.5rem;
.l7left: 1.75rem;
.l8left: 2rem;
.l9left: 2.25rem;
.l10left: 2.5rem;
.l11left: 2.75rem;
.l12left: 3rem;
.l13left: 3.25rem;
.l14left: 3.5rem;
.l15left: 3.75rem;
.l16left: 4rem;
.l17left: 4.25rem;
.l18left: 4.5rem;
.l19left: 4.75rem;
.l20left: 5rem;
.l21left: 5.25rem;
.l22left: 5.5rem;
.l23left: 5.75rem;
.l24left: 6rem;
.l25left: 6.25rem;
.l26left: 6.5rem;
.l27left: 6.75rem;
.l28left: 7rem;
.l29left: 7.25rem;
.l30left: 7.5rem;
.l31left: 7.75rem;
.l32left: 8rem;
.l33left: 8.25rem;
.l34left: 8.5rem;
.l35left: 8.75rem;
.l36left: 9rem;
.l37left: 9.25rem;
.l38left: 9.5rem;
.l39left: 9.75rem;
.l40left: 10rem;
.l41left: 10.25rem;
.l42left: 10.5rem;
.l43left: 10.75rem;
.l44left: 11rem;
.l45left: 11.25rem;
.l46left: 11.5rem;
.l47left: 11.75rem;
.l48left: 12rem;
.l49left: 12.25rem;
.l50left: 12.5rem;
.l51left: 12.75rem;
.l52left: 13rem;
.l53left: 13.25rem;
.l54left: 13.5rem;
.l55left: 13.75rem;
.l56left: 14rem;
.l57left: 14.25rem;
.l58left: 14.5rem;
.l59left: 14.75rem;
.l60left: 15rem;
.l61left: 15.25rem;
.l62left: 15.5rem;
.l63left: 15.75rem;
.l64left: 16rem;
.l65left: 16.25rem;
.l66left: 16.5rem;
.l67left: 16.75rem;
.l68left: 17rem;
.l69left: 17.25rem;
.l70left: 17.5rem;
.l71left: 17.75rem;
.l72left: 18rem;
.l73left: 18.25rem;
.l74left: 18.5rem;
.l75left: 18.75rem;
.l76left: 19rem;
.l77left: 19.25rem;
.l78left: 19.5rem;
.l79left: 19.75rem;
.l80left: 20rem;
.l81left: 20.25rem;
.l82left: 20.5rem;
.l83left: 20.75rem;
.l84left: 21rem;
.l85left: 21.25rem;
.l86left: 21.5rem;
.l87left: 21.75rem;
.l88left: 22rem;
.l89left: 22.25rem;
.l90left: 22.5rem;
.l91left: 22.75rem;
.l92left: 23rem;
.l93left: 23.25rem;
.l94left: 23.5rem;
.l95left: 23.75rem;
.l96left: 24rem;
.l97left: 24.25rem;
.l98left: 24.5rem;
.l99left: 24.75rem;
.l100left: 100%;

Top

StyleCss
.t0top: 0rem;
.t1top: 0.25rem;
.t2top: 0.5rem;
.t3top: 0.75rem;
.t4top: 1rem;
.t5top: 1.25rem;
.t6top: 1.5rem;
.t7top: 1.75rem;
.t8top: 2rem;
.t9top: 2.25rem;
.t10top: 2.5rem;
.t11top: 2.75rem;
.t12top: 3rem;
.t13top: 3.25rem;
.t14top: 3.5rem;
.t15top: 3.75rem;
.t16top: 4rem;
.t17top: 4.25rem;
.t18top: 4.5rem;
.t19top: 4.75rem;
.t20top: 5rem;
.t21top: 5.25rem;
.t22top: 5.5rem;
.t23top: 5.75rem;
.t24top: 6rem;
.t25top: 6.25rem;
.t26top: 6.5rem;
.t27top: 6.75rem;
.t28top: 7rem;
.t29top: 7.25rem;
.t30top: 7.5rem;
.t31top: 7.75rem;
.t32top: 8rem;
.t33top: 8.25rem;
.t34top: 8.5rem;
.t35top: 8.75rem;
.t36top: 9rem;
.t37top: 9.25rem;
.t38top: 9.5rem;
.t39top: 9.75rem;
.t40top: 10rem;
.t41top: 10.25rem;
.t42top: 10.5rem;
.t43top: 10.75rem;
.t44top: 11rem;
.t45top: 11.25rem;
.t46top: 11.5rem;
.t47top: 11.75rem;
.t48top: 12rem;
.t49top: 12.25rem;
.t50top: 12.5rem;
.t51top: 12.75rem;
.t52top: 13rem;
.t53top: 13.25rem;
.t54top: 13.5rem;
.t55top: 13.75rem;
.t56top: 14rem;
.t57top: 14.25rem;
.t58top: 14.5rem;
.t59top: 14.75rem;
.t60top: 15rem;
.t61top: 15.25rem;
.t62top: 15.5rem;
.t63top: 15.75rem;
.t64top: 16rem;
.t65top: 16.25rem;
.t66top: 16.5rem;
.t67top: 16.75rem;
.t68top: 17rem;
.t69top: 17.25rem;
.t70top: 17.5rem;
.t71top: 17.75rem;
.t72top: 18rem;
.t73top: 18.25rem;
.t74top: 18.5rem;
.t75top: 18.75rem;
.t76top: 19rem;
.t77top: 19.25rem;
.t78top: 19.5rem;
.t79top: 19.75rem;
.t80top: 20rem;
.t81top: 20.25rem;
.t82top: 20.5rem;
.t83top: 20.75rem;
.t84top: 21rem;
.t85top: 21.25rem;
.t86top: 21.5rem;
.t87top: 21.75rem;
.t88top: 22rem;
.t89top: 22.25rem;
.t90top: 22.5rem;
.t91top: 22.75rem;
.t92top: 23rem;
.t93top: 23.25rem;
.t94top: 23.5rem;
.t95top: 23.75rem;
.t96top: 24rem;
.t97top: 24.25rem;
.t98top: 24.5rem;
.t99top: 24.75rem;
.t100top: 100%;

Bottom

StyleCss
.b0bottom: 0rem;
.b1bottom: 0.25rem;
.b2bottom: 0.5rem;
.b3bottom: 0.75rem;
.b4bottom: 1rem;
.b5bottom: 1.25rem;
.b6bottom: 1.5rem;
.b7bottom: 1.75rem;
.b8bottom: 2rem;
.b9bottom: 2.25rem;
.b10bottom: 2.5rem;
.b11bottom: 2.75rem;
.b12bottom: 3rem;
.b13bottom: 3.25rem;
.b14bottom: 3.5rem;
.b15bottom: 3.75rem;
.b16bottom: 4rem;
.b17bottom: 4.25rem;
.b18bottom: 4.5rem;
.b19bottom: 4.75rem;
.b20bottom: 5rem;
.b21bottom: 5.25rem;
.b22bottom: 5.5rem;
.b23bottom: 5.75rem;
.b24bottom: 6rem;
.b25bottom: 6.25rem;
.b26bottom: 6.5rem;
.b27bottom: 6.75rem;
.b28bottom: 7rem;
.b29bottom: 7.25rem;
.b30bottom: 7.5rem;
.b31bottom: 7.75rem;
.b32bottom: 8rem;
.b33bottom: 8.25rem;
.b34bottom: 8.5rem;
.b35bottom: 8.75rem;
.b36bottom: 9rem;
.b37bottom: 9.25rem;
.b38bottom: 9.5rem;
.b39bottom: 9.75rem;
.b40bottom: 10rem;
.b41bottom: 10.25rem;
.b42bottom: 10.5rem;
.b43bottom: 10.75rem;
.b44bottom: 11rem;
.b45bottom: 11.25rem;
.b46bottom: 11.5rem;
.b47bottom: 11.75rem;
.b48bottom: 12rem;
.b49bottom: 12.25rem;
.b50bottom: 12.5rem;
.b51bottom: 12.75rem;
.b52bottom: 13rem;
.b53bottom: 13.25rem;
.b54bottom: 13.5rem;
.b55bottom: 13.75rem;
.b56bottom: 14rem;
.b57bottom: 14.25rem;
.b58bottom: 14.5rem;
.b59bottom: 14.75rem;
.b60bottom: 15rem;
.b61bottom: 15.25rem;
.b62bottom: 15.5rem;
.b63bottom: 15.75rem;
.b64bottom: 16rem;
.b65bottom: 16.25rem;
.b66bottom: 16.5rem;
.b67bottom: 16.75rem;
.b68bottom: 17rem;
.b69bottom: 17.25rem;
.b70bottom: 17.5rem;
.b71bottom: 17.75rem;
.b72bottom: 18rem;
.b73bottom: 18.25rem;
.b74bottom: 18.5rem;
.b75bottom: 18.75rem;
.b76bottom: 19rem;
.b77bottom: 19.25rem;
.b78bottom: 19.5rem;
.b79bottom: 19.75rem;
.b80bottom: 20rem;
.b81bottom: 20.25rem;
.b82bottom: 20.5rem;
.b83bottom: 20.75rem;
.b84bottom: 21rem;
.b85bottom: 21.25rem;
.b86bottom: 21.5rem;
.b87bottom: 21.75rem;
.b88bottom: 22rem;
.b89bottom: 22.25rem;
.b90bottom: 22.5rem;
.b91bottom: 22.75rem;
.b92bottom: 23rem;
.b93bottom: 23.25rem;
.b94bottom: 23.5rem;
.b95bottom: 23.75rem;
.b96bottom: 24rem;
.b97bottom: 24.25rem;
.b98bottom: 24.5rem;
.b99bottom: 24.75rem;
.b100bottom: 100%;

Right

StyleCss
.r0right: 0rem;
.r1right: 0.25rem;
.r2right: 0.5rem;
.r3right: 0.75rem;
.r4right: 1rem;
.r5right: 1.25rem;
.r6right: 1.5rem;
.r7right: 1.75rem;
.r8right: 2rem;
.r9right: 2.25rem;
.r10right: 2.5rem;
.r11right: 2.75rem;
.r12right: 3rem;
.r13right: 3.25rem;
.r14right: 3.5rem;
.r15right: 3.75rem;
.r16right: 4rem;
.r17right: 4.25rem;
.r18right: 4.5rem;
.r19right: 4.75rem;
.r20right: 5rem;
.r21right: 5.25rem;
.r22right: 5.5rem;
.r23right: 5.75rem;
.r24right: 6rem;
.r25right: 6.25rem;
.r26right: 6.5rem;
.r27right: 6.75rem;
.r28right: 7rem;
.r29right: 7.25rem;
.r30right: 7.5rem;
.r31right: 7.75rem;
.r32right: 8rem;
.r33right: 8.25rem;
.r34right: 8.5rem;
.r35right: 8.75rem;
.r36right: 9rem;
.r37right: 9.25rem;
.r38right: 9.5rem;
.r39right: 9.75rem;
.r40right: 10rem;
.r41right: 10.25rem;
.r42right: 10.5rem;
.r43right: 10.75rem;
.r44right: 11rem;
.r45right: 11.25rem;
.r46right: 11.5rem;
.r47right: 11.75rem;
.r48right: 12rem;
.r49right: 12.25rem;
.r50right: 12.5rem;
.r51right: 12.75rem;
.r52right: 13rem;
.r53right: 13.25rem;
.r54right: 13.5rem;
.r55right: 13.75rem;
.r56right: 14rem;
.r57right: 14.25rem;
.r58right: 14.5rem;
.r59right: 14.75rem;
.r60right: 15rem;
.r61right: 15.25rem;
.r62right: 15.5rem;
.r63right: 15.75rem;
.r64right: 16rem;
.r65right: 16.25rem;
.r66right: 16.5rem;
.r67right: 16.75rem;
.r68right: 17rem;
.r69right: 17.25rem;
.r70right: 17.5rem;
.r71right: 17.75rem;
.r72right: 18rem;
.r73right: 18.25rem;
.r74right: 18.5rem;
.r75right: 18.75rem;
.r76right: 19rem;
.r77right: 19.25rem;
.r78right: 19.5rem;
.r79right: 19.75rem;
.r80right: 20rem;
.r81right: 20.25rem;
.r82right: 20.5rem;
.r83right: 20.75rem;
.r84right: 21rem;
.r85right: 21.25rem;
.r86right: 21.5rem;
.r87right: 21.75rem;
.r88right: 22rem;
.r89right: 22.25rem;
.r90right: 22.5rem;
.r91right: 22.75rem;
.r92right: 23rem;
.r93right: 23.25rem;
.r94right: 23.5rem;
.r95right: 23.75rem;
.r96right: 24rem;
.r97right: 24.25rem;
.r98right: 24.5rem;
.r99right: 24.75rem;
.r100right: 100%;

Stroke Width

StyleCss
.st0stroke-width: 0rem;
.st1stroke-width: 0.25rem;
.st2stroke-width: 0.5rem;
.st3stroke-width: 0.75rem;
.st4stroke-width: 1rem;
.st5stroke-width: 1.25rem;
.st6stroke-width: 1.5rem;
.st7stroke-width: 1.75rem;
.st8stroke-width: 2rem;
.st9stroke-width: 2.25rem;
.st10stroke-width: 2.5rem;
.st11stroke-width: 2.75rem;
.st12stroke-width: 3rem;
.st13stroke-width: 3.25rem;
.st14stroke-width: 3.5rem;
.st15stroke-width: 3.75rem;
.st16stroke-width: 4rem;
.st17stroke-width: 4.25rem;
.st18stroke-width: 4.5rem;
.st19stroke-width: 4.75rem;
.st20stroke-width: 5rem;
.st21stroke-width: 5.25rem;
.st22stroke-width: 5.5rem;
.st23stroke-width: 5.75rem;
.st24stroke-width: 6rem;
.st25stroke-width: 6.25rem;
.st26stroke-width: 6.5rem;
.st27stroke-width: 6.75rem;
.st28stroke-width: 7rem;
.st29stroke-width: 7.25rem;
.st30stroke-width: 7.5rem;
.st31stroke-width: 7.75rem;
.st32stroke-width: 8rem;
.st33stroke-width: 8.25rem;
.st34stroke-width: 8.5rem;
.st35stroke-width: 8.75rem;
.st36stroke-width: 9rem;
.st37stroke-width: 9.25rem;
.st38stroke-width: 9.5rem;
.st39stroke-width: 9.75rem;
.st40stroke-width: 10rem;
.st41stroke-width: 10.25rem;
.st42stroke-width: 10.5rem;
.st43stroke-width: 10.75rem;
.st44stroke-width: 11rem;
.st45stroke-width: 11.25rem;
.st46stroke-width: 11.5rem;
.st47stroke-width: 11.75rem;
.st48stroke-width: 12rem;
.st49stroke-width: 12.25rem;
.st50stroke-width: 12.5rem;
.st51stroke-width: 12.75rem;
.st52stroke-width: 13rem;
.st53stroke-width: 13.25rem;
.st54stroke-width: 13.5rem;
.st55stroke-width: 13.75rem;
.st56stroke-width: 14rem;
.st57stroke-width: 14.25rem;
.st58stroke-width: 14.5rem;
.st59stroke-width: 14.75rem;
.st60stroke-width: 15rem;
.st61stroke-width: 15.25rem;
.st62stroke-width: 15.5rem;
.st63stroke-width: 15.75rem;
.st64stroke-width: 16rem;
.st65stroke-width: 16.25rem;
.st66stroke-width: 16.5rem;
.st67stroke-width: 16.75rem;
.st68stroke-width: 17rem;
.st69stroke-width: 17.25rem;
.st70stroke-width: 17.5rem;
.st71stroke-width: 17.75rem;
.st72stroke-width: 18rem;
.st73stroke-width: 18.25rem;
.st74stroke-width: 18.5rem;
.st75stroke-width: 18.75rem;
.st76stroke-width: 19rem;
.st77stroke-width: 19.25rem;
.st78stroke-width: 19.5rem;
.st79stroke-width: 19.75rem;
.st80stroke-width: 20rem;
.st81stroke-width: 20.25rem;
.st82stroke-width: 20.5rem;
.st83stroke-width: 20.75rem;
.st84stroke-width: 21rem;
.st85stroke-width: 21.25rem;
.st86stroke-width: 21.5rem;
.st87stroke-width: 21.75rem;
.st88stroke-width: 22rem;
.st89stroke-width: 22.25rem;
.st90stroke-width: 22.5rem;
.st91stroke-width: 22.75rem;
.st92stroke-width: 23rem;
.st93stroke-width: 23.25rem;
.st94stroke-width: 23.5rem;
.st95stroke-width: 23.75rem;
.st96stroke-width: 24rem;
.st97stroke-width: 24.25rem;
.st98stroke-width: 24.5rem;
.st99stroke-width: 24.75rem;
.st100stroke-width: 100%;

Line Height

StyleCss
.lh0line-height: 0rem;
.lh1line-height: 0.25rem;
.lh2line-height: 0.5rem;
.lh3line-height: 0.75rem;
.lh4line-height: 1rem;
.lh5line-height: 1.25rem;
.lh6line-height: 1.5rem;
.lh7line-height: 1.75rem;
.lh8line-height: 2rem;
.lh9line-height: 2.25rem;
.lh10line-height: 2.5rem;
.lh11line-height: 2.75rem;
.lh12line-height: 3rem;
.lh13line-height: 3.25rem;
.lh14line-height: 3.5rem;
.lh15line-height: 3.75rem;
.lh16line-height: 4rem;
.lh17line-height: 4.25rem;
.lh18line-height: 4.5rem;
.lh19line-height: 4.75rem;
.lh20line-height: 5rem;
.lh21line-height: 5.25rem;
.lh22line-height: 5.5rem;
.lh23line-height: 5.75rem;
.lh24line-height: 6rem;
.lh25line-height: 6.25rem;
.lh26line-height: 6.5rem;
.lh27line-height: 6.75rem;
.lh28line-height: 7rem;
.lh29line-height: 7.25rem;
.lh30line-height: 7.5rem;
.lh31line-height: 7.75rem;
.lh32line-height: 8rem;
.lh33line-height: 8.25rem;
.lh34line-height: 8.5rem;
.lh35line-height: 8.75rem;
.lh36line-height: 9rem;
.lh37line-height: 9.25rem;
.lh38line-height: 9.5rem;
.lh39line-height: 9.75rem;
.lh40line-height: 10rem;
.lh41line-height: 10.25rem;
.lh42line-height: 10.5rem;
.lh43line-height: 10.75rem;
.lh44line-height: 11rem;
.lh45line-height: 11.25rem;
.lh46line-height: 11.5rem;
.lh47line-height: 11.75rem;
.lh48line-height: 12rem;
.lh49line-height: 12.25rem;
.lh50line-height: 12.5rem;
.lh51line-height: 12.75rem;
.lh52line-height: 13rem;
.lh53line-height: 13.25rem;
.lh54line-height: 13.5rem;
.lh55line-height: 13.75rem;
.lh56line-height: 14rem;
.lh57line-height: 14.25rem;
.lh58line-height: 14.5rem;
.lh59line-height: 14.75rem;
.lh60line-height: 15rem;
.lh61line-height: 15.25rem;
.lh62line-height: 15.5rem;
.lh63line-height: 15.75rem;
.lh64line-height: 16rem;
.lh65line-height: 16.25rem;
.lh66line-height: 16.5rem;
.lh67line-height: 16.75rem;
.lh68line-height: 17rem;
.lh69line-height: 17.25rem;
.lh70line-height: 17.5rem;
.lh71line-height: 17.75rem;
.lh72line-height: 18rem;
.lh73line-height: 18.25rem;
.lh74line-height: 18.5rem;
.lh75line-height: 18.75rem;
.lh76line-height: 19rem;
.lh77line-height: 19.25rem;
.lh78line-height: 19.5rem;
.lh79line-height: 19.75rem;
.lh80line-height: 20rem;
.lh81line-height: 20.25rem;
.lh82line-height: 20.5rem;
.lh83line-height: 20.75rem;
.lh84line-height: 21rem;
.lh85line-height: 21.25rem;
.lh86line-height: 21.5rem;
.lh87line-height: 21.75rem;
.lh88line-height: 22rem;
.lh89line-height: 22.25rem;
.lh90line-height: 22.5rem;
.lh91line-height: 22.75rem;
.lh92line-height: 23rem;
.lh93line-height: 23.25rem;
.lh94line-height: 23.5rem;
.lh95line-height: 23.75rem;
.lh96line-height: 24rem;
.lh97line-height: 24.25rem;
.lh98line-height: 24.5rem;
.lh99line-height: 24.75rem;
.lh100line-height: 25rem;

Height

StyleCss
.h0height: 0rem;
.h1height: 0.25rem;
.h2height: 0.5rem;
.h3height: 0.75rem;
.h4height: 1rem;
.h5height: 1.25rem;
.h6height: 1.5rem;
.h7height: 1.75rem;
.h8height: 2rem;
.h9height: 2.25rem;
.h10height: 2.5rem;
.h11height: 2.75rem;
.h12height: 3rem;
.h13height: 3.25rem;
.h14height: 3.5rem;
.h15height: 3.75rem;
.h16height: 4rem;
.h17height: 4.25rem;
.h18height: 4.5rem;
.h19height: 4.75rem;
.h20height: 5rem;
.h21height: 5.25rem;
.h22height: 5.5rem;
.h23height: 5.75rem;
.h24height: 6rem;
.h25height: 6.25rem;
.h26height: 6.5rem;
.h27height: 6.75rem;
.h28height: 7rem;
.h29height: 7.25rem;
.h30height: 7.5rem;
.h31height: 7.75rem;
.h32height: 8rem;
.h33height: 8.25rem;
.h34height: 8.5rem;
.h35height: 8.75rem;
.h36height: 9rem;
.h37height: 9.25rem;
.h38height: 9.5rem;
.h39height: 9.75rem;
.h40height: 10rem;
.h41height: 10.25rem;
.h42height: 10.5rem;
.h43height: 10.75rem;
.h44height: 11rem;
.h45height: 11.25rem;
.h46height: 11.5rem;
.h47height: 11.75rem;
.h48height: 12rem;
.h49height: 12.25rem;
.h50height: 12.5rem;
.h51height: 12.75rem;
.h52height: 13rem;
.h53height: 13.25rem;
.h54height: 13.5rem;
.h55height: 13.75rem;
.h56height: 14rem;
.h57height: 14.25rem;
.h58height: 14.5rem;
.h59height: 14.75rem;
.h60height: 15rem;
.h61height: 15.25rem;
.h62height: 15.5rem;
.h63height: 15.75rem;
.h64height: 16rem;
.h65height: 16.25rem;
.h66height: 16.5rem;
.h67height: 16.75rem;
.h68height: 17rem;
.h69height: 17.25rem;
.h70height: 17.5rem;
.h71height: 17.75rem;
.h72height: 18rem;
.h73height: 18.25rem;
.h74height: 18.5rem;
.h75height: 18.75rem;
.h76height: 19rem;
.h77height: 19.25rem;
.h78height: 19.5rem;
.h79height: 19.75rem;
.h80height: 20rem;
.h81height: 20.25rem;
.h82height: 20.5rem;
.h83height: 20.75rem;
.h84height: 21rem;
.h85height: 21.25rem;
.h86height: 21.5rem;
.h87height: 21.75rem;
.h88height: 22rem;
.h89height: 22.25rem;
.h90height: 22.5rem;
.h91height: 22.75rem;
.h92height: 23rem;
.h93height: 23.25rem;
.h94height: 23.5rem;
.h95height: 23.75rem;
.h96height: 24rem;
.h97height: 24.25rem;
.h98height: 24.5rem;
.h99height: 24.75rem;
.h100height: 100%;

Max Height

StyleCss
.max-h0max-height: 0rem;
.max-h1max-height: 0.25rem;
.max-h2max-height: 0.5rem;
.max-h3max-height: 0.75rem;
.max-h4max-height: 1rem;
.max-h5max-height: 1.25rem;
.max-h6max-height: 1.5rem;
.max-h7max-height: 1.75rem;
.max-h8max-height: 2rem;
.max-h9max-height: 2.25rem;
.max-h10max-height: 2.5rem;
.max-h11max-height: 2.75rem;
.max-h12max-height: 3rem;
.max-h13max-height: 3.25rem;
.max-h14max-height: 3.5rem;
.max-h15max-height: 3.75rem;
.max-h16max-height: 4rem;
.max-h17max-height: 4.25rem;
.max-h18max-height: 4.5rem;
.max-h19max-height: 4.75rem;
.max-h20max-height: 5rem;
.max-h21max-height: 5.25rem;
.max-h22max-height: 5.5rem;
.max-h23max-height: 5.75rem;
.max-h24max-height: 6rem;
.max-h25max-height: 6.25rem;
.max-h26max-height: 6.5rem;
.max-h27max-height: 6.75rem;
.max-h28max-height: 7rem;
.max-h29max-height: 7.25rem;
.max-h30max-height: 7.5rem;
.max-h31max-height: 7.75rem;
.max-h32max-height: 8rem;
.max-h33max-height: 8.25rem;
.max-h34max-height: 8.5rem;
.max-h35max-height: 8.75rem;
.max-h36max-height: 9rem;
.max-h37max-height: 9.25rem;
.max-h38max-height: 9.5rem;
.max-h39max-height: 9.75rem;
.max-h40max-height: 10rem;
.max-h41max-height: 10.25rem;
.max-h42max-height: 10.5rem;
.max-h43max-height: 10.75rem;
.max-h44max-height: 11rem;
.max-h45max-height: 11.25rem;
.max-h46max-height: 11.5rem;
.max-h47max-height: 11.75rem;
.max-h48max-height: 12rem;
.max-h49max-height: 12.25rem;
.max-h50max-height: 12.5rem;
.max-h51max-height: 12.75rem;
.max-h52max-height: 13rem;
.max-h53max-height: 13.25rem;
.max-h54max-height: 13.5rem;
.max-h55max-height: 13.75rem;
.max-h56max-height: 14rem;
.max-h57max-height: 14.25rem;
.max-h58max-height: 14.5rem;
.max-h59max-height: 14.75rem;
.max-h60max-height: 15rem;
.max-h61max-height: 15.25rem;
.max-h62max-height: 15.5rem;
.max-h63max-height: 15.75rem;
.max-h64max-height: 16rem;
.max-h65max-height: 16.25rem;
.max-h66max-height: 16.5rem;
.max-h67max-height: 16.75rem;
.max-h68max-height: 17rem;
.max-h69max-height: 17.25rem;
.max-h70max-height: 17.5rem;
.max-h71max-height: 17.75rem;
.max-h72max-height: 18rem;
.max-h73max-height: 18.25rem;
.max-h74max-height: 18.5rem;
.max-h75max-height: 18.75rem;
.max-h76max-height: 19rem;
.max-h77max-height: 19.25rem;
.max-h78max-height: 19.5rem;
.max-h79max-height: 19.75rem;
.max-h80max-height: 20rem;
.max-h81max-height: 20.25rem;
.max-h82max-height: 20.5rem;
.max-h83max-height: 20.75rem;
.max-h84max-height: 21rem;
.max-h85max-height: 21.25rem;
.max-h86max-height: 21.5rem;
.max-h87max-height: 21.75rem;
.max-h88max-height: 22rem;
.max-h89max-height: 22.25rem;
.max-h90max-height: 22.5rem;
.max-h91max-height: 22.75rem;
.max-h92max-height: 23rem;
.max-h93max-height: 23.25rem;
.max-h94max-height: 23.5rem;
.max-h95max-height: 23.75rem;
.max-h96max-height: 24rem;
.max-h97max-height: 24.25rem;
.max-h98max-height: 24.5rem;
.max-h99max-height: 24.75rem;
.max-h100max-height: 100%;

Min Height

StyleCss
.min-h0min-height: 0rem;
.min-h1min-height: 0.25rem;
.min-h10min-height: 2.5rem;
.min-h11min-height: 2.75rem;
.min-h12min-height: 3rem;
.min-h13min-height: 3.25rem;
.min-h14min-height: 3.5rem;
.min-h15min-height: 3.75rem;
.min-h16min-height: 4rem;
.min-h17min-height: 4.25rem;
.min-h18min-height: 4.5rem;
.min-h19min-height: 4.75rem;
.min-h2min-height: 0.5rem;
.min-h20min-height: 5rem;
.min-h21min-height: 5.25rem;
.min-h22min-height: 5.5rem;
.min-h23min-height: 5.75rem;
.min-h24min-height: 6rem;
.min-h25min-height: 6.25rem;
.min-h26min-height: 6.5rem;
.min-h27min-height: 6.75rem;
.min-h28min-height: 7rem;
.min-h29min-height: 7.25rem;
.min-h3min-height: 0.75rem;
.min-h30min-height: 7.5rem;
.min-h31min-height: 7.75rem;
.min-h32min-height: 8rem;
.min-h33min-height: 8.25rem;
.min-h34min-height: 8.5rem;
.min-h35min-height: 8.75rem;
.min-h36min-height: 9rem;
.min-h37min-height: 9.25rem;
.min-h38min-height: 9.5rem;
.min-h39min-height: 9.75rem;
.min-h4min-height: 1rem;
.min-h40min-height: 10rem;
.min-h41min-height: 10.25rem;
.min-h42min-height: 10.5rem;
.min-h43min-height: 10.75rem;
.min-h44min-height: 11rem;
.min-h45min-height: 11.25rem;
.min-h46min-height: 11.5rem;
.min-h47min-height: 11.75rem;
.min-h48min-height: 12rem;
.min-h49min-height: 12.25rem;
.min-h5min-height: 1.25rem;
.min-h50min-height: 12.5rem;
.min-h51min-height: 12.75rem;
.min-h52min-height: 13rem;
.min-h53min-height: 13.25rem;
.min-h54min-height: 13.5rem;
.min-h55min-height: 13.75rem;
.min-h56min-height: 14rem;
.min-h57min-height: 14.25rem;
.min-h58min-height: 14.5rem;
.min-h59min-height: 14.75rem;
.min-h6min-height: 1.5rem;
.min-h60min-height: 15rem;
.min-h61min-height: 15.25rem;
.min-h62min-height: 15.5rem;
.min-h63min-height: 15.75rem;
.min-h64min-height: 16rem;
.min-h65min-height: 16.25rem;
.min-h66min-height: 16.5rem;
.min-h67min-height: 16.75rem;
.min-h68min-height: 17rem;
.min-h69min-height: 17.25rem;
.min-h7min-height: 1.75rem;
.min-h70min-height: 17.5rem;
.min-h71min-height: 17.75rem;
.min-h72min-height: 18rem;
.min-h73min-height: 18.25rem;
.min-h74min-height: 18.5rem;
.min-h75min-height: 18.75rem;
.min-h76min-height: 19rem;
.min-h77min-height: 19.25rem;
.min-h78min-height: 19.5rem;
.min-h79min-height: 19.75rem;
.min-h8min-height: 2rem;
.min-h9min-height: 2.25rem;
.min-h80min-height: 20rem;
.min-h81min-height: 20.25rem;
.min-h82min-height: 20.5rem;
.min-h83min-height: 20.75rem;
.min-h84min-height: 21rem;
.min-h85min-height: 21.25rem;
.min-h86min-height: 21.5rem;
.min-h87min-height: 21.75rem;
.min-h88min-height: 22rem;
.min-h89min-height: 22.25rem;
.min-h90min-height: 22.5rem;
.min-h91min-height: 22.75rem;
.min-h92min-height: 23rem;
.min-h93min-height: 23.25rem;
.min-h94min-height: 23.5rem;
.min-h95min-height: 23.75rem;
.min-h96min-height: 24rem;
.min-h97min-height: 24.25rem;
.min-h98min-height: 24.5rem;
.min-h99min-height: 24.75rem;
.min-h100min-height: 100%;

Width

StyleCss
.w0width: 0rem;
.w1width: 0.25rem;
.w2width: 0.5rem;
.w3width: 0.75rem;
.w4width: 1rem;
.w5width: 1.25rem;
.w6width: 1.5rem;
.w7width: 1.75rem;
.w8width: 2rem;
.w9width: 2.25rem;
.w10width: 2.5rem;
.w11width: 2.75rem;
.w12width: 3rem;
.w13width: 3.25rem;
.w14width: 3.5rem;
.w15width: 3.75rem;
.w16width: 4rem;
.w17width: 4.25rem;
.w18width: 4.5rem;
.w19width: 4.75rem;
.w20width: 5rem;
.w21width: 5.25rem;
.w22width: 5.5rem;
.w23width: 5.75rem;
.w24width: 6rem;
.w25width: 6.25rem;
.w26width: 6.5rem;
.w27width: 6.75rem;
.w28width: 7rem;
.w29width: 7.25rem;
.w30width: 7.5rem;
.w31width: 7.75rem;
.w32width: 8rem;
.w33width: 8.25rem;
.w34width: 8.5rem;
.w35width: 8.75rem;
.w36width: 9rem;
.w37width: 9.25rem;
.w38width: 9.5rem;
.w39width: 9.75rem;
.w40width: 10rem;
.w41width: 10.25rem;
.w42width: 10.5rem;
.w43width: 10.75rem;
.w44width: 11rem;
.w45width: 11.25rem;
.w46width: 11.5rem;
.w47width: 11.75rem;
.w48width: 12rem;
.w49width: 12.25rem;
.w50width: 12.5rem;
.w51width: 12.75rem;
.w52width: 13rem;
.w53width: 13.25rem;
.w54width: 13.5rem;
.w55width: 13.75rem;
.w56width: 14rem;
.w57width: 14.25rem;
.w58width: 14.5rem;
.w59width: 14.75rem;
.w60width: 15rem;
.w61width: 15.25rem;
.w62width: 15.5rem;
.w63width: 15.75rem;
.w64width: 16rem;
.w65width: 16.25rem;
.w66width: 16.5rem;
.w67width: 16.75rem;
.w68width: 17rem;
.w69width: 17.25rem;
.w70width: 17.5rem;
.w71width: 17.75rem;
.w72width: 18rem;
.w73width: 18.25rem;
.w74width: 18.5rem;
.w75width: 18.75rem;
.w76width: 19rem;
.w77width: 19.25rem;
.w78width: 19.5rem;
.w79width: 19.75rem;
.w80width: 20rem;
.w81width: 20.25rem;
.w82width: 20.5rem;
.w83width: 20.75rem;
.w84width: 21rem;
.w85width: 21.25rem;
.w86width: 21.5rem;
.w87width: 21.75rem;
.w88width: 22rem;
.w89width: 22.25rem;
.w90width: 22.5rem;
.w91width: 22.75rem;
.w92width: 23rem;
.w93width: 23.25rem;
.w94width: 23.5rem;
.w95width: 23.75rem;
.w96width: 24rem;
.w97width: 24.25rem;
.w98width: 24.5rem;
.w99width: 24.75rem;
.w100width: 100%;

Max Width

StyleCss
.max-w0max-width: 0rem;
.max-w1max-width: 0.25rem;
.max-w2max-width: 0.5rem;
.max-w3max-width: 0.75rem;
.max-w4max-width: 1rem;
.max-w5max-width: 1.25rem;
.max-w6max-width: 1.5rem;
.max-w7max-width: 1.75rem;
.max-w8max-width: 2rem;
.max-w9max-width: 2.25rem;
.max-w10max-width: 2.5rem;
.max-w11max-width: 2.75rem;
.max-w12max-width: 3rem;
.max-w13max-width: 3.25rem;
.max-w14max-width: 3.5rem;
.max-w15max-width: 3.75rem;
.max-w16max-width: 4rem;
.max-w17max-width: 4.25rem;
.max-w18max-width: 4.5rem;
.max-w19max-width: 4.75rem;
.max-w20max-width: 5rem;
.max-w21max-width: 5.25rem;
.max-w22max-width: 5.5rem;
.max-w23max-width: 5.75rem;
.max-w24max-width: 6rem;
.max-w25max-width: 6.25rem;
.max-w26max-width: 6.5rem;
.max-w27max-width: 6.75rem;
.max-w28max-width: 7rem;
.max-w29max-width: 7.25rem;
.max-w30max-width: 7.5rem;
.max-w31max-width: 7.75rem;
.max-w32max-width: 8rem;
.max-w33max-width: 8.25rem;
.max-w34max-width: 8.5rem;
.max-w35max-width: 8.75rem;
.max-w36max-width: 9rem;
.max-w37max-width: 9.25rem;
.max-w38max-width: 9.5rem;
.max-w39max-width: 9.75rem;
.max-w40max-width: 10rem;
.max-w41max-width: 10.25rem;
.max-w42max-width: 10.5rem;
.max-w43max-width: 10.75rem;
.max-w44max-width: 11rem;