intial commit (forked from private repo)

This commit is contained in:
2025-04-11 11:08:28 +02:00
commit 3bdd37f46c
154 changed files with 45901 additions and 0 deletions

68
slides/custom.css Normal file
View File

@ -0,0 +1,68 @@
/* Benutzerdefinierte Schriftart für die gesamte Präsentation */
.reveal {
font-family: 'Roboto', sans-serif;
}
/* Überschriften */
.reveal h1,
.reveal h2
{
padding-bottom: 20px;
font-size: 58px;
}
.reveal h3
{
font-size: 38px;
text-align: left;
}
.reveal h4
{
text-align: center;
}
.reveal h5
{
font-size: 30px;
}
.reveal h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 600;
}
/* Text */
.reveal p {
font-size: 24px;
}
/* Tabellen */
.reveal li {
font-size: 26px;
}
/* Code-Blöcke */
.reveal .sourceCode {
font-size: 17px;
color: #888;
}
/* Tabellen */
table {
border-collapse: collapse;
border: 1px solid black;
}
th {
background-color: #63bdc2;
border: 1px solid black;
font-size: 22px;
}
td {
border: 1px solid black;
font-size: 15px;
}
/* Importiere die Schriftarten von Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&family=Montserrat:wght@500;600&family=Fira+Code&display=swap');