diff --git a/.github/workflows/quarto-publish.yaml b/.github/workflows/quarto-publish.yaml index 7080251..5376950 100644 --- a/.github/workflows/quarto-publish.yaml +++ b/.github/workflows/quarto-publish.yaml @@ -3,7 +3,7 @@ name: Render and Publish # you need these permissions to publish to GitHub pages -permissions: +permissions: contents: write pages: write diff --git a/docs/index.qmd b/docs/index.qmd index 03ea19e..493f08b 100644 --- a/docs/index.qmd +++ b/docs/index.qmd @@ -24,6 +24,14 @@ lock file via: pixi install ``` +## Introductory presentation + +::: {.responsive-iframe} + + + +::: + ## License Content in this repository is licensed under the [MIT License](LICENSE.txt). \ No newline at end of file diff --git a/docs/styles.css b/docs/styles.css index 60ef696..af38f9c 100644 --- a/docs/styles.css +++ b/docs/styles.css @@ -2,17 +2,32 @@ .sidebar-logo { max-width: 150px; - } +} - .sidebar-title { - font-size: 1.7rem; - } +.sidebar-title { + font-size: 1.7rem; +} - .platform-table td { - vertical-align: middle; - } +.platform-table td { + vertical-align: middle; +} - .platform-table td > div.sourceCode { - margin-top: 0.3rem; - margin-bottom: 0.3rem; - } +.platform-table td > div.sourceCode { + margin-top: 0.3rem; + margin-bottom: 0.3rem; +} + +.responsive-iframe { + position: relative; + padding-bottom: 56.25%; /* 16:9 aspect ratio */ + height: 0; + overflow: hidden; +} + +.responsive-iframe iframe { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +}