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,110 @@
1
+.modal {
2
+  --bs-modal-title-line-height: 1;
3
+  z-index: 5500;
4
+  max-width: 100% !important;
5
+  //z-index: -1;
6
+
7
+  &:not(.show) {
8
+    width: 0px;
9
+    height: 0px;
10
+  }
11
+
12
+  &.modal-dialog-centered {
13
+    &.show {
14
+      display: flex !important;
15
+    }
16
+
17
+    .modal-dialog {
18
+      margin: auto;
19
+      width: 100%;
20
+
21
+      .modal-content.container {
22
+      }
23
+    }
24
+  }
25
+
26
+  .modal-dialog {
27
+    --animate-duration: 1000ms;
28
+    --animate-delay: 500ms;
29
+
30
+    .modal-content {
31
+      border-radius: $border-radius;
32
+      box-shadow: $box-shadow;
33
+
34
+      .modal-header {
35
+        .modal-title {
36
+          color: var(--bs-primary);
37
+          font-size: 2.5rem;
38
+        }
39
+      }
40
+    }
41
+  }
42
+
43
+
44
+  .btn-close {
45
+    padding: .25rem;
46
+    color: var(--bs-primary);
47
+    font-size: rfs-value(24px);
48
+    opacity: 1;
49
+    background: var(--bs-primary);
50
+    mask-repeat: no-repeat;
51
+    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var(--bs-primary)'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E");
52
+    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var(--bs-primary)'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E");
53
+
54
+  }
55
+
56
+  .btn--close {
57
+    position: absolute;
58
+    right: 10px;
59
+    top: 5px;
60
+    background-color: transparent;
61
+    padding: 0px;
62
+    margin: 0px;
63
+    color: var(--bs-primary);
64
+    border: 0px;
65
+    font-size: rfs-value(50px);
66
+    line-height: 1;
67
+    z-index: 5;
68
+  }
69
+}
70
+
71
+.modal.details-modal.modal-xl {
72
+  .modal-dialog {
73
+    max-width: 100%;
74
+
75
+    .modal-content {
76
+      border-radius: 0px;
77
+    }
78
+
79
+    .modal-body {
80
+      padding-bottom: 0px;
81
+      padding-top: 0px;
82
+
83
+      .container.container {
84
+        position: relative;
85
+        padding-top: 3rem;
86
+        padding-bottom: 4rem;
87
+
88
+        .btn--close {
89
+          top: 1rem;
90
+          right: 0;
91
+        }
92
+
93
+        .event--modal-image-wrapper {
94
+          height: 100%;
95
+          width: 100%;
96
+        }
97
+
98
+        .ce_text {
99
+          a.btn {
100
+            margin-top: 2.5rem;
101
+          }
102
+
103
+          .text--wrapper {
104
+            font-weight: $font-weight-light;
105
+          }
106
+        }
107
+      }
108
+    }
109
+  }
110
+}