diff --git a/src/pages/simulateur.md b/src/pages/simulateur.md new file mode 100644 index 0000000..168cc78 --- /dev/null +++ b/src/pages/simulateur.md @@ -0,0 +1,14 @@ +--- +title: 'Simulateur de revenus' +permalink: '/simulateur/index.html' +eleventyExcludeFromCollections: true +--- + +
+ +
\ No newline at end of file diff --git a/src/scss/components/_iframe.scss b/src/scss/components/_iframe.scss new file mode 100644 index 0000000..7f26b64 --- /dev/null +++ b/src/scss/components/_iframe.scss @@ -0,0 +1,17 @@ +.iframe-container { + width: 100%; + height: 100%; + position: relative; + padding-top: 56.25%; + + iframe { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + width: 100%; + height: 100%; + border: 0; + } +} diff --git a/src/scss/global.scss b/src/scss/global.scss index f20dc24..280a767 100644 --- a/src/scss/global.scss +++ b/src/scss/global.scss @@ -17,6 +17,7 @@ @use 'components/gouvernance'; @use 'components/heading-permalink'; @use 'components/intro'; +@use 'components/iframe'; @use 'components/nav'; @use 'components/posts'; @use 'components/post';