Skip to content

Commit

Permalink
Update theme (v0.3) (#105)
Browse files Browse the repository at this point in the history
* Update theme (v0.3)

* Use Lato for navbar font
  • Loading branch information
jarrodmillman authored Oct 31, 2023
1 parent 6b2c8c6 commit 341a1fa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 2 additions & 3 deletions assets/css/custom.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
img[alt*="socials"] {
height: 25px;
margin-right: 5px;
.navbar-logo-text {
font-family: "Lato";
}
5 changes: 4 additions & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build.environment]
PYTHON_VERSION = "3.8" # netlify currently only support 2.7 and 3.8
HUGO_VERSION = "0.119.0"
HUGO_VERSION = "0.120.1"
DART_SASS_VERSION = "1.69.4"
DART_SASS_URL = "https://github.com/sass/dart-sass/releases/download/"

Expand All @@ -18,3 +18,6 @@

[[plugins]]
package = "netlify-plugin-checklinks"

[plugins.inputs]
skipPatterns = ['https://fonts.gstatic.com', 'https://fonts.googleapis.com']
2 changes: 1 addition & 1 deletion themes/scientific-python-hugo-theme
Submodule scientific-python-hugo-theme updated 49 files
+68 −0 CHANGELOG.md
+1 −1 Makefile
+36 −99 assets/js/fresh.js
+89 −48 assets/js/shortcuts.js
+3 −258 assets/theme-css/bulma.css
+550 −256 assets/theme-css/code-highlight.css
+1 −65 assets/theme-css/content.css
+0 −20 assets/theme-css/dark-mode.css
+230 −0 assets/theme-css/fresh.css
+0 −9 assets/theme-css/fresh/core.scss
+0 −117 assets/theme-css/fresh/partials/_animations.scss
+0 −30 assets/theme-css/fresh/partials/_colors.scss
+0 −108 assets/theme-css/fresh/partials/_navbar.scss
+0 −178 assets/theme-css/fresh/partials/_utils.scss
+0 −4 assets/theme-css/keyfeatures.css
+0 −12 assets/theme-css/light-mode.css
+0 −66 assets/theme-css/notices.css
+1 −1 assets/theme-css/panel.css
+1 −1 assets/theme-css/posts.css
+182 −0 assets/theme-css/pst/base/_base.scss
+33 −0 assets/theme-css/pst/components/_breadcrumbs.scss
+71 −0 assets/theme-css/pst/content/_code.scss
+43 −0 assets/theme-css/pst/content/_toctree.scss
+6 −6 assets/theme-css/pst/pydata-sphinx-theme.scss
+16 −10 assets/theme-css/shortcuts.css
+57 −47 assets/theme-css/styles.css
+0 −8 assets/theme-css/vars.css
+2 −1 config.yaml
+2 −0 doc/config.yaml
+5 −0 doc/content/examples/_index.md
+3 −0 doc/content/examples/kitchen-sink/_index.md
+118 −0 doc/content/examples/kitchen-sink/admonitions.md
+73 −0 doc/content/examples/kitchen-sink/typography.md
+24 −2 doc/content/features.md
+11 −7 doc/netlify.toml
+4 −0 layouts/_default/_markup/render-codeblock-mermaid.html
+14 −0 layouts/_default/_markup/render-codeblock.html
+1 −0 layouts/_default/_markup/render-heading.html
+1 −5 layouts/_default/baseof.html
+10 −0 layouts/partials/breadcrumbs.html
+12 −9 layouts/partials/css.html
+1 −2 layouts/partials/javascript.html
+7 −9 layouts/partials/section/section.html
+16 −18 layouts/partials/single/content.html
+8 −0 layouts/shortcodes/admonition.html
+0 −24 layouts/shortcodes/mermaid.html
+0 −36 layouts/shortcodes/notice.html
+22 −0 layouts/shortcodes/toctree.html
+2 −2 requirements.txt

0 comments on commit 341a1fa

Please sign in to comment.