Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Image selector item */
- .image-selector-item {
- width: 50% !important;
- box-sizing: border-box;
- }
- /* Container flex settings */
- #container {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- }
- /* Default: 3 columns */
- .imageContainer.blocks {
- width: 33.33%;
- box-sizing: border-box;
- }
- /* Medium screens: 2 columns */
- @media (max-width: 768px) {
- .imageContainer.blocks {
- width: 50%;
- }
- }
- /* Small screens: still 2 columns, remove background/margin clutter */
- @media (max-width: 480px) {
- .imageContainer.blocks {
- width: 50% !important;
- background: #ccc;
- margin: 0;
- }
- }
- /* Image label styling */
- .imageLabel {
- font-size: 12px;
- font-weight: 400;
- font-family: Montserrat, sans-serif;
- padding-bottom: 8px;
- color: #666;
- text-align: center;
- text-transform: uppercase;
- }
- /* Image div styling */
- .divimg {
- border: none;
- }
- /* Check mark on selected image */
- .divimg.check_mark::before {
- content: '';
- display: block;
- width: 5px;
- height: 10px;
- border: solid #000;
- border-width: 0 3.5px 3.5px 0;
- border-color: #4CAF50;
- transform: rotate(45deg);
- position: absolute;
- margin: 4px 7px;
- }
- /* Selected image border */
- .divimg.selected {
- border: 2px solid #8BC34A;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement