Initialer Commit
This commit is contained in:
38
output/html/templates/footer.html
Normal file
38
output/html/templates/footer.html
Normal file
@@ -0,0 +1,38 @@
|
||||
|
||||
<script src="dist/reveal.js"></script>
|
||||
<script src="plugin/notes/notes.js"></script>
|
||||
<script src="plugin/markdown/markdown.js"></script>
|
||||
<script src="plugin/highlight/highlight.js"></script>
|
||||
<script src="plugin/menu/menu.js"></script>
|
||||
<script>
|
||||
// More info about initialization & config:
|
||||
// - https://revealjs.com/initialization/
|
||||
// - https://revealjs.com/config/
|
||||
Reveal.initialize({
|
||||
|
||||
hash: true,
|
||||
progress: false,
|
||||
jumpToSlide: true,
|
||||
center: true,
|
||||
touch: true,
|
||||
help: true,
|
||||
button: true,
|
||||
openSlideNumber: true,
|
||||
|
||||
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes, RevealMenu, RevealCustomControls ],
|
||||
|
||||
customcontrols: {
|
||||
controls: [
|
||||
{ icon: '<i class="fa fa-home"></i>',
|
||||
title: 'zur Startfolie',
|
||||
action: 'Reveal.slide(0) ;'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
menu: { width: 'normal', numbers: false, titleSelector: 'h1', hideMissingTitles: true }
|
||||
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
23
output/html/templates/header.html
Normal file
23
output/html/templates/header.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
|
||||
<title>Zeugnisfolien</title>
|
||||
|
||||
<link rel="stylesheet" href="dist/reset.css">
|
||||
<link rel="stylesheet" href="dist/reveal.css">
|
||||
<link rel="stylesheet" href="dist/theme/white.css">
|
||||
<link rel="stylesheet" href="templates/mystyle.css">
|
||||
|
||||
<!-- Theme used for syntax highlighted code -->
|
||||
<link rel="stylesheet" href="plugin/highlight/monokai.css">
|
||||
|
||||
<!-- Custom controls plugin -->
|
||||
<script src="plugin/customcontrols/plugin.js"></script>
|
||||
<link rel="stylesheet" href="plugin/customcontrols/style.css">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
87
output/html/templates/mystyle.css
Normal file
87
output/html/templates/mystyle.css
Normal file
@@ -0,0 +1,87 @@
|
||||
.reveal table {
|
||||
padding-left: 25px !important;
|
||||
padding-right: 25px !important;
|
||||
table-layout: fixed !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
.reveal table, .reveal tr, .reveal th, .reveal td {
|
||||
border: 1px solid lightgrey !important;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
h1, h2 {
|
||||
text-transform: none !important;
|
||||
}
|
||||
|
||||
h3 {
|
||||
text-transform: none !important;
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
|
||||
p.time {
|
||||
text-align: center !important;
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
th, td {
|
||||
text-align: center !important;
|
||||
padding-left: 5px !important;
|
||||
padding-right: 5px !important;
|
||||
padding-top: 10px !important;
|
||||
padding-bottom: 10px !important;
|
||||
width: 10%;
|
||||
line-height: 70%;
|
||||
overflow: hidden;
|
||||
}
|
||||
th, td {
|
||||
font-size: 90%;
|
||||
}
|
||||
th.halbjahr, td.halbjahr {
|
||||
width: 15% !important;
|
||||
}
|
||||
|
||||
td.top {
|
||||
background-color: lightgreen;
|
||||
}
|
||||
td.def {
|
||||
background-color: salmon;
|
||||
}
|
||||
td.nw {
|
||||
background-color: orange;
|
||||
}
|
||||
|
||||
.lehrer {
|
||||
font-size: 50%;
|
||||
}
|
||||
.kursart {
|
||||
font-size: 50%;
|
||||
}
|
||||
.epoche {
|
||||
font-size: 40%;
|
||||
}
|
||||
.jahrgang {
|
||||
font-size: 90% !important;
|
||||
}
|
||||
.schuljahr {
|
||||
font-size: 50% !important;
|
||||
}
|
||||
|
||||
.lk {
|
||||
background-color: darkgrey;
|
||||
}
|
||||
.ab {
|
||||
background-color: lightgrey;
|
||||
}
|
||||
|
||||
p.fehl, p.versetzung {
|
||||
font-size: 70%;
|
||||
}
|
||||
p.hinweis {
|
||||
font-size: 70%;
|
||||
font-style: italic;
|
||||
}
|
||||
.ue, .nv {
|
||||
color: red;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user