@leuffen/themejs1 2.0.7 → 2.0.8

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.
Files changed (52) hide show
  1. package/docs/CNAME +1 -0
  2. package/docs/_config.yml +34 -0
  3. package/docs/_includes/navbar.html +16 -0
  4. package/docs/_layouts/blank.html +18 -0
  5. package/docs/_layouts/default.html +27 -0
  6. package/docs/assets/ani.svg +5 -0
  7. package/docs/assets/dist/index.js +16091 -0
  8. package/docs/assets/dist/index.js.map +1 -0
  9. package/docs/assets/dist/style.css +1095 -0
  10. package/docs/assets/dist/style.css.map +1 -0
  11. package/docs/assets/dist/style.js +28 -0
  12. package/docs/assets/dist/style.js.map +1 -0
  13. package/docs/assets/morphing.svg +5 -0
  14. package/docs/pages/html.html +11 -0
  15. package/docs/pages/index.md +39 -0
  16. package/elements/e-card-default/e-card-default.scss +18 -0
  17. package/elements/e-card-default/e-card-default.ts +13 -0
  18. package/elements/elements.scss +1 -0
  19. package/elements/elements.ts +1 -0
  20. package/package.json +5 -1
  21. package/sections/_defaults.scss +20 -0
  22. package/sections/cta-base/cta-base.scss +15 -0
  23. package/sections/cta-base/cta-base.ts +12 -0
  24. package/sections/cta-form/cta-form.scss +21 -0
  25. package/sections/cta-form/cta-form.ts +20 -0
  26. package/sections/footer-base/footer-base.scss +59 -0
  27. package/sections/footer-base/footer-base.ts +17 -0
  28. package/sections/hero-max/hero-max.scss +100 -0
  29. package/sections/hero-max/hero-max.ts +21 -0
  30. package/sections/hero-ribbon/hero-ribbon.scss +37 -0
  31. package/sections/hero-ribbon/hero-ribbon.ts +20 -0
  32. package/sections/hero-title-small/hero-title-small.scss +28 -0
  33. package/sections/hero-title-small/hero-title-small.ts +15 -0
  34. package/sections/navbar-blox/navbar-blox.scss +177 -0
  35. package/sections/navbar-blox/navbar-blox.ts +54 -0
  36. package/sections/sec-card-2col/sec-card-2col.scss +35 -0
  37. package/sections/sec-card-2col/sec-card-2col.ts +20 -0
  38. package/sections/sec-card-feature/sec-card-feature.scss +35 -0
  39. package/sections/sec-card-feature/sec-card-feature.ts +22 -0
  40. package/sections/sec-legal-content/sec-legal-content.scss +46 -0
  41. package/sections/sec-legal-content/sec-legal-content.ts +20 -0
  42. package/sections/sec-multi-card/sec-multi-card.scss +22 -0
  43. package/sections/sec-multi-card/sec-multi-card.ts +18 -0
  44. package/sections/sec-testimonial-ribbon/sec-testimonial-ribbon.scss +52 -0
  45. package/sections/sec-testimonial-ribbon/sec-testimonial-ribbon.ts +26 -0
  46. package/sections/sections.scss +14 -0
  47. package/sections/sections.ts +13 -0
  48. package/themes/_general/root-format.scss +108 -0
  49. package/themes/_vendor/font-bootstrap-icons.scss +4022 -0
  50. package/themes/_vendor/font-ubuntu.scss +38 -0
  51. package/themes/theme1/index.scss +119 -0
  52. package/templates/theme1/leistungen/_default.de.md +0 -68
@@ -0,0 +1,108 @@
1
+
2
+
3
+ .tjs__root-format {
4
+
5
+
6
+ color: var(--t-text-color);
7
+ background: var(--t-background);
8
+
9
+ // General Section padding
10
+ section:last-of-type > * {
11
+ padding-bottom: 0;
12
+ }
13
+
14
+ section h2 {
15
+ text-transform: uppercase;
16
+ // font-weight: bold;
17
+
18
+ margin: var(--t-paragraf-margin);
19
+ }
20
+
21
+ .tjs__section-text {
22
+ h2 {
23
+ text-transform: uppercase;
24
+ font-weight: bold;
25
+ font-size: 16px;
26
+ color: var(--t-text-color-primary) !important;
27
+ margin: var(--t-paragraf-margin);
28
+ }
29
+ blockquote > p {
30
+ font-size: 2.4em;
31
+ line-height: 1.2em;
32
+ color: var(--t-text-color) !important;
33
+ margin: var(--t-header-margin, 0 0 20px 0);
34
+ }
35
+
36
+ .table {
37
+ --bs-table-color: var(--t-text-color);
38
+ }
39
+
40
+ *:last-child {
41
+ margin-bottom: 0;
42
+ }
43
+ }
44
+
45
+
46
+
47
+ ul > li {
48
+ color: var(--t-text-color);
49
+ * {
50
+ color: var(--t-text-color);
51
+ }
52
+ }
53
+
54
+ h1,h2,h3,h4,h5,h6 {
55
+ font-weight: 400;
56
+ color: var(--t-text-color);
57
+ margin: var(--t-header-margin, 0 0 20px 0);
58
+ }
59
+
60
+ h1,h2 {
61
+ font-size: 2em;
62
+ line-height: 1.5em;
63
+ }
64
+ h3 {
65
+ font-size: 1.5em;
66
+ line-height: 1.1em;
67
+ }
68
+
69
+
70
+ table {
71
+ color: inherit;
72
+ &> tr {
73
+ color: inherit;
74
+ &>td {
75
+ color: inherit;
76
+ }
77
+ }
78
+ }
79
+
80
+
81
+
82
+ // Paragraph styling
83
+ p:empty {
84
+ margin: 0;
85
+ }
86
+
87
+ p {
88
+ margin: var(--t-paragraf-margin);
89
+ line-height: 1.1em;
90
+ }
91
+
92
+ p:first-child {
93
+ //color: var(--t-text-color-accent)
94
+ }
95
+
96
+ // Important: Remove margin from last paragraph in section
97
+ p:last-child,table:last-child {
98
+ margin-bottom: 0;
99
+ }
100
+
101
+
102
+ address {
103
+ p {
104
+ margin: 0;
105
+ }
106
+ }
107
+
108
+ }