You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- .ce_gallery {
- ul {
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- }
- li {
- width: calc(50% - 20px);
- padding-bottom: 2rem;
- @media (max-width: 1004px) {
- width: 100%;
- }
- }
- &.icon-gallery {
- @include fullwidth();
-
- ul {
- justify-content: space-evenly;
- padding: 2.5rem 0 1.5rem 0;
- margin: 0 auto;
- max-width: calc(1200px - 24px);
- }
-
- li {
- width: auto;
- flex-grow: 1;
- flex-basis: 0;
- }
-
- .image_container {
- padding: 0 0.5rem;
- @media (max-width: 1004px) {
- padding: 0 1.5rem;
- }
- @media (max-width: 768px) {
- padding: 0 2.5rem 1rem 2.5rem;
- }
-
- img {
- width: 64px;
- margin: 0 auto 15px auto;
- }
-
- .caption {
- width: 100%;
- text-transform: uppercase;
- text-align: center;
- font-weight: 700;
- }
- }
-
- }
- }
-
- .ce_bs_grid_gallery {
- @media (max-width: 768px) {
- .row {
- display: block;
-
- .col {
- padding: 0 0 2rem 0;
- }
- }
- }
- }
|