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,127 @@
1
+//JS / CSS Anpassung @extend
2
+
3
+/*
4
+p.back > a, .widget-submit > button,
5
+.submit_container > input.button,
6
+.submit_container button,
7
+.submit_container .submit,
8
+.actions_container .submit,
9
+.filter-toggle-control,
10
+.mod_iso_orderhistory td.link > a,
11
+.mod_iso_addressbook a.add,
12
+p.empty,
13
+#footerNav ul,
14
+#footerNav ul > li,
15
+.tl_confirm,
16
+.message,
17
+#main .mod_article > *:not(.content--element):not(.container):not(.ce_html):not(.mod_catalogMasterView):not(.mod_catalogUniversalView), #main > .inside > div[class^="mod_"]:not(.mod_article),
18
+p.error,
19
+.widget-radio span.note,
20
+.formbody:not(.row) {
21
+  opacity: 0;
22
+  animation: .3s ease 0s normal forwards 1 fadein;
23
+}
24
+ */
25
+
26
+.invisible {
27
+  display: none;
28
+}
29
+
30
+[data-aos]:not([data-aos="no-animation"]) {
31
+  visibility: hidden;
32
+
33
+  &.animate__animated {
34
+    visibility: visible;
35
+  }
36
+}
37
+
38
+[data-aos] {
39
+  z-index: 1;
40
+}
41
+
42
+.lazy {
43
+  opacity: 0;
44
+  transition: opacity 0.3s ease;
45
+
46
+  &.entered {
47
+    opacity: 1;
48
+  }
49
+}
50
+
51
+header,
52
+footer {
53
+  *[data-aos] {
54
+    transition: none !important;
55
+    animation: none !important;
56
+    visibility: visible !important;
57
+  }
58
+}
59
+
60
+main {
61
+  [class*="animate__"]:not(.no-animation):not(.animate__animated) {
62
+    opacity: 0;
63
+  }
64
+}
65
+
66
+.make-fullwidth {
67
+  width: 100vw;
68
+  position: relative;
69
+  left: 50%;
70
+  right: 50%;
71
+  margin-left: -50vw;
72
+  margin-right: -50vw;
73
+}
74
+
75
+%make-fullwidth {
76
+  width: 100vw;
77
+  position: relative;
78
+  left: 50%;
79
+  right: 50%;
80
+  margin-left: -50vw;
81
+  margin-right: -50vw;
82
+}
83
+
84
+.container {
85
+  .container:not(.ce_headline):not(.container.container) {
86
+    max-width: none;
87
+    padding: 0px;
88
+  }
89
+}
90
+
91
+#main .mod_article > *:not(.content--element):not(.container):not(.ce_html):not(.mod_catalogMasterView):not(.mod_catalogUniversalView),
92
+#main > .inside > div[class^="mod_"]:not(.mod_article) {
93
+  //@extend .container;
94
+}
95
+
96
+.ce_form {
97
+  .row.boostrap5 {
98
+    width: 100%;
99
+  }
100
+}
101
+
102
+
103
+.container {
104
+  --bs-gutter-x: 0;
105
+}
106
+
107
+.container {
108
+  @include media-breakpoint-down(sm) {
109
+    padding-left: 1rem;
110
+    padding-right: 1rem;
111
+  }
112
+
113
+  .container {
114
+    @include media-breakpoint-down(sm) {
115
+      padding-left: 0px;
116
+      padding-right: 0px;
117
+    }
118
+  }
119
+}
120
+
121
+.alpdeskfee-article {
122
+  margin: 0px !important;
123
+}
124
+
125
+*[data-bs-toggle] {
126
+  cursor: pointer;
127
+}