1
0

Update presentation setup: move to root, change theme to gaia, fix image paths, adjust font size

This commit is contained in:
2025-09-14 19:37:39 +02:00
parent 93fb43c564
commit 2f33adc3d1
3 changed files with 17 additions and 11 deletions

View File

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@@ -1,6 +1,6 @@
--- ---
marp: true marp: true
theme: custom-theme theme: gaia
paginate: true paginate: true
backgroundColor: #fff backgroundColor: #fff
header: "Digital Independence Day - Reclaiming Our Digital Autonomy" header: "Digital Independence Day - Reclaiming Our Digital Autonomy"
@@ -8,6 +8,12 @@ footer: "Michał Czechowski"
title: Digital Independence Day - Reclaiming Our Digital Autonomy title: Digital Independence Day - Reclaiming Our Digital Autonomy
--- ---
<style>
section {
font-size: 1.7rem;
}
</style>
# Digital Independence Day # Digital Independence Day
## Reclaiming Our Digital Autonomy ## Reclaiming Our Digital Autonomy
@@ -15,7 +21,7 @@ title: Digital Independence Day - Reclaiming Our Digital Autonomy
University Lecturer & Open Source Enthusiast University Lecturer & Open Source Enthusiast
Stuttgart, Germany Stuttgart, Germany
*Science in the City Festival Malta September 17, 2025* *Science in the City Festival Malta September 17, 2025*
--- ---
@@ -34,14 +40,14 @@ Stuttgart, Germany
<style scoped> <style scoped>
ul { ul {
font-size: 0.7rem; font-size: 1.3rem;
} }
figure { figure {
background-position: top !important; background-position: top !important;
} }
</style> </style>
![bg left](oracle-lawsuit.png) ![bg left](assets/oracle-lawsuit.png)
- **2014**: Oracle aquires a marketing tech start-up based in Cupertino, California, for around **$400 million**. - **2014**: Oracle aquires a marketing tech start-up based in Cupertino, California, for around **$400 million**.
@@ -203,7 +209,7 @@ The **infosphere** - our combined digital and physical reality - means:
<style scoped> <style scoped>
table { table {
font-size: 0.6rem; font-size: 1.1rem;
} }
</style> </style>
@@ -228,7 +234,7 @@ table {
<style scoped> <style scoped>
table { table {
font-size: 0.6rem; font-size: 1.1rem;
} }
</style> </style>
@@ -297,7 +303,7 @@ In Floridi's infosphere, our digital choices are political choices.
<style scoped> <style scoped>
ul { ul {
font-size: 0.7rem; font-size: 1.2rem;
} }
</style> </style>
@@ -321,7 +327,7 @@ ul {
<style scoped> <style scoped>
ul { ul {
font-size: 0.7rem; font-size: 1.2rem;
} }
</style> </style>
@@ -343,7 +349,7 @@ ul {
<style scoped> <style scoped>
ul { ul {
font-size: 0.7rem; font-size: 1.2rem;
} }
</style> </style>

View File

@@ -4,8 +4,8 @@
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"build": "marp --input-dir slides --output build/", "build": "marp --input-dir . --output build/",
"dev": "marp --server slides/", "dev": "marp --server ./",
"watch": "marp --watch slides/", "watch": "marp --watch slides/",
"export:pdf": "marp slides/*.md --pdf --output build/", "export:pdf": "marp slides/*.md --pdf --output build/",
"export:html": "marp slides/*.md --html --output build/", "export:html": "marp slides/*.md --html --output build/",