Created
September 24, 2018 15:41
-
-
Save luislobo14rap/6978b92844b97e5237078c304ec61f53 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* bs4-float.css v1 */ | |
.float-left { | |
float: left !important; | |
} | |
.float-right { | |
float: right !important; | |
} | |
.float-none { | |
float: none !important; | |
} | |
@media (min-width: 576px) { | |
.float-sm-left { | |
float: left !important; | |
} | |
.float-sm-right { | |
float: right !important; | |
} | |
.float-sm-none { | |
float: none !important; | |
} | |
} | |
@media (min-width: 768px) { | |
.float-md-left { | |
float: left !important; | |
} | |
.float-md-right { | |
float: right !important; | |
} | |
.float-md-none { | |
float: none !important; | |
} | |
} | |
@media (min-width: 992px) { | |
.float-lg-left { | |
float: left !important; | |
} | |
.float-lg-right { | |
float: right !important; | |
} | |
.float-lg-none { | |
float: none !important; | |
} | |
} | |
@media (min-width: 1200px) { | |
.float-xl-left { | |
float: left !important; | |
} | |
.float-xl-right { | |
float: right !important; | |
} | |
.float-xl-none { | |
float: none !important; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* bs4-float.min.css v1 */ | |
.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment