Skip to content
Snippets Groups Projects
dumux_course_header.html 1.18 KiB
Newer Older
SPDX-FileCopyrightText: Copyright © DuMux-Course contributors, see AUTHORS.md in root folder
SPDX-License-Identifier: GPL-3.0-or-later
-->

<style>
Dennis Gläser's avatar
Dennis Gläser committed
@import url("https://fonts.googleapis.com/css?family=Nanum+Gothic");

:root {
    --font-family: "Nanum Gothic";
    --font-size: 0.8em;
}

body {
    background-color: white;
}

Dennis Gläser's avatar
Dennis Gläser committed
.reveal {
    font-family: var(--font-family), sans-serif;
    background-color: white;
    background-image: url("https://dumux.org/images/logo.svg");
    background-size: 15%;
    background-repeat: no-repeat;
    background-position: left 15px bottom 30px;
Dennis Gläser's avatar
Dennis Gläser committed
}

.reveal a {
    color: #34A2EC;
    font-family: var(--font-family), sans-serif;
}

.reveal p {
    font-size: var(--font-size);
}

.reveal pre {
    width: 100%;
    overflow: scroll;
}

.reveal pre code {
    max-height: 600px;
}

Dennis Gläser's avatar
Dennis Gläser committed
.reveal ul {
    font-size: var(--font-size);
}

.reveal li:not(:last-child) {
    margin-bottom: 8px;
}

.reveal .sourceCode {
    font-size: var(--font-size);
}

Dennis Gläser's avatar
Dennis Gläser committed
.reveal h1 {
    font-size: 2.5em;
    font-family: var(--font-family), sans-serif;
    text-shadow: 4px 4px 4px #aaa;
}

.reveal h2 {
    font-size: 1.75em;
    font-family: var(--font-family), sans-serif;
}
</style>