Browse code

Initial commit

Benjamin Roth authored on16/03/2023 20:22:35
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,28 @@
1
+.ce_gallery {
2
+  ul {
3
+    padding: 0px;
4
+    margin: 0px -.5rem;
5
+    list-style-type: none;
6
+
7
+    display: flex;
8
+    flex-flow: row wrap;
9
+    justify-content: space-around;
10
+
11
+
12
+    &.cols_4 {
13
+      > li {
14
+        margin-top: 1rem;
15
+        padding-left: .5rem;
16
+        padding-right: .5rem;
17
+        @include media-breakpoint-up(lg) {
18
+          width: 25%;
19
+        }
20
+
21
+        figure{
22
+          margin-bottom: 0px;
23
+        }
24
+      }
25
+    }
26
+
27
+  }
28
+}
0 29
\ No newline at end of file