-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Scala Days video and update website
- update sbt-typelevel plugin - adapt to changes from update to Laika 1.0 - remove custom html templates and use css/js overrides instead - add Apple Silicon docs
- Loading branch information
Showing
10 changed files
with
117 additions
and
232 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
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
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,6 +1,6 @@ | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0") | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") | ||
addSbtPlugin("org.bytedeco" % "sbt-javacpp" % "1.17") | ||
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.7") | ||
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.2") | ||
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0") | ||
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.4.22") | ||
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.4.22") | ||
addSbtPlugin("org.typelevel" % "sbt-typelevel" % "0.6.5") | ||
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.6.5") |
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,34 @@ | ||
/* Adjust a few styles from landing-page.css */ | ||
|
||
#header { | ||
padding-top: 20px; | ||
} | ||
|
||
#header-left h1, #header-left h2 { | ||
color: var(--component-color); | ||
line-height: 1; | ||
margin-bottom: 5px; | ||
} | ||
|
||
#header-left h1 { | ||
font-size: 40px; | ||
} | ||
|
||
#header-left h2 { | ||
font-size: 22px; | ||
margin-top: 0.7em; | ||
} | ||
|
||
.teaser h2 { | ||
font-size: 20px; | ||
margin-bottom: 0.25em; | ||
margin-top: 0; | ||
} | ||
|
||
.teaser p { | ||
font-size: 15px; | ||
} | ||
|
||
.teasers { | ||
margin: 15px auto 0 auto; | ||
} |
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
document.addEventListener("DOMContentLoaded", function() { | ||
renderMathInElement(document.body, { | ||
// customised options | ||
// • auto-render specific keys, e.g.: | ||
delimiters: [ | ||
{left: '$$', right: '$$', display: true}, | ||
{left: '$', right: '$', display: false}, | ||
], | ||
// • rendering keys, e.g.: | ||
throwOnError : false | ||
}); | ||
}); |
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,13 @@ | ||
<div class="teasers" style="padding-top: 0;"> | ||
|
||
<div class="teaser" style="min-width: 580px;"> | ||
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/ZoJanBS9kw8?si=sNssUCy4VFavgONu" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> | ||
</div> | ||
|
||
<div class="teaser" style="min-width: 660px; margin-top: -20px;"> | ||
<script id="asciicast-548330" src="https://asciinema.org/a/548330.js" async data-autoplay="true" data-speed="32" data-rows=24></script> | ||
</div> | ||
|
||
</div> | ||
|
||
<p style="text-align: center; font-size: xx-small;"><a href="https://commons.wikimedia.org/wiki/File:Torch.svg">Torch</a> by Mailtoanton / CC BY-SA 3.0</p> |
Oops, something went wrong.