-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
722ec52
commit 63e6a5e
Showing
4 changed files
with
56 additions
and
2 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 |
---|---|---|
|
@@ -27,5 +27,5 @@ Get in touch [[email protected]](mailto:[email protected]) | |
Explore the [Rhinoverse](https://rhinoverse.dev) - a family of R packages built around [Rhino](https://appsilon.github.io/rhino/)! | ||
|
||
<a href = "https://appsilon.us16.list-manage.com/subscribe?u=c042d7c0dbf57c5c6f8b54598&id=870d5bfc05" target="_blank"> | ||
<img src="https://raw.githubusercontent.com/Appsilon/website-cdn/gh-pages/shiny_weekly_light.jpg" alt="Subscribe for Shiny tutorials, exclusive articles, R/Shiny community events, and more."/> | ||
<img id="footer-banner" src="https://raw.githubusercontent.com/Appsilon/website-cdn/gh-pages/shiny_weekly_light.jpg" alt="Subscribe for Shiny tutorials, exclusive articles, R/Shiny community events, and more."/> | ||
</a> |
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 |
---|---|---|
@@ -1 +1,4 @@ | ||
/.quarto/ | ||
/_site/ | ||
README.md | ||
/img/ |
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ website: | |
|
||
format: | ||
html: | ||
theme: cosmo | ||
theme: pulse | ||
css: styles.css | ||
toc: true | ||
|
||
|
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 |
---|---|---|
@@ -1 +1,52 @@ | ||
/* css styles */ | ||
:root { | ||
--primary-color: #009CFF; | ||
} | ||
|
||
.navbar { | ||
background-color: var(--primary-color) !important; | ||
} | ||
|
||
|
||
#navbar > ul.navbar-nav > li.nav-item > a { | ||
color: rgba(255, 255, 255, 0.55); | ||
} | ||
|
||
.navbar-dark .navbar-nav .active > .nav-link { | ||
background-color: var(--primary-color) !important; | ||
color: #fff !important; | ||
} | ||
|
||
.navbar-brand { | ||
color: #fff !important; | ||
} | ||
|
||
#navbar > ul.navbar-nav > li.nav-item a:hover { | ||
background-color: var(--primary-color) !important; | ||
} | ||
|
||
.navbar-dark input[type="search"] { | ||
background-color: #fff !important; | ||
color: #444 !important; | ||
} | ||
|
||
nav .text-muted { | ||
color: #d8d8d8 !important; | ||
} | ||
|
||
a { | ||
color: var(--primary-color); | ||
} | ||
|
||
a:hover { | ||
color: #2c2b2b; | ||
} | ||
|
||
button.btn.btn-primary.btn-copy-ex { | ||
background-color: var(--primary-color); | ||
border-color: var(--primary-color); | ||
} | ||
|
||
#footer-banner { | ||
max-width: 796px; | ||
} |