Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion blog/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ title = "Writing an OS in Rust"
base_url = "https://os.phil-opp.com"

highlight_code = true
highlight_theme = "monokai"
highlight_theme = "visual-studio-dark"
generate_rss = true

[extra]
Expand Down
10 changes: 2 additions & 8 deletions blog/static/css/poole.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,8 @@ body {

html {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
}
@media (min-width: 38rem) {
html {
font-size: 17px;
}
}

body {
color: #515151;
Expand Down Expand Up @@ -161,7 +155,7 @@ pre {
margin-top: 0;
margin-bottom: 1rem;
padding: .5rem;
font-size: .8rem;
font-size: .85rem;
line-height: 1.4;
white-space: pre;
overflow: auto;
Expand Down Expand Up @@ -260,7 +254,7 @@ tbody tr:nth-child(odd) th {
*/

.container {
max-width: 42rem;
max-width: 45rem;
padding-left: 1rem;
padding-right: 1rem;
margin-left: auto;
Expand Down
65 changes: 0 additions & 65 deletions blog/static/css/syntax.css

This file was deleted.

2 changes: 1 addition & 1 deletion blog/templates/macros.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<h2 class="post-title"><a href="/{{ page.path | safe }}">{{ page.title }}</a></h2>
<div class="post-summary">
{{ page.summary | safe}}
<a class="read-more" href="/{{ page.path | safe }}">read more…</a>
<a class="read-more" href="/{{ page.path | safe }}">read&nbsp;more…</a>
</div>
</article>
{% endmacro post_link %}
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
command = "python before_build.py && gutenberg build"

[build.environment]
GUTENBERG_VERSION = "0.3.0"
GUTENBERG_VERSION = "0.3.3"

[context.deploy-preview]
command = "python before_build.py && gutenberg build --base-url $DEPLOY_PRIME_URL"
Expand Down