Skip to content

Commit 3bd8c09

Browse files
committed
add pkgdown css
1 parent 74e4eec commit 3bd8c09

File tree

3 files changed

+113
-14
lines changed

3 files changed

+113
-14
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ inst/doc
55
renv/
66
renv.lock
77
.Rprofile
8+
docs/

pkgdown/extra.css

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
/*
2+
Developed and maintained by Kevin Rue-Albrecht (@kevinrue)
3+
*/
4+
5+
/*
6+
#0092ac blue
7+
#00758a darker blue (active menu)
8+
#c4d931 green (on blue)
9+
#87b13f green (on white)
10+
*/
11+
12+
.headroom {
13+
background-color: #0092ac;
14+
}
15+
16+
.navbar-default .navbar-nav>.active>a,
17+
.navbar-default .navbar-nav>.active>a:hover,
18+
.navbar-default .navbar-nav>.active>a:focus {
19+
color: #c4d931;
20+
background-color: #00758a;
21+
}
22+
23+
.navbar-default .navbar-nav>.open>a,
24+
.navbar-default .navbar-nav>.open>a:hover,
25+
.navbar-default .navbar-nav>.open>a:focus {
26+
color: #c4d931;
27+
background-color: #00758a;
28+
}
29+
30+
.dropdown-menu>.active>a,
31+
.dropdown-menu>.active>a:hover,
32+
.dropdown-menu>.active>a:focus {
33+
color: #c4d931;
34+
background-color: #00758a;
35+
}
36+
37+
.navbar-default .navbar-nav>li>a:hover,
38+
.navbar-default .navbar-nav>li>a:focus {
39+
color: #c4d931;
40+
}
41+
42+
.dropdown-menu>li>a:hover {
43+
color: #87b13f;
44+
background-color: #ffffff;
45+
}
46+
47+
.navbar-default .navbar-nav>li>a {
48+
color: #ffffff;
49+
}
50+
51+
h1 {
52+
color: #87b13f;
53+
}
54+
55+
h2 {
56+
color: #87b13f;
57+
}
58+
59+
h3 {
60+
color: #1a81c2;
61+
font-weight: bold;
62+
}
63+
64+
.btn-copy-ex {
65+
color: #ffffff;
66+
background-color: #0092ac;
67+
border-color: #0092ac;
68+
}
69+
70+
.btn-copy-ex:hover {
71+
color: #ffffff;
72+
background-color: #00758a;
73+
border-color: #00758a;
74+
}
75+
76+
.btn-copy-ex:active:focus {
77+
color: #c4d931;
78+
background-color: #00758a;
79+
border-color: #0092ac;
80+
}
81+
82+
p>.fa,
83+
p>.fas {
84+
color: #0092ac;
85+
}

vignettes/workshop_isee_extension.Rmd

Lines changed: 27 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: "Writing an iSEE extension"
2+
title: "Writing iSEE extensions"
33
author: Kevin Rue-Albrecht^[kevinrue67@gmail.com],Federico Marini^[marinif@uni-mainz.de], Charlotte Soneson^[charlottesoneson@gmail.com]
44
output: rmarkdown::html_vignette
55
vignette: >
6-
%\VignetteIndexEntry{Writing an iSEE extension}
6+
%\VignetteIndexEntry{Writing iSEE extensions}
77
%\VignetteEngine{knitr::rmarkdown}
88
%\VignetteEncoding{UTF-8}
99
---
@@ -16,7 +16,7 @@ knitr::opts_chunk$set(
1616
)
1717
```
1818

19-
# Writing an iSEE extension
19+
# Writing iSEE extensions
2020

2121
Authors:
2222
Kevin Rue-Albrecht^[University of Oxford],
@@ -36,20 +36,33 @@ packages.
3636

3737
### Pre-requisites
3838

39+
Workshop prerequisites:
40+
3941
* Familiarity with the SummarizedExperiment class.
4042
* Familiarity with the shiny package
4143

42-
List any workshop prerequisites, for example:
43-
44-
* Basic knowledge of R syntax
45-
* Familiarity with the GenomicRanges class
46-
* Familiarity with xyz vignette (provide link)
47-
48-
List relevant background reading for the workshop, including any
49-
theoretical background you expect students to have.
50-
51-
* List any textbooks, papers, or other reading that students should be
52-
familiar with. Include direct links where possible.
44+
Relevant background reading:
45+
46+
* EuroBioC2023:
47+
(
48+
[workshop](https://isee.github.io/iSEEDemoEuroBioC2023/articles/iSEEdemo.html)
49+
)
50+
* EuroBioC2020:
51+
(
52+
[workshop](https://isee.github.io/iSEEWorkshopEuroBioc2020/),
53+
[slides](https://isee.github.io/iSEEWorkshopEuroBioc2020Slides/)
54+
)
55+
* BioC2020:
56+
(
57+
[workshop](https://isee.github.io/iSEEWorkshop2020/),
58+
[slides](https://isee.github.io/iSEEWorkshop2020Slides/)
59+
)
60+
* BioC2019
61+
(
62+
[workshop](https://isee.github.io/iSEEWorkshop2019/),
63+
[slides](https://isee.github.io/iSEEWorkshop2019Slides/)
64+
)
65+
* Rue-Albrecht K, Marini F, Soneson C and Lun ATL. iSEE: Interactive SummarizedExperiment Explorer [version 1; peer review: 3 approved]. F1000Research 2018, 7:741 (https://doi.org/10.12688/f1000research.14966.1)
5366

5467
### Participation
5568

0 commit comments

Comments
 (0)