mirror of
https://github.com/edg-l/edgarluque.com.git
synced 2024-11-09 09:38:23 +00:00
improve style
This commit is contained in:
parent
c1e7a459e7
commit
a619bf1eb8
17
content/blog/x86_64_cheatsheet.md
Normal file
17
content/blog/x86_64_cheatsheet.md
Normal 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|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
{% block content %} {% endblock %}
|
||||
</section>
|
||||
|
||||
<section class="section container" style="border-top: 4px #e6e1cf dotted">
|
||||
<section class="section container" style="border-top: 4px #FFAA00 solid">
|
||||
<p>Copyright © 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>
|
||||
</section>
|
||||
|
|
Loading…
Reference in a new issue