@@ -108,9 +108,11 @@
+.dd-symbol::after{
+ content:'❯';
+ font-size:0.95rem;
+ position:absolute;
+ top:0px;
+ right:-7px;
+ animation-name: flim;
+ animation-duration: 2s;
+ animation-delay: 1s;
+ animation-iteration-count: infinite;
+}
+
+ @keyframes flim{
+ 0% {opacity: 0;}
+ 16.66% {opacity: 0.25;}
+ 33.32% {opacity: 0.5;}
+ 49.98% {opacity: 0.75;}
+ 66.64% {opacity: 0.5;}
+ 83.33% {opacity: 0.25;}
+ 100% {opacity: 0;}
+}
+
+
+
+
\ No newline at end of file
diff --git a/src/components/design/sidebars/left/SidebarLeft.astro b/src/components/design/sidebars/left/SidebarLeft.astro
index 2957559c..7b28b87d 100644
--- a/src/components/design/sidebars/left/SidebarLeft.astro
+++ b/src/components/design/sidebars/left/SidebarLeft.astro
@@ -5,6 +5,8 @@ import Preistabelle from "#sidebarCards/card-price-info.svelte";
---
\ No newline at end of file
diff --git a/src/components/design/sidebars/right/SidebarRight.astro b/src/components/design/sidebars/right/SidebarRight.astro
index 9e67fbb6..953812c3 100644
--- a/src/components/design/sidebars/right/SidebarRight.astro
+++ b/src/components/design/sidebars/right/SidebarRight.astro
@@ -11,7 +11,6 @@ import BAGpromo from "#sidebarCards/card-BA-G-promo.svelte";
-
diff --git a/src/layouts/AusweisLayout.astro b/src/layouts/AusweisLayout.astro
index 8845b62a..3464572d 100644
--- a/src/layouts/AusweisLayout.astro
+++ b/src/layouts/AusweisLayout.astro
@@ -1,9 +1,10 @@
---
-import "#style/global.css"
+import "../style/global.css";
import "../../svelte-dialogs.config"
-import Footer from '#components/design/footer/Footer.astro';
-import Header from '#components/design/header/Header.astro';
-import SidebarLeft from '#components/design/sidebars/left/SidebarLeft.astro';
+import Header from "#header/Header.astro";
+import Footer from "#footer/Footer.astro";
+import SidebarLeft from "#sidebarLeft/SidebarLeft.astro";
+import { NotificationWrapper } from "@ibcornelsen/ui";
export interface Props {
title: string;
@@ -11,38 +12,14 @@ export interface Props {
const { title } = Astro.props;
-const schema = JSON.stringify({
- '@context': 'http://schema.org',
- '@type': 'Corporation',
- name: 'IB Cornelsen',
- alternateName: 'online-energieausweis.org',
- url: 'https://online-energieausweis.org',
- logo: 'https://online-energieausweis.org/ib-cornelsen.png',
- address: {
- '@type': 'PostalAddress',
- streetAddress: 'Katendeich 5A',
- addressLocality: 'Hamburg',
- postalCode: '21035',
- addressCountry: 'Deutschland',
- email: 'info@online-energieausweis.org',
- },
- contactPoint: {
- '@type': 'ContactPoint',
- telephone: '+49-040-209339850',
- faxNumber: '+49-040-209339859',
- contactType: 'customer service',
- areaServed: 'DE',
- availableLanguage: 'German',
- },
-});
+
---
-
+
-
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
@@ -186,15 +179,6 @@ article {
); */
}
- .box {
- @apply border-2 border-[#ffcc03] p-4 rounded-lg bg-base-200;
- /* background: linear-gradient(
- 135deg,
- rgba(252, 234, 187, 1) 0%,
- rgba(253, 235, 189, 1) 52%,
- rgba(251, 223, 147, 1) 100%
- ); */
- }
.headline {
@apply text-lg;
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index 90a974a1..c050f1e3 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -33,13 +33,16 @@ const { title } = Astro.props;
+
-
diff --git a/src/pages/agb.mdx b/src/pages/agb.mdx
index 589a1f22..bbc15847 100644
--- a/src/pages/agb.mdx
+++ b/src/pages/agb.mdx
@@ -1,6 +1,6 @@
---
-layout; ../layouts/Layout.astro
-title: AGB - online-energieausweis.org
+layout: ../layouts/Layout.astro
+title: "Allgemeine Geschäftsbedingungen"
---
# Allgemeine Geschäftsbedingungen
diff --git a/src/pages/energieausweis-erstellen/bedarfsausweis-wohnen/index.astro b/src/pages/energieausweis-erstellen/bedarfsausweis-wohngebaeude/index.astro
similarity index 100%
rename from src/pages/energieausweis-erstellen/bedarfsausweis-wohnen/index.astro
rename to src/pages/energieausweis-erstellen/bedarfsausweis-wohngebaeude/index.astro
diff --git a/src/pages/energieausweis-erstellen/verbrauchsausweis-wohnen/index.astro b/src/pages/energieausweis-erstellen/verbrauchsausweis-wohngebaeude/index.astro
similarity index 100%
rename from src/pages/energieausweis-erstellen/verbrauchsausweis-wohnen/index.astro
rename to src/pages/energieausweis-erstellen/verbrauchsausweis-wohngebaeude/index.astro
diff --git a/src/pages/kontakt.astro b/src/pages/kontakt.astro
index e69de29b..94b366cc 100644
--- a/src/pages/kontakt.astro
+++ b/src/pages/kontakt.astro
@@ -0,0 +1,14 @@
+---
+import Layout from "#layouts/Layout.astro";
+
+
+---
+
+
+ Kontakt - Online Energieausweis
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/style/global.css b/src/style/global.css
index 8d815820..54b7dc7e 100644
--- a/src/style/global.css
+++ b/src/style/global.css
@@ -72,7 +72,9 @@ article {
/*BOXES*/
.box{
@apply rounded-none
- xl:rounded-xl lg:shadow-box lg:ring-1 lg:ring-gray-300
+ lg:rounded-lg lg:shadow-box lg:ring-1 lg:ring-gray-300
+ xl:rounded-xl
+
}
.card{
@@ -91,8 +93,14 @@ article {
.nav-element:not(:first-child){@apply border-gray-200 border-t-[1px]}
+.no-dropdown, .no-dropdown:hover{@apply text-black no-underline}
+
.nav-element:hover > .nav-element-child{
- @apply !bg-primary !text-white cursor-pointer
+ @apply !bg-primary !text-white cursor-pointer
+}
+
+.nav-element:hover > .nav-element-child .no-dropdown{
+ @apply !bg-primary !text-white cursor-pointer
}
.nav-element:hover > .dropdown-content{
diff --git a/tailwind.config.cjs b/tailwind.config.cjs
index b0d3415c..490949fe 100644
--- a/tailwind.config.cjs
+++ b/tailwind.config.cjs
@@ -2,7 +2,9 @@
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}", "./node_modules/@ibcornelsen/ui/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
darkMode: "class",
- plugins: [require("daisyui"), require("@tailwindcss/typography")],
+ plugins:
+ [require("daisyui"),
+ require("@tailwindcss/typography")],
important: true,
theme: {
extend: {
@@ -17,6 +19,21 @@ module.exports = {
},
boxShadow: {
'box': '3px 3px 6px rgba(0, 0, 0, 0.1)',
+ },
+
+ gridTemplateColumns: {
+ // Simple 16 column grid
+ //'standard-sm': 'minmax(350px, 2fr) 6fr minmax(350px, 2fr)',
+ //'standard-md': 'minmax(350px, 2fr) 6fr minmax(350px, 2fr)',
+ //'standard-lg': 'minmax(350px, 2fr) 6fr minmax(350px, 2fr)',
+ //'standard-xl': 'minmax(350px, 2fr) 6fr minmax(350px, 2fr)',
+ //'standard-2xl': 'minmax(300px, 300px) 6fr minmax(300px, 300px)',
+ //'formular-sm': 'minmax(350px, max-content) 8fr',
+ //'formular-md': 'minmax(350px, max-content) 8fr',
+ //'formular-lg': 'minmax(350px, max-content) 8fr',
+ //'formular-xl': 'minmax(350px, max-content) 8fr',
+ //'formular-2xl': 'minmax(350px, max-content) 8fr',
+
}
},
},
diff --git a/tsconfig.json b/tsconfig.json
index a595c637..748fb6e2 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -28,13 +28,15 @@
"#client/*": ["./src/client/*"],
"#server/*": ["./src/server/*"],
"#style/*": ["./src/style/*"],
-
+
"#footer/*": ["./src/components/design/footer/*"],
"#header/*": ["./src/components/design/header/*"],
"#content/*": ["./src/components/design/content/*"],
"#sidebarCards/*": ["./src/components/design/sidebars/cards/*"],
"#sidebarLeft/*": ["./src/components/design/sidebars/left/*"],
"#sidebarRight/*": ["./src/components/design/sidebars/right/*"],
+
+ "#ausweise/*": ["./src/pages/energieausweis-erstellen/*"],
},
"types": ["cypress", "cypress-file-upload", "bun-types", "svelte"]
}