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.
 
 
 

66 lines
1.0 KiB

  1. .ce_gallery {
  2. ul {
  3. display: flex;
  4. justify-content: space-between;
  5. flex-wrap: wrap;
  6. }
  7. li {
  8. width: calc(50% - 20px);
  9. padding-bottom: 2rem;
  10. @media (max-width: 1004px) {
  11. width: 100%;
  12. }
  13. }
  14. &.icon-gallery {
  15. @include fullwidth();
  16. ul {
  17. justify-content: space-evenly;
  18. padding: 2.5rem 0 1.5rem 0;
  19. margin: 0 auto;
  20. max-width: calc(1200px - 24px);
  21. }
  22. li {
  23. width: auto;
  24. flex-grow: 1;
  25. flex-basis: 0;
  26. }
  27. .image_container {
  28. padding: 0 0.5rem;
  29. @media (max-width: 1004px) {
  30. padding: 0 1.5rem;
  31. }
  32. @media (max-width: 768px) {
  33. padding: 0 2.5rem 1rem 2.5rem;
  34. }
  35. img {
  36. width: 64px;
  37. margin: 0 auto 15px auto;
  38. }
  39. .caption {
  40. width: 100%;
  41. text-transform: uppercase;
  42. text-align: center;
  43. font-weight: 700;
  44. }
  45. }
  46. }
  47. }
  48. .ce_bs_grid_gallery {
  49. @media (max-width: 768px) {
  50. .row {
  51. display: block;
  52. .col {
  53. padding: 0 0 2rem 0;
  54. }
  55. }
  56. }
  57. }