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