Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Margins
- ----------------------------------------------------------------------------------------------------*/
- .no-margin {
- margin: 0 !important;
- }
- .no-top-margin {
- margin-top: 0 !important;
- }
- .no-left-margin {
- margin-left: 0 !important;
- }
- .no-right-margin {
- margin-right: 0 !important;
- }
- .no-bottom-margin {
- margin-bottom: 0 !important;
- }
- /* Paddings
- ----------------------------------------------------------------------------------------------------*/
- .no-padding {
- padding: 0 !important;
- }
- .no-top-padding {
- padding-top: 0 !important;
- }
- .no-left-padding {
- padding-left: 0 !important;
- }
- .no-right-padding {
- padding-right: 0 !important;
- }
- .no-bottom-padding {
- padding-bottom: 0 !important;
- }
- /* Aligns
- ----------------------------------------------------------------------------------------------------*/
- .align-left {
- left: 0 !important;
- }
- .align-right {
- right: 0 !important;
- }
- .align-center {
- top: 50% !important;
- left: 50% !important;
- position: absolute !important;
- -webkit-transform: translate(-50%, -50%) !important;
- -moz-transform: translate(-50%, -50%) !important;
- -ms-transform: translate(-50%, -50%) !important;
- -o-transform: translate(-50%, -50%) !important;
- }
- /* Text Aligns
- ----------------------------------------------------------------------------------------------------*/
- .text-left {
- text-align: left !important;
- }
- .text-right {
- text-align: right !important;
- }
- .text-center {
- text-align: center !important;
- }
- /* Floats
- ----------------------------------------------------------------------------------------------------*/
- .float-left {
- float: left !important;
- }
- .float-right {
- float: right !important;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement