-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: japborst <[email protected]> Co-authored-by: Gijs de Jong <[email protected]>
- Loading branch information
1 parent
8d017c4
commit 601b4ac
Showing
5 changed files
with
53 additions
and
19 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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
ruby File.read(".ruby-version").strip | ||
|
||
source "https://rubygems.org" | ||
gem "html-proofer", "4.4.1" | ||
gem "jekyll", "4.2.2" | ||
gem "jekyll-sitemap", "1.4" | ||
gem "just-the-docs", "0.4.0.rc2" | ||
gem "webrick", "1.7" | ||
gem "github-pages", "~> 227" | ||
gem "rake", "~> 13.0" # Required for "just-the-docs" theme | ||
gem "webrick", "~> 1.7" |
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
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,18 +1,17 @@ | ||
<!-- Generated using https://realfavicongenerator.net. --> | ||
<!-- Generated from https://realfavicongenerator.net/ --> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon-16x16.png"> | ||
<link rel="manifest" href="/assets/images/site.webmanifest"> | ||
<link rel="mask-icon" href="/assets/images/safari-pinned-tab.svg" color="#5bbad5"> | ||
<link rel="shortcut icon" href="/favicon.ico"> | ||
<link rel="shortcut icon" href="/assets/images/favicon.ico"> | ||
<meta name="msapplication-TileColor" content="#da532c"> | ||
<meta name="msapplication-config" content="/assets/images/browserconfig.xml"> | ||
<meta name="theme-color" content="#ffffff"> | ||
|
||
<!-- XXX: The theme does not natively support both light and dark mode. Drop | ||
this section once https://github.com/just-the-docs/just-the-docs/issues/234 is | ||
resolved. --> | ||
<link rel="stylesheet" href="{{ '/assets/css/just-the-docs-eps-light.css' | relative_url }}" | ||
media="(prefers-color-scheme: light)"> | ||
<link rel="stylesheet" href="{{ '/assets/css/just-the-docs-eps-dark.css' | relative_url }}" | ||
media="(prefers-color-scheme: dark)"> | ||
<!-- Support light and dark mode, as it's not natively supported. | ||
See: https://github.com/just-the-docs/just-the-docs/issues/234 --> | ||
<link rel="stylesheet" href="{{ '/assets/css/just-the-docs-light.css' | relative_url }}" | ||
media="(prefers-color-scheme: light)"> | ||
<link rel="stylesheet" href="{{ '/assets/css/just-the-docs-dark.css' | relative_url }}" | ||
media="(prefers-color-scheme: dark)"> |
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,24 @@ | ||
// We should override $nav-width(-md), however this breaks code highlighting and other styles. | ||
// This appears an issue wrt the recommended way: | ||
// https://github.com/just-the-docs/just-the-docs/issues/982 | ||
@include mq(lg) { | ||
.side-bar { | ||
min-width: 400px; | ||
} | ||
|
||
.site-nav, .site-header { | ||
width: 400px; | ||
} | ||
} | ||
|
||
// Add support for external anchor icons. | ||
.external > svg { | ||
width: 1rem; | ||
vertical-align: text-bottom; | ||
} | ||
|
||
footer > img#logo { | ||
width: 2rem; | ||
margin: 0 auto; | ||
display: block; | ||
} |
Binary file not shown.