@leuffen/themejs1 8.2.33 → 8.2.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -36,7 +36,8 @@ type: website
36
36
  In unserer HNO-Praxis am Senftenberger See erhalten Sie individuelle und erstklassige medizinische Versorgung.
37
37
  {: style="max-width: 450px;"}
38
38
 
39
- [Entdecken Sie unsere Leistungen](#leistungen){: .btn .btn-outline-primary .btn-lg .my-3}
39
+ [Online Termin vereinbaren](/online-termin){: .btn .btn-primary .btn-lg .mt-3 .my-3}
40
+ [Unsere Online-Services](#online-services){: .btn .btn-outline-primary .btn-lg .mt-3 .my-3}
40
41
 
41
42
 
42
43
 
@@ -82,18 +83,22 @@ Wir freuen uns darauf, Sie auf Ihrem Weg zu einer umfassenden Gesundheit begleit
82
83
 
83
84
 
84
85
 
85
- #### <i class="bi bi-calendar-week-fill"></i> Termine online buchen
86
- {: .sec-box}
86
+ #### <i class="bi bi-calendar-week-fill"></i> Online-Services
87
+ {: .sec-box id="online-services"}
87
88
 
88
- Nutzen Sie unser Online-Formular für Ihren persönlichen Terminwunsch.
89
+ Auch online immer für Sie da: Ohne Wartezeit, bequem und schnell:
89
90
 
90
91
  [Online Termin vereinbaren](/online-termin){: .btn .btn-primary .btn-lg .mt-3 .w-100}
92
+ [Online Rezept](/online-rezept){: .btn .btn-outline-primary .btn-lg .mt-3 .w-100}
93
+ [Online Überweisung](/online-ueberweisung){: .btn .btn-outline-primary .btn-lg .mt-3 .w-100}
94
+ [Videosprechstunde](/online-videosprechstunde){: .btn .btn-outline-primary .btn-lg .mt-3 .w-100}
91
95
 
92
96
 
93
97
 
94
98
  #### <i class="bi bi-clock"></i> Unsere Sprechzeiten
95
99
  {: .sec-box}
96
100
 
101
+ <!-- hier immer include stehen lassen - die Öffnungszeiten werden darüber eingebunden -->
97
102
  {% include el/openhours.html %}
98
103
 
99
104
 
@@ -0,0 +1,9 @@
1
+
2
+ @import "../themes/_vendor/font-opensans";
3
+ @import "../themes/_vendor/font-garamond";
4
+
5
+ $font-family-base: 'Open Sans', sans-serif;
6
+ $font-size-base: 1rem !default;
7
+
8
+ $font-family-header: 'Garamond', serif !default;
9
+ $font-size-header: 3.2rem !default;
@@ -5,4 +5,4 @@ $font-family-base: 'Open Sans', sans-serif;
5
5
  $font-size-base: 1rem !default;
6
6
 
7
7
  $font-family-headeer: $font-family-base !default;
8
- $font-size-header: 1.8rem !default;
8
+ $font-size-header: 2.8rem !default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leuffen/themejs1",
3
- "version": "8.2.33",
3
+ "version": "8.2.35",
4
4
  "description": "",
5
5
  "license": "proprietary",
6
6
  "main": "./index.js",
@@ -1,5 +1,8 @@
1
1
  .burger-menu {
2
- position: relative;
2
+ position: absolute;
3
+
4
+ top: 15px;
5
+ right: 15px;
3
6
 
4
7
  height: 30px;
5
8
 
@@ -26,10 +26,13 @@
26
26
  --layout-backdrop-height: 20px;
27
27
 
28
28
  --layout-spacer-height: 0px;
29
- --layout-spacer-color: rgba(255,255,255,1);
30
29
  --layout-spacer-height-mobile: calc(var(--layout-image-height) * var(--layout-zoom-ratio-mobile));
31
30
 
32
31
 
32
+ --layout-spacer-color: rgba(255,255,255,1);
33
+
34
+ --layout-justify-navbar-items: center;
35
+
33
36
  --e-zoom-ratio: var(--layout-zoom-ratio);
34
37
  --e-translatey: 40%;
35
38
  @media (width < $breakpoint-mobile) {
@@ -38,6 +41,13 @@
38
41
  }
39
42
 
40
43
 
44
+ &.logo-left {
45
+ --layout-zoom-ratio: 1;
46
+ --layout-zoom-ratio-mobile: 1;
47
+
48
+ }
49
+
50
+
41
51
 
42
52
 
43
53
  &>.e--spacer {
@@ -96,11 +106,15 @@
96
106
 
97
107
 
98
108
  &>.navbar__wrapper {
99
- display: flex;
109
+ position: relative;
110
+ width: 100%;
111
+ display: block;
100
112
  justify-content: space-between;
101
113
  flex-wrap: nowrap;
102
114
  flex-direction: row;
103
115
 
116
+
117
+
104
118
  & > *{
105
119
  flex-grow: 1;
106
120
  display: flex;
@@ -109,8 +123,9 @@
109
123
  &>.navbar__logo {
110
124
  transition: all 0.5s ease-in-out;
111
125
  align-items: center;
112
- justify-content: center;
126
+ justify-content: var(--layout-justify-navbar-items);
113
127
  display: flex;
128
+ width: 100%;
114
129
 
115
130
 
116
131
  img {
@@ -12,7 +12,7 @@ Joda.registerTemplate("sec-card-feature",
12
12
  <slot></slot>
13
13
  </div>
14
14
  <div class="col-12 col-lg-6 text-format p-4 p-lg-5">
15
- <slot data-select=":scope > .children"></slot>
15
+ <slot data-select=".aside || :scope > .children"></slot>
16
16
  </div>
17
17
  </div>
18
18
  </div>
@@ -14,7 +14,7 @@ Joda.registerTemplate("sec-card-feature",
14
14
  <slot></slot>
15
15
  </div>
16
16
  <div class="col-12 col-lg-6 text-format p-4 p-lg-5">
17
- <slot data-select=":scope > .children"></slot>
17
+ <slot data-select=".aside || :scope > .children"></slot>
18
18
  </div>
19
19
  </div>
20
20
  </div>