Browse code

Update

Benjamin Roth authored on17/03/2023 09:52:56
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,51 @@
1
+.steps {
2
+  background-color: var(--bs-gray-100);
3
+  margin-bottom: 3rem;
4
+
5
+  ol {
6
+    padding: 0;
7
+    list-style: none;
8
+    color: var(--bs-primary);
9
+    text-transform: uppercase;
10
+    font-weight: 600;
11
+    @include font-size(14px);
12
+    letter-spacing: 0.2em;
13
+    min-height: 4em;
14
+    display: flex;
15
+    align-items: center;
16
+    justify-content: space-evenly;
17
+
18
+    > li {
19
+      flex: 0 1 auto;
20
+      text-align: center;
21
+      padding: 1.5em 10px;
22
+      position: relative;
23
+
24
+      a {
25
+        text-decoration: none;
26
+      }
27
+
28
+      @include media-breakpoint-down(md) {
29
+        &:not(.active) {
30
+          display: none;
31
+        }
32
+      }
33
+
34
+      &.active {
35
+        color: var(--bs-primary);
36
+
37
+        &:before {
38
+          content: "";
39
+          display: block;
40
+          position: absolute;
41
+          left: 50%;
42
+          bottom: 0;
43
+          border-bottom: 15px $primary solid;
44
+          border-left: 15px transparent solid;
45
+          border-right: 15px transparent solid;
46
+          margin-left: -15px;
47
+        }
48
+      }
49
+    }
50
+  }
51
+}