Skip to content

Commit

Permalink
copy all files to deployed site
Browse files Browse the repository at this point in the history
  • Loading branch information
clauswilke committed Dec 24, 2024
1 parent d207064 commit 88593f4
Show file tree
Hide file tree
Showing 169 changed files with 24,339 additions and 0 deletions.
3 changes: 3 additions & 0 deletions _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ project:
- "*.qmd"
- "!slides/"
- "!worksheets/"
resources:
- "slides/"
- "worksheets/"

website:
title: "SDS 366"
Expand Down
104 changes: 104 additions & 0 deletions _site/slides/Wilke-theme.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
/* Reveal theme modifications (applied to default) for
* Wilke slide theme
*/

/*-- scss:defaults --*/

// Include theme-specific font
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed);
@import url(https://fonts.googleapis.com/css?family=Roboto+Mono);

// fonts
$font-family-sans-serif: 'Lato', Arial, sans-serif;
$font-family-monospace: 'Roboto Mono', 'Lucida Console', Monaco, Consolas, monospace;
$presentation-heading-font: 'Roboto Condensed', 'Arial Narrow OS', Arial, sans-serif;
$presentation-font-size-root: 36px;
$presentation-h1-font-size: 1.45em;
$presentation-h2-font-size: 1.45em;
$presentation-h3-font-size: 1.2em;
$presentation-h4-font-size: 1.2em;
$presentation-heading-font-weight: 400;
$code-block-font-size: 0.66em; /* equivalent to .tiny-font by default */

.large-font { font-size: 1.1em; }
.small-font { font-size: 0.86em; }
.tiny-font { font-size: 0.66em; }
.xtiny-font { font-size: 0.50em; }

.reveal h1 {
color: red;
text-align: center;
margin: 0 !important;
}

/* Make inline code slightly smaller; prevents vertical jumps
from slides with to slides without inline code.
Inline code is not a child of <pre>, hence the not selector.
*/

.reveal code:not(pre > code) {
font-size: 0.94em; line-height: 1.0;
}

/* Style to highlight text */
.highlight { font-weight: bold; color: #91322F; }

.center-text {
text-align: center;
}

/* classes to manipulate vertical spacing */
.move-up-half-em {
margin-top: -0.5em;
}

.move-up-1em {
margin-top: -1em;
}

.move-up-2em {
margin-top: -2em;
}

.move-up-3em {
margin-top: -3em;
}

.move-up-4em {
margin-top: -4em;
}

.move-up-5em {
margin-top: -5em;
}

.move-up-6em {
margin-top: -6em;
}

.move-down-1em {
margin-top: 1em;
}

.move-down-2em {
margin-top: 2em;
}

.move-down-3em {
margin-top: 3em;
}

.absolute-bottom-left {
position: absolute;
bottom: 0;
left: 0;
}

.absolute-bottom-right {
position: absolute;
bottom: 0;
right: 0;
}

Loading

0 comments on commit 88593f4

Please sign in to comment.