mirror of
https://github.com/edg-l/edgarluque.com.git
synced 2024-11-09 17:48:22 +00:00
better font
This commit is contained in:
parent
ef4a868bbd
commit
ee0a4a84ad
|
@ -27,7 +27,7 @@
|
|||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
font-family: monospace;
|
||||
font-family: "JetBrains Mono", monospace;
|
||||
}
|
||||
/*
|
||||
Typographic tweaks!
|
||||
|
@ -97,12 +97,6 @@ h3 {
|
|||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3 {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
p {
|
||||
text-align: justify;
|
||||
margin: 1em 0;
|
||||
|
@ -118,6 +112,11 @@ pre {
|
|||
overflow-x: auto;
|
||||
border: 1px solid black;
|
||||
margin: 1em 0;
|
||||
font-family: "JetBrains Mono", monospace;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: "JetBrains Mono", monospace;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
|
|
|
@ -16,6 +16,12 @@
|
|||
<meta property="twitter:site" content="@edgluq" />
|
||||
<title>{% block title %}Home{% endblock %} | Edgar Luque</title>
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,700;1,400&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -23,8 +29,16 @@
|
|||
<p class="brand-title">Edgar Luque's Website</p>
|
||||
<ul class="nav">
|
||||
<li><a href="/">Blog</a></li>
|
||||
<li><a href="/projects" title="Projects I created/contributed">Projects</a></li>
|
||||
<li><a href="https://github.com/edg-l" title="My GitHub profile">GitHub</a></li>
|
||||
<li>
|
||||
<a href="/projects" title="Projects I created/contributed"
|
||||
>Projects</a
|
||||
>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://github.com/edg-l" title="My GitHub profile"
|
||||
>GitHub</a
|
||||
>
|
||||
</li>
|
||||
<li><a href="/blog/atom.xml">RSS</a></li>
|
||||
</ul>
|
||||
</header>
|
||||
|
|
Loading…
Reference in a new issue