i lied. i had to change the formatting of <strong> because it wasn't strong enough
This commit is contained in:
parent
d9e19b6756
commit
53df2d05fc
|
|
@ -14,7 +14,7 @@
|
||||||
<!-- GOOGLE FONTS -->
|
<!-- GOOGLE FONTS -->
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans&family=Open+Sans&display=swap" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;600&display=swap" rel="stylesheet">
|
||||||
<!-- SYNTAX HIGHLIGHTING FONT -->
|
<!-- SYNTAX HIGHLIGHTING FONT -->
|
||||||
<link rel="stylesheet" href="https://unpkg.com/dracula-prism/dist/css/dracula-prism.css">
|
<link rel="stylesheet" href="https://unpkg.com/dracula-prism/dist/css/dracula-prism.css">
|
||||||
<title>{{ title }}</title>
|
<title>{{ title }}</title>
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Fira Sans', 'Open Sans', 'sans-serif';
|
font-family: 'Fira Sans', 'Open Sans', 'sans-serif';
|
||||||
|
font-weight: 400;
|
||||||
font-size: 13pt;
|
font-size: 13pt;
|
||||||
color: var(--font-color);
|
color: var(--font-color);
|
||||||
background-color: var(--content-background);
|
background-color: var(--content-background);
|
||||||
|
|
@ -110,6 +111,12 @@ h4::before, h5::before, h6::before {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
strong {
|
||||||
|
font-family: "Fira Sans", sans-serif;
|
||||||
|
font-weight: 600;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
/* Create three unequal columns that floats next to each other */
|
/* Create three unequal columns that floats next to each other */
|
||||||
.column {
|
.column {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue