Skip to content

Commit

Permalink
Add skeleton - slides
Browse files Browse the repository at this point in the history
  • Loading branch information
flor14 committed May 10, 2024
1 parent eb62c0d commit c91ae03
Show file tree
Hide file tree
Showing 107 changed files with 14,478 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
img/
_extensions
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,18 @@
# geocovid-slides
Slides to introduce the project GeoCovid
# GeoCovid Buenos Aires - slides

In the case you want to compile this repository,
first clone it to your computer.

```bash

```

Then, install R, RStudio (optional) and Quarto.
Also, install the filter `roughnotation`

```bash
quarto install extension EmilHvitfeldt/quarto-roughnotation
```

Finally, render the slides.

93 changes: 93 additions & 0 deletions custom.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
/*-- scss:defaults --*/


// fonts

$font-family-sans-serif: 'EB Garamond', serif !default;
$font-family-monospace: "Fira Mono", monospace !default;
$presentation-title-slide-text-align: "left";
$code-block-font-size: 0.5em;
$code-color: #5f5f5f;
$presentation-heading-font-weight: 700 !default;
$presentation-h1-font-size: 1.5em !default;
$presentation-h2-font-size: 1.4em !default;
$presentation-h3-font-size: 1.2em !default;
$presentation-h4-font-size: 1em !default;
$presentation-font-smaller: 0.85em !default;
$presentation-line-height: 1.7em !default;


// colors
$code-color: #26532B;
$body-bg: #FFFFFF !default;
$body-color: #231123 !default;
$link-color: #68737A !default;
$selection-bg: #FAA381 !default;

// headings
$presentation-heading-font: 'Albert Sans', sans-serif !default;
$presentation-heading-color: #399E5A !default;

/*-- scss:rules --*/

@import url(https://fonts.googleapis.com/css?family=Fira+Mono:400,700);
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




.reveal a {
line-height: 1.5em;
}

.sectionhead {
font-size: 1em;
text-align: center;
color: #FFF;
font-family: $presentation-heading-font;
background-color: #67032F;
margin: 1px;
padding: 2px 2px 2px 2px;
width: 300px;
border-left: 10px solid;
}

.reveal .footer {
font-size: 0.5em !important;
}

#vcenter {
vertical-align: middle !important;
}

.small-text {
font-size: 25px;
}

.big-text {
font-size: 90px;
}

.big-text-long {
font-size: 70px;
}


#title-slide {
text-align: left;

.quarto-title-authors {
justify-content: left;

.quarto-title-author {
padding-left: 350px;
padding-right: 0;
width: 100%;
}
}
}

.text-c {
text-align: center;
}
13 changes: 13 additions & 0 deletions geocovid-slides.Rproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Version: 1.0

RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: pdfLaTeX
Loading

0 comments on commit c91ae03

Please sign in to comment.