Last active
March 9, 2020 00:53
-
-
Save wplaunchify/591cbe987abcee9dee3d883134fc165c to your computer and use it in GitHub Desktop.
LaunchFlows - Dynamic Bump Checkbox Style Rules
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
.lf-bump img{ | |
display: none; /* hide or show thumbnail. default is "block" */ | |
width: 300px; /* change size larger or smaller. default is 75px */ | |
margin: 0 0 0 10px; /* add space between checkbox and img */ | |
} | |
.lf-bump input.switch { | |
transform: scale(2); /* larger numbers increase size. default is 1.5 */ | |
} | |
.lf-bump { | |
flex-direction: row; /* default is row. choose from: row | row-reverse | column | column-reverse */ | |
display: flex; | |
align-items: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment