From a619bf1eb888d0d1d87d5334627033c8fb5d744d Mon Sep 17 00:00:00 2001 From: Edgar Luque Date: Thu, 30 Nov 2023 10:44:31 +0100 Subject: [PATCH] improve style --- content/blog/x86_64_cheatsheet.md | 17 +++++++++++++++++ sass/style.scss | 10 ++++++---- templates/base.html | 2 +- 3 files changed, 24 insertions(+), 5 deletions(-) create mode 100644 content/blog/x86_64_cheatsheet.md diff --git a/content/blog/x86_64_cheatsheet.md b/content/blog/x86_64_cheatsheet.md new file mode 100644 index 0000000..22f6d03 --- /dev/null +++ b/content/blog/x86_64_cheatsheet.md @@ -0,0 +1,17 @@ ++++ +title = "x86_64 Assembly notes" +date = 2023-11-30 +draft = true +description = "Notes I gathered for myself as I learn." +[taxonomies] +categories = ["asm", "nasm", "x86_64"] ++++ + +Here is a post I will probably update as I learn more x86_64 assembly. + + +## x86_64 Cheatsheet + +|s|b| +|---|---| +|a|b| diff --git a/sass/style.scss b/sass/style.scss index ad28616..1b4cfe1 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -33,7 +33,7 @@ $codeblock: #0f1419; html, body { height: 100%; - font-family: "JetBrains Mono", monospace; + font-family: Verdana, sans-serif; background-color: $bgcolor; color: $color; } @@ -112,6 +112,7 @@ p { a { color: $color; font-weight: bold; + text-underline-offset: 4px; } pre { @@ -119,7 +120,7 @@ pre { overflow-x: auto; border-radius: 4px; margin: 1em 0; - font-family: "JetBrains Mono", monospace; + font-family: "JetBrains Mono", "Courier New", monospace; code { background-color: inherit; @@ -129,7 +130,7 @@ pre { } code { - font-family: "JetBrains Mono", monospace; + font-family: "JetBrains Mono", "Courier New", monospace; padding: 2px; line-height: 1.8; font-weight:bold; @@ -206,5 +207,6 @@ ul { } h1,h2,h3 { - border-bottom: 4px $color dotted; + border-bottom: 4px $color solid; + border-bottom-color: #FFAA00; } diff --git a/templates/base.html b/templates/base.html index 4a71ee0..afea1e1 100644 --- a/templates/base.html +++ b/templates/base.html @@ -50,7 +50,7 @@ {% block content %} {% endblock %} -
+

Copyright © 2019-2023 Edgar Luque

This page is licensed under a Creative Commons Attribution-NoDerivatives 4.0 International License.