@festo-ui/web-essentials 8.2.0-dev.629 → 8.2.0-dev.637
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.
- package/README.md +83 -83
- package/dist/css/festo-web-essentials.css +9 -12
- package/dist/css/festo-web-essentials.css.map +1 -1
- package/dist/css/festo-web-essentials.min.css +12 -12
- package/dist/css/festo-web-essentials.min.css.map +1 -1
- package/dist/css/light/festo-web-essentials-light.css +0 -3
- package/dist/css/light/festo-web-essentials-light.css.map +1 -1
- package/dist/css/themes/flatpickr/festo.css +1 -1
- package/dist/css/themes/flatpickr/festo.min.css +1 -1
- package/dist/scss/_badge.scss +49 -49
- package/dist/scss/_border.scss +86 -86
- package/dist/scss/_bottom-navigation.scss +47 -47
- package/dist/scss/_bottom-sheet.scss +116 -116
- package/dist/scss/_colors.scss +11 -11
- package/dist/scss/_display.scss +63 -63
- package/dist/scss/_flex.scss +269 -269
- package/dist/scss/_grid.scss +44 -44
- package/dist/scss/_layout.scss +64 -64
- package/dist/scss/_list.scss +211 -211
- package/dist/scss/_misc.scss +51 -51
- package/dist/scss/_mixins.scss +51 -51
- package/dist/scss/_modal.scss +233 -233
- package/dist/scss/_normalize.scss +369 -369
- package/dist/scss/_pagination.scss +124 -124
- package/dist/scss/_rfs.scss +177 -177
- package/dist/scss/_segment.scss +146 -146
- package/dist/scss/_sidebar-overlay.scss +51 -51
- package/dist/scss/_slider.scss +150 -150
- package/dist/scss/_snackbar.scss +159 -159
- package/dist/scss/_spacing.scss +51 -51
- package/dist/scss/_switch.scss +145 -145
- package/dist/scss/_text-input.scss +191 -191
- package/dist/scss/_text-link.scss +52 -52
- package/dist/scss/_toolbar.scss +83 -83
- package/dist/scss/_type.scss +50 -50
- package/dist/scss/_utils.scss +9 -9
- package/dist/scss/festo-web-essentials.scss +1 -1
- package/dist/scss/light/_border-light.scss +75 -75
- package/dist/scss/light/_flex-light.scss +258 -258
- package/dist/scss/light/_spacing-light.scss +52 -52
- package/dist/scss/light/festo-web-essentials-light.scss +59 -59
- package/dist/scss/organisms/_header-modul.scss +111 -111
- package/dist/scss/organisms/_teaser.scss +96 -96
- package/dist/scss/themes/flatpickr/festo.scss +1 -1
- package/package.json +10 -16
- package/scss/_badge.scss +49 -49
- package/scss/_border.scss +86 -86
- package/scss/_bottom-navigation.scss +47 -47
- package/scss/_bottom-sheet.scss +116 -116
- package/scss/_colors.scss +11 -11
- package/scss/_display.scss +63 -63
- package/scss/_flex.scss +269 -269
- package/scss/_grid.scss +44 -44
- package/scss/_layout.scss +64 -64
- package/scss/_list.scss +211 -211
- package/scss/_misc.scss +51 -51
- package/scss/_mixins.scss +51 -51
- package/scss/_modal.scss +233 -233
- package/scss/_normalize.scss +369 -369
- package/scss/_pagination.scss +124 -124
- package/scss/_rfs.scss +177 -177
- package/scss/_segment.scss +146 -146
- package/scss/_sidebar-overlay.scss +51 -51
- package/scss/_slider.scss +150 -150
- package/scss/_snackbar.scss +159 -159
- package/scss/_spacing.scss +51 -51
- package/scss/_switch.scss +145 -145
- package/scss/_text-input.scss +191 -191
- package/scss/_text-link.scss +52 -52
- package/scss/_toolbar.scss +83 -83
- package/scss/_type.scss +50 -50
- package/scss/_utils.scss +9 -9
- package/scss/light/_border-light.scss +75 -75
- package/scss/light/_flex-light.scss +258 -258
- package/scss/light/_spacing-light.scss +52 -52
- package/scss/light/festo-web-essentials-light.scss +59 -59
- package/scss/organisms/_header-modul.scss +111 -111
- package/scss/organisms/_teaser.scss +96 -96
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Festo UI - Web Essentials light (https://storybook.festo.design/)
|
|
3
|
-
* Copyright 2025 Festo SE & Co. KG
|
|
4
|
-
* Licensed under Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
@use "../rfs";
|
|
8
|
-
@use "../variables";
|
|
9
|
-
@use "../mixins";
|
|
10
|
-
@use "../fonts";
|
|
11
|
-
@use "../colors";
|
|
12
|
-
|
|
13
|
-
@use "../type";
|
|
14
|
-
@use "../root";
|
|
15
|
-
@use "../normalize";
|
|
16
|
-
@use "../utils";
|
|
17
|
-
|
|
18
|
-
@use "../misc";
|
|
19
|
-
@use "../display";
|
|
20
|
-
@use "spacing-light";
|
|
21
|
-
@use "border-light";
|
|
22
|
-
@use "flex-light";
|
|
23
|
-
|
|
24
|
-
@use "../layout";
|
|
25
|
-
@use "../toolbar";
|
|
26
|
-
@use "../table";
|
|
27
|
-
@use "../list";
|
|
28
|
-
@use "../navbar";
|
|
29
|
-
@use "../mobile-flyout";
|
|
30
|
-
@use "../breadcrumb";
|
|
31
|
-
@use "../text-link";
|
|
32
|
-
@use "../text-input";
|
|
33
|
-
@use "../chips";
|
|
34
|
-
@use "../radio";
|
|
35
|
-
@use "../checkbox";
|
|
36
|
-
@use "../switch";
|
|
37
|
-
@use "../button";
|
|
38
|
-
@use "../slider";
|
|
39
|
-
@use "../loading-indicator";
|
|
40
|
-
@use "../select";
|
|
41
|
-
@use "../badge";
|
|
42
|
-
@use "../cards";
|
|
43
|
-
@use "../progressbar";
|
|
44
|
-
@use "../pagination";
|
|
45
|
-
@use "../snackbar";
|
|
46
|
-
@use "../modal";
|
|
47
|
-
@use "../segment";
|
|
48
|
-
@use "../popover";
|
|
49
|
-
@use "../timepicker";
|
|
50
|
-
@use "../navbar-menu";
|
|
51
|
-
@use "../scroll";
|
|
52
|
-
@use "../search-input";
|
|
53
|
-
@use "../stepper-horizontal";
|
|
54
|
-
@use "../stepper-vertical";
|
|
55
|
-
@use "../bottom-navigation";
|
|
56
|
-
@use "../accordion";
|
|
57
|
-
@use "../tree";
|
|
58
|
-
@use "../sidebar-overlay";
|
|
59
|
-
@use "../bottom-sheet";
|
|
1
|
+
/*!
|
|
2
|
+
* Festo UI - Web Essentials light (https://storybook.festo.design/)
|
|
3
|
+
* Copyright 2025 Festo SE & Co. KG
|
|
4
|
+
* Licensed under Apache-2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
@use "../rfs";
|
|
8
|
+
@use "../variables";
|
|
9
|
+
@use "../mixins";
|
|
10
|
+
@use "../fonts";
|
|
11
|
+
@use "../colors";
|
|
12
|
+
|
|
13
|
+
@use "../type";
|
|
14
|
+
@use "../root";
|
|
15
|
+
@use "../normalize";
|
|
16
|
+
@use "../utils";
|
|
17
|
+
|
|
18
|
+
@use "../misc";
|
|
19
|
+
@use "../display";
|
|
20
|
+
@use "spacing-light";
|
|
21
|
+
@use "border-light";
|
|
22
|
+
@use "flex-light";
|
|
23
|
+
|
|
24
|
+
@use "../layout";
|
|
25
|
+
@use "../toolbar";
|
|
26
|
+
@use "../table";
|
|
27
|
+
@use "../list";
|
|
28
|
+
@use "../navbar";
|
|
29
|
+
@use "../mobile-flyout";
|
|
30
|
+
@use "../breadcrumb";
|
|
31
|
+
@use "../text-link";
|
|
32
|
+
@use "../text-input";
|
|
33
|
+
@use "../chips";
|
|
34
|
+
@use "../radio";
|
|
35
|
+
@use "../checkbox";
|
|
36
|
+
@use "../switch";
|
|
37
|
+
@use "../button";
|
|
38
|
+
@use "../slider";
|
|
39
|
+
@use "../loading-indicator";
|
|
40
|
+
@use "../select";
|
|
41
|
+
@use "../badge";
|
|
42
|
+
@use "../cards";
|
|
43
|
+
@use "../progressbar";
|
|
44
|
+
@use "../pagination";
|
|
45
|
+
@use "../snackbar";
|
|
46
|
+
@use "../modal";
|
|
47
|
+
@use "../segment";
|
|
48
|
+
@use "../popover";
|
|
49
|
+
@use "../timepicker";
|
|
50
|
+
@use "../navbar-menu";
|
|
51
|
+
@use "../scroll";
|
|
52
|
+
@use "../search-input";
|
|
53
|
+
@use "../stepper-horizontal";
|
|
54
|
+
@use "../stepper-vertical";
|
|
55
|
+
@use "../bottom-navigation";
|
|
56
|
+
@use "../accordion";
|
|
57
|
+
@use "../tree";
|
|
58
|
+
@use "../sidebar-overlay";
|
|
59
|
+
@use "../bottom-sheet";
|
|
@@ -1,111 +1,111 @@
|
|
|
1
|
-
@use "../variables";
|
|
2
|
-
|
|
3
|
-
@use "sass:math";
|
|
4
|
-
|
|
5
|
-
.fwe-header-modul-container {
|
|
6
|
-
display: flex;
|
|
7
|
-
flex-direction: column;
|
|
8
|
-
padding-top: variables.$spacer-l;
|
|
9
|
-
padding-bottom: variables.$spacer-l;
|
|
10
|
-
|
|
11
|
-
.fwe-header-modul-content {
|
|
12
|
-
order: 2;
|
|
13
|
-
position: relative;
|
|
14
|
-
|
|
15
|
-
h1,
|
|
16
|
-
.fwe-h1 {
|
|
17
|
-
margin-bottom: 0;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
h3,
|
|
21
|
-
.fwe-h3 {
|
|
22
|
-
margin-top: 0;
|
|
23
|
-
margin-bottom: 16px;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
p {
|
|
27
|
-
font-size: variables.$font-size-xl;
|
|
28
|
-
line-height: 32px;
|
|
29
|
-
color: variables.$text-light;
|
|
30
|
-
margin: 0;
|
|
31
|
-
padding-bottom: 34px;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
&::after {
|
|
35
|
-
position: absolute;
|
|
36
|
-
bottom: 0;
|
|
37
|
-
right: 0;
|
|
38
|
-
content: "";
|
|
39
|
-
width: 28px;
|
|
40
|
-
height: 10px;
|
|
41
|
-
background-color: variables.$gray-400;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.fwe-header-modul-media {
|
|
46
|
-
min-height: 111px;
|
|
47
|
-
background-color: variables.$hero;
|
|
48
|
-
order: 1;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
@media only screen and (min-width: variables.$grid-breakpoint-xs) {
|
|
53
|
-
.fwe-header-modul-container {
|
|
54
|
-
.fwe-header-modul-media {
|
|
55
|
-
min-height: 132px;
|
|
56
|
-
}
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
@media only screen and (min-width: variables.$grid-breakpoint-sm) {
|
|
61
|
-
.fwe-header-modul-container {
|
|
62
|
-
.fwe-header-modul-content {
|
|
63
|
-
h1,
|
|
64
|
-
.fwe-h1 {
|
|
65
|
-
margin-bottom: 6px;
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
.fwe-header-modul-media {
|
|
69
|
-
min-height: 268px;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
@media only screen and (min-width: variables.$grid-breakpoint-md) {
|
|
75
|
-
.fwe-header-modul-container {
|
|
76
|
-
.fwe-header-modul-media {
|
|
77
|
-
min-height: 352px;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
@media only screen and (min-width: variables.$grid-breakpoint-lg) {
|
|
83
|
-
.fwe-header-modul-container {
|
|
84
|
-
flex-direction: row;
|
|
85
|
-
|
|
86
|
-
.fwe-header-modul-content {
|
|
87
|
-
order: 1;
|
|
88
|
-
width: math.div(100%, 2.4);
|
|
89
|
-
margin-right: variables.$spacer-m;
|
|
90
|
-
|
|
91
|
-
h1,
|
|
92
|
-
.fwe-h1 {
|
|
93
|
-
margin-top: 0;
|
|
94
|
-
}
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
.fwe-header-modul-media {
|
|
98
|
-
order: 2;
|
|
99
|
-
min-height: 293px;
|
|
100
|
-
flex: 1;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
@media only screen and (min-width: variables.$grid-breakpoint-xl) {
|
|
106
|
-
.fwe-header-modul-container {
|
|
107
|
-
.fwe-header-modul-media {
|
|
108
|
-
min-height: 400px;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
}
|
|
1
|
+
@use "../variables";
|
|
2
|
+
|
|
3
|
+
@use "sass:math";
|
|
4
|
+
|
|
5
|
+
.fwe-header-modul-container {
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-direction: column;
|
|
8
|
+
padding-top: variables.$spacer-l;
|
|
9
|
+
padding-bottom: variables.$spacer-l;
|
|
10
|
+
|
|
11
|
+
.fwe-header-modul-content {
|
|
12
|
+
order: 2;
|
|
13
|
+
position: relative;
|
|
14
|
+
|
|
15
|
+
h1,
|
|
16
|
+
.fwe-h1 {
|
|
17
|
+
margin-bottom: 0;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
h3,
|
|
21
|
+
.fwe-h3 {
|
|
22
|
+
margin-top: 0;
|
|
23
|
+
margin-bottom: 16px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
p {
|
|
27
|
+
font-size: variables.$font-size-xl;
|
|
28
|
+
line-height: 32px;
|
|
29
|
+
color: variables.$text-light;
|
|
30
|
+
margin: 0;
|
|
31
|
+
padding-bottom: 34px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
&::after {
|
|
35
|
+
position: absolute;
|
|
36
|
+
bottom: 0;
|
|
37
|
+
right: 0;
|
|
38
|
+
content: "";
|
|
39
|
+
width: 28px;
|
|
40
|
+
height: 10px;
|
|
41
|
+
background-color: variables.$gray-400;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.fwe-header-modul-media {
|
|
46
|
+
min-height: 111px;
|
|
47
|
+
background-color: variables.$hero;
|
|
48
|
+
order: 1;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
@media only screen and (min-width: variables.$grid-breakpoint-xs) {
|
|
53
|
+
.fwe-header-modul-container {
|
|
54
|
+
.fwe-header-modul-media {
|
|
55
|
+
min-height: 132px;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@media only screen and (min-width: variables.$grid-breakpoint-sm) {
|
|
61
|
+
.fwe-header-modul-container {
|
|
62
|
+
.fwe-header-modul-content {
|
|
63
|
+
h1,
|
|
64
|
+
.fwe-h1 {
|
|
65
|
+
margin-bottom: 6px;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
.fwe-header-modul-media {
|
|
69
|
+
min-height: 268px;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
@media only screen and (min-width: variables.$grid-breakpoint-md) {
|
|
75
|
+
.fwe-header-modul-container {
|
|
76
|
+
.fwe-header-modul-media {
|
|
77
|
+
min-height: 352px;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
@media only screen and (min-width: variables.$grid-breakpoint-lg) {
|
|
83
|
+
.fwe-header-modul-container {
|
|
84
|
+
flex-direction: row;
|
|
85
|
+
|
|
86
|
+
.fwe-header-modul-content {
|
|
87
|
+
order: 1;
|
|
88
|
+
width: math.div(100%, 2.4);
|
|
89
|
+
margin-right: variables.$spacer-m;
|
|
90
|
+
|
|
91
|
+
h1,
|
|
92
|
+
.fwe-h1 {
|
|
93
|
+
margin-top: 0;
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.fwe-header-modul-media {
|
|
98
|
+
order: 2;
|
|
99
|
+
min-height: 293px;
|
|
100
|
+
flex: 1;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
@media only screen and (min-width: variables.$grid-breakpoint-xl) {
|
|
106
|
+
.fwe-header-modul-container {
|
|
107
|
+
.fwe-header-modul-media {
|
|
108
|
+
min-height: 400px;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
@@ -1,96 +1,96 @@
|
|
|
1
|
-
@use "../variables";
|
|
2
|
-
|
|
3
|
-
.fwe-teaser-horbox {
|
|
4
|
-
display: flex;
|
|
5
|
-
background-color: var(--fwe-sucanul);
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.fwe-teaser-horbox .fwe-teaser-horbox-img {
|
|
9
|
-
background-color: var(--fwe-hero);
|
|
10
|
-
flex: 1;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.fwe-teaser-horbox .fwe-teaser-horbox-content {
|
|
14
|
-
flex: 1;
|
|
15
|
-
display: inline-flex;
|
|
16
|
-
flex-direction: column;
|
|
17
|
-
padding: 24px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.fwe-teaser-horbox .fwe-teaser-horbox-content .fwe-teaser-more {
|
|
21
|
-
align-self: flex-end;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.fwe-teaser-verbox {
|
|
25
|
-
display: inline-flex;
|
|
26
|
-
flex-direction: column;
|
|
27
|
-
background-color: var(--fwe-sucanul);
|
|
28
|
-
width: 100%;
|
|
29
|
-
height: 100%;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.fwe-teaser-verbox .fwe-teaser-verbox-img {
|
|
33
|
-
background-color: var(--fwe-hero);
|
|
34
|
-
height: calc(50% - 12px);
|
|
35
|
-
min-height: 186px;
|
|
36
|
-
width: 100%;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.fwe-teaser-verbox h2 {
|
|
40
|
-
padding-top: 24px;
|
|
41
|
-
padding-left: 24px;
|
|
42
|
-
padding-right: 24px;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.fwe-teaser-verbox p {
|
|
46
|
-
padding-left: 24px;
|
|
47
|
-
padding-right: 24px;
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.fwe-teaser-verbox .fwe-teaser-more {
|
|
51
|
-
align-self: flex-end;
|
|
52
|
-
margin-bottom: 24px;
|
|
53
|
-
margin-right: 24px;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.fwe-teaser-c12-container {
|
|
57
|
-
display: flex;
|
|
58
|
-
flex-direction: column;
|
|
59
|
-
|
|
60
|
-
.fwe-teaser-c12-content {
|
|
61
|
-
order: 2;
|
|
62
|
-
background-color: variables.$sucanul;
|
|
63
|
-
padding-top: 16px;
|
|
64
|
-
padding-bottom: 13px;
|
|
65
|
-
padding-left: 20px;
|
|
66
|
-
padding-right: 20px;
|
|
67
|
-
|
|
68
|
-
h3,
|
|
69
|
-
.fwe-h3 {
|
|
70
|
-
font-size: 12px;
|
|
71
|
-
line-height: 14px;
|
|
72
|
-
margin-bottom: 4px;
|
|
73
|
-
font-weight: variables.$font-weight-normal;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
h2,
|
|
77
|
-
.fwe-h2 {
|
|
78
|
-
font-size: 16px;
|
|
79
|
-
line-height: 24px;
|
|
80
|
-
font-weight: variables.$font-weight-bold;
|
|
81
|
-
margin-top: 0;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.fwe-teaser-c12-img {
|
|
86
|
-
order: 1;
|
|
87
|
-
background-color: variables.$hero;
|
|
88
|
-
min-height: 114px;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
@media only screen and (min-width: variables.$grid-breakpoint-md) {
|
|
93
|
-
.fwe-teaser-verbox h2 {
|
|
94
|
-
padding-top: 48px;
|
|
95
|
-
}
|
|
96
|
-
}
|
|
1
|
+
@use "../variables";
|
|
2
|
+
|
|
3
|
+
.fwe-teaser-horbox {
|
|
4
|
+
display: flex;
|
|
5
|
+
background-color: var(--fwe-sucanul);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.fwe-teaser-horbox .fwe-teaser-horbox-img {
|
|
9
|
+
background-color: var(--fwe-hero);
|
|
10
|
+
flex: 1;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.fwe-teaser-horbox .fwe-teaser-horbox-content {
|
|
14
|
+
flex: 1;
|
|
15
|
+
display: inline-flex;
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
padding: 24px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.fwe-teaser-horbox .fwe-teaser-horbox-content .fwe-teaser-more {
|
|
21
|
+
align-self: flex-end;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.fwe-teaser-verbox {
|
|
25
|
+
display: inline-flex;
|
|
26
|
+
flex-direction: column;
|
|
27
|
+
background-color: var(--fwe-sucanul);
|
|
28
|
+
width: 100%;
|
|
29
|
+
height: 100%;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.fwe-teaser-verbox .fwe-teaser-verbox-img {
|
|
33
|
+
background-color: var(--fwe-hero);
|
|
34
|
+
height: calc(50% - 12px);
|
|
35
|
+
min-height: 186px;
|
|
36
|
+
width: 100%;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.fwe-teaser-verbox h2 {
|
|
40
|
+
padding-top: 24px;
|
|
41
|
+
padding-left: 24px;
|
|
42
|
+
padding-right: 24px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.fwe-teaser-verbox p {
|
|
46
|
+
padding-left: 24px;
|
|
47
|
+
padding-right: 24px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.fwe-teaser-verbox .fwe-teaser-more {
|
|
51
|
+
align-self: flex-end;
|
|
52
|
+
margin-bottom: 24px;
|
|
53
|
+
margin-right: 24px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.fwe-teaser-c12-container {
|
|
57
|
+
display: flex;
|
|
58
|
+
flex-direction: column;
|
|
59
|
+
|
|
60
|
+
.fwe-teaser-c12-content {
|
|
61
|
+
order: 2;
|
|
62
|
+
background-color: variables.$sucanul;
|
|
63
|
+
padding-top: 16px;
|
|
64
|
+
padding-bottom: 13px;
|
|
65
|
+
padding-left: 20px;
|
|
66
|
+
padding-right: 20px;
|
|
67
|
+
|
|
68
|
+
h3,
|
|
69
|
+
.fwe-h3 {
|
|
70
|
+
font-size: 12px;
|
|
71
|
+
line-height: 14px;
|
|
72
|
+
margin-bottom: 4px;
|
|
73
|
+
font-weight: variables.$font-weight-normal;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
h2,
|
|
77
|
+
.fwe-h2 {
|
|
78
|
+
font-size: 16px;
|
|
79
|
+
line-height: 24px;
|
|
80
|
+
font-weight: variables.$font-weight-bold;
|
|
81
|
+
margin-top: 0;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.fwe-teaser-c12-img {
|
|
86
|
+
order: 1;
|
|
87
|
+
background-color: variables.$hero;
|
|
88
|
+
min-height: 114px;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
@media only screen and (min-width: variables.$grid-breakpoint-md) {
|
|
93
|
+
.fwe-teaser-verbox h2 {
|
|
94
|
+
padding-top: 48px;
|
|
95
|
+
}
|
|
96
|
+
}
|