Skip to content

Commit

Permalink
chore: Webpage minimal styling.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubnowicki committed May 10, 2024
1 parent 722ec52 commit 63e6a5e
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>
3 changes: 3 additions & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
/.quarto/
/_site/
README.md
/img/
2 changes: 1 addition & 1 deletion docs/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ website:

format:
html:
theme: cosmo
theme: pulse
css: styles.css
toc: true

Expand Down
51 changes: 51 additions & 0 deletions docs/styles.css
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;
}

0 comments on commit 63e6a5e

Please sign in to comment.