diff --git a/.gitignore b/.gitignore index 36a416f..e43b0f9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ .DS_Store -dist diff --git a/dist/slides.pdf b/dist/slides.pdf new file mode 100644 index 0000000..003f08c Binary files /dev/null and b/dist/slides.pdf differ diff --git a/dist/website/index.html b/dist/website/index.html new file mode 100644 index 0000000..6b75677 --- /dev/null +++ b/dist/website/index.html @@ -0,0 +1,70 @@ + + + + + + + Coding Art - Workshop für die KEW 2022 + + + + + +
+

Coding Art - Workshop für die KEW 2022

+
+

Ergebnisse des Workshops

+

Hier ist noch nichts… wenn ihr mögt, können wir im Anschluss an +den Workshop eure Ergebnisse hier “ausstellen”!

+ + +

Editor

+ +

Downloads

+ + + + + + diff --git a/dist/website/slides.pdf b/dist/website/slides.pdf new file mode 100644 index 0000000..003f08c Binary files /dev/null and b/dist/website/slides.pdf differ diff --git a/dist/website/style.css b/dist/website/style.css new file mode 100644 index 0000000..221233b --- /dev/null +++ b/dist/website/style.css @@ -0,0 +1,51 @@ +:root { + --link-color: #00755e; + --visited-color: #00755e; +} + +html { + font-family: sans-serif; + size: 12px; +} + +body { + width: 80%; + max-width: 1024px; + margin: auto; + background-color: #fdf6e3 !important; +} + +footer { + text-align: center; + margin-top: 4em; + padding-bottom: 1em; +} + + +a { + text-decoration: none; + font-weight: bold; + color: var(--link-color); +} + +h2 { + margin-top: 1.5em; +} + +h2:after { + content: ""; + background-image: url("https://ag-link.xyz/assets/img/connection.png"); + background-size: contain; + width: .75em; + height: .75em; + display: inline-block; + margin-left: .3em; +} + +li { + padding: 0.5em 0 0 0; +} + +li li { + padding: 0; +}