/* == FONT WEIGHT == */ .font-weight-bold { font-weight: bold; } .font-weight-bolder { font-weight: bold; } .font-weight-lighter { font-weight: lighter; } .font-weight-normal { font-weight: normal; } /* == FLOATS == */ .float-left { float: left; } .float-right { float: right; } .float-clear-left { clear: left; } .float-clear-right { clear: right; } .float-clear-both { clear: both; } /* == POSITION == */ .position-absolute { position: absolute; } .position-relative { position: relative; } /* == DISPLAY == */ .display-inline { display: inline; } .display-table { display: table; } .display-block { display: block; } .display-none { display: none; } .display-none-important { display: none !important; } .display-inline-block { display: inline; } /* == TEXT TRANSFORMS == */ .text-uppercase { text-transform: uppercase; } .text-lowercase { text-transform: lowercase; } /* == TESTS == */ .bg-teste-red { background-color: red !important; } .bg-teste-green { background-color: green !important; } .bg-teste-blue { background-color: blue !important; } .bg-teste-yellow { background-color: yellow !important; }