Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 87 additions & 0 deletions courses/TagTest/css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@

/* sensible styles */
.reveal section {
font-family: "Arial", sans-serif;
}

.reveal h1 {
color: #f92672;
}


.horizontal-container {
display: flex;
justify-content: space-between;
align-items: center;
gap: 2em;
}

.vertical-container {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
gap: 20pt;
}

.center-container {
display: flex;
justify-content: center;
align-items: center;
}

.left {
text-align: left;
}

.horizontal-container .text {
flex: 1;
}

.horizontal-container .image {
flex: 1;
max-width: 45%;
height: auto;
object-fit: contain;
}


.reveal .slides section.center-slide {
display: flex !important;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center !important;
gap: 1em;
}

.center-slide h1 {
margin: -1.7em 0 0 0;
}

.reveal pre.full-code,
.reveal pre.full-code code {
max-height: none !important;
overflow: visible !important;
white-space: pre !important;
}

.no-wrap {
white-space: nowrap;
}

.move-up-1 {
margin: -1em 0 0 0 !important;
}

.move-up-2 {
margin: -2em 0 0 0 !important;
}

.move-up-3 {
margin: -3em 0 0 0 !important;
}
.move-up-4 {
margin: -4em 0 0 0 !important;
}
14 changes: 14 additions & 0 deletions courses/TagTest/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Reveal + Vite</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div class="reveal">
<div class="slides"></div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
15 changes: 15 additions & 0 deletions courses/TagTest/oseda-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"title": "TagTest",
"author": "ReeseHatfield",
"tags": [
"Economics",
"Engineering",
"Geography",
"LanguageArts",
"LiberalArts",
"Politics"
],
"last_updated": "2026-02-10T00:27:25.937541569Z",
"color": "#008000",
"description": "A test of many tags, with a full deployment test using the deploy script and fork"
}
Loading
Loading