generated from Bioconductor/BuildABiocWorkshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
113 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ inst/doc | |
renv/ | ||
renv.lock | ||
.Rprofile | ||
docs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
/* | ||
Developed and maintained by Kevin Rue-Albrecht (@kevinrue) | ||
*/ | ||
|
||
/* | ||
#0092ac blue | ||
#00758a darker blue (active menu) | ||
#c4d931 green (on blue) | ||
#87b13f green (on white) | ||
*/ | ||
|
||
.headroom { | ||
background-color: #0092ac; | ||
} | ||
|
||
.navbar-default .navbar-nav>.active>a, | ||
.navbar-default .navbar-nav>.active>a:hover, | ||
.navbar-default .navbar-nav>.active>a:focus { | ||
color: #c4d931; | ||
background-color: #00758a; | ||
} | ||
|
||
.navbar-default .navbar-nav>.open>a, | ||
.navbar-default .navbar-nav>.open>a:hover, | ||
.navbar-default .navbar-nav>.open>a:focus { | ||
color: #c4d931; | ||
background-color: #00758a; | ||
} | ||
|
||
.dropdown-menu>.active>a, | ||
.dropdown-menu>.active>a:hover, | ||
.dropdown-menu>.active>a:focus { | ||
color: #c4d931; | ||
background-color: #00758a; | ||
} | ||
|
||
.navbar-default .navbar-nav>li>a:hover, | ||
.navbar-default .navbar-nav>li>a:focus { | ||
color: #c4d931; | ||
} | ||
|
||
.dropdown-menu>li>a:hover { | ||
color: #87b13f; | ||
background-color: #ffffff; | ||
} | ||
|
||
.navbar-default .navbar-nav>li>a { | ||
color: #ffffff; | ||
} | ||
|
||
h1 { | ||
color: #87b13f; | ||
} | ||
|
||
h2 { | ||
color: #87b13f; | ||
} | ||
|
||
h3 { | ||
color: #1a81c2; | ||
font-weight: bold; | ||
} | ||
|
||
.btn-copy-ex { | ||
color: #ffffff; | ||
background-color: #0092ac; | ||
border-color: #0092ac; | ||
} | ||
|
||
.btn-copy-ex:hover { | ||
color: #ffffff; | ||
background-color: #00758a; | ||
border-color: #00758a; | ||
} | ||
|
||
.btn-copy-ex:active:focus { | ||
color: #c4d931; | ||
background-color: #00758a; | ||
border-color: #0092ac; | ||
} | ||
|
||
p>.fa, | ||
p>.fas { | ||
color: #0092ac; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters