Skip to content

Commit

Permalink
Add slide skeleton.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dewi-Amaliah committed May 4, 2024
1 parent 92adaae commit fa26c1a
Show file tree
Hide file tree
Showing 130 changed files with 14,291 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
^\.github$
1 change: 1 addition & 0 deletions .github/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.html
50 changes: 50 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]

name: R-CMD-check

jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}

name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: false
matrix:
config:
- {os: macos-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'
Binary file added _assets/.DS_Store
Binary file not shown.
Binary file added _assets/images/.DS_Store
Binary file not shown.
Binary file added _assets/images/bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _assets/images/siena_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _assets/styles/.DS_Store
Binary file not shown.
21 changes: 21 additions & 0 deletions _assets/styles/additional-styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.reveal .slide-logo {
height: 100px !important;
width: 100px !important;
max-width: unset !important;
max-height: unset !important;
}

.title {
font-size: 60px !important;
color: white !important;
margin-right: 0px !important;
}

.quarto-title-author-name {
font-size: 40px;
color: white !important;
text-align: right;
margin-right: 0px !important;
}


32 changes: 32 additions & 0 deletions _assets/styles/slide-styles.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
/*-- scss:defaults --*/

section.slide h2 {
color: white;
background-color: #244367;
width: 200vw;
position: relative;
left: -20vw;
padding-left: 20vw;
padding-top: 5px;
padding-bottom: 5px;
}

#title-slide {
text-align: right;

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

.quarto-title-author { // optional, test it for yourself
padding-left: 0;
padding-right: 0;
width: 100%;
}
}
}

$presentation-title-slide-text-align: right;




Loading

0 comments on commit fa26c1a

Please sign in to comment.