improve style

This commit is contained in:
Edgar 2023-11-30 10:44:31 +01:00
parent c1e7a459e7
commit a619bf1eb8
No known key found for this signature in database
GPG key ID: 70ADAE8F35904387
3 changed files with 24 additions and 5 deletions

View file

@ -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|

View file

@ -33,7 +33,7 @@ $codeblock: #0f1419;
html, html,
body { body {
height: 100%; height: 100%;
font-family: "JetBrains Mono", monospace; font-family: Verdana, sans-serif;
background-color: $bgcolor; background-color: $bgcolor;
color: $color; color: $color;
} }
@ -112,6 +112,7 @@ p {
a { a {
color: $color; color: $color;
font-weight: bold; font-weight: bold;
text-underline-offset: 4px;
} }
pre { pre {
@ -119,7 +120,7 @@ pre {
overflow-x: auto; overflow-x: auto;
border-radius: 4px; border-radius: 4px;
margin: 1em 0; margin: 1em 0;
font-family: "JetBrains Mono", monospace; font-family: "JetBrains Mono", "Courier New", monospace;
code { code {
background-color: inherit; background-color: inherit;
@ -129,7 +130,7 @@ pre {
} }
code { code {
font-family: "JetBrains Mono", monospace; font-family: "JetBrains Mono", "Courier New", monospace;
padding: 2px; padding: 2px;
line-height: 1.8; line-height: 1.8;
font-weight:bold; font-weight:bold;
@ -206,5 +207,6 @@ ul {
} }
h1,h2,h3 { h1,h2,h3 {
border-bottom: 4px $color dotted; border-bottom: 4px $color solid;
border-bottom-color: #FFAA00;
} }

View file

@ -50,7 +50,7 @@
{% block content %} {% endblock %} {% block content %} {% endblock %}
</section> </section>
<section class="section container" style="border-top: 4px #e6e1cf dotted"> <section class="section container" style="border-top: 4px #FFAA00 solid">
<p>Copyright &copy; 2019-2023 Edgar Luque</p> <p>Copyright &copy; 2019-2023 Edgar Luque</p>
<p>This page is licensed under a <a href="https://creativecommons.org/licenses/by-nd/4.0/">Creative Commons Attribution-NoDerivatives 4.0 International License</a>.</p> <p>This page is licensed under a <a href="https://creativecommons.org/licenses/by-nd/4.0/">Creative Commons Attribution-NoDerivatives 4.0 International License</a>.</p>
</section> </section>