Files
ExplainableAI/slides/custom.css

68 lines
1.1 KiB
CSS

/* 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');