* revamp code highlighting

* replace standard Fira Code with a variable version

* change buttons arrows

* redesign code blocks

* make terminal logo more prominent

* separate terminal theme styles from terminal.css

Terminal.css styles only can change the color scheme.

* update docs and version

* remove USERS.md

* fix header pattern

* remove old prismjs shortcode

* remove old rss template

* remove old figure shortcode

* [chore] update yarn

LOL, I'm still using 1.22.x

* [chore] update package-lock.json

* fix pagination & boost meta visibility

* fix code blocks on mobile & move some parts from CSS to JS
This commit is contained in:
Radek Kozieł 2025-03-10 13:47:59 +01:00 committed by GitHub
parent c7770bc85e
commit 3f87c12098
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
34 changed files with 4747 additions and 6686 deletions

View file

@ -14,7 +14,6 @@ a.button {
padding: 8px 18px;
text-decoration: none;
text-align: center;
border-radius: 8;
font: inherit;
font-weight: bold;
appearance: none;
@ -41,13 +40,13 @@ button.link,
.button.link,
a.button.link {
background: none;
font-size: 1rem;
font-size: var(--font-size);
}
button.small,
.button.small,
a.button.small {
font-size: 0.8rem;
font-size: calc(var(--font-size) * 0.8);
}
button.wide,
@ -72,22 +71,6 @@ a.button.inline:hover {
background: none;
}
a.button.inline::before {
content: "["
}
a.button.inline::after {
content: "]"
}
a.button.inline.prev::before {
content: "← ["
}
a.button.inline.next::after {
content: "] →"
}
a.read-more,
a.read-more:hover,
a.read-more:active {
@ -99,25 +82,3 @@ a.read-more:active {
max-width: 100%;
text-decoration: none;
}
.code-toolbar {
margin-bottom: 20px;
}
.code-toolbar .toolbar-item a {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 3px 8px;
margin-bottom: 5px;
text-decoration: none;
text-align: center;
font-size: 13px;
font-weight: 500;
border-radius: 8px;
border: 1px solid transparent;
appearance: none;
cursor: pointer;
outline: none;
}