Skip to content

Commit

Permalink
[update] font style
Browse files Browse the repository at this point in the history
  • Loading branch information
oceanumeric committed May 24, 2024
1 parent f371171 commit fe3c926
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 11 deletions.
3 changes: 3 additions & 0 deletions docs/_includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
<!-- The loading of KaTeX is deferred to speed up page rendering -->
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js" integrity="sha384-PwRUT/YqbnEjkZO0zZxNqcxACrXe+j766U2amXcgMg5457rve2Y7I6ZJSm2A0mS4" crossorigin="anonymous"></script>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<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=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet">
{% seo %}
</head>
</html>
Expand Down
15 changes: 9 additions & 6 deletions docs/css/blog.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
@import url('https://fonts.googleapis.com/css2?family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');

html {
font-family: -apple-system, Helvetica, arial, sans-serif;
font-family: "Vollkorn", -apple-system, Helvetica, arial, sans-serif, serif;
color: rgba(0, 0, 0, 0.8);
background-color: #fffff8;
line-height: 1.5em;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
Expand All @@ -21,7 +24,7 @@ a:hover {
}
h1,
h4 {
font-family: -apple-system, Helvetica, arial, sans-serif;
font-family: "Vollkorn", -apple-system, Helvetica, arial, sans-serif, serif;
}


Expand Down Expand Up @@ -175,7 +178,7 @@ table th {
}

.table-figure-wrapper .caption {
font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
font-family: "Vollkorn", -apple-system, "Helvetica Neue", Arial, sans-serif, serif;
padding-top: 15px;
display: inline-block;
font-size: 15px;
Expand Down Expand Up @@ -207,7 +210,7 @@ table th {
}

.article {
font-family: Palatino,"Palatino Linotype","Palatino LT STD","Book Antiqua",Georgia,serif;
font-family: "Vollkorn", Palatino,"Palatino Linotype","Palatino LT STD","Book Antiqua",Georgia,serif;
font-size: 21px;
line-height: 1.7em;
color: rgba(0, 0, 0, 0.8);
Expand All @@ -232,7 +235,7 @@ table th {
padding: 20px 0;
}
.article .figure .caption {
font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
font-family: "Vollkorn", -apple-system, "Helvetica Neue", Arial, sans-serif, serif;
padding-top: 15px;
display: inline-block;
font-size: 15px;
Expand All @@ -243,7 +246,7 @@ table th {
color:rgba(0, 0, 0, 0.8)
}
.article .table-caption {
font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
font-family: "Vollkorn", -apple-system, "Helvetica Neue", Arial, sans-serif, serif;
margin-top: -10px;
font-size: 15px;
text-align: center !important;
Expand Down
13 changes: 8 additions & 5 deletions docs/css/math.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
@import url('https://fonts.googleapis.com/css2?family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');

html {
font-family: -apple-system, Helvetica, arial, sans-serif;
font-family: "Vollkorn", -apple-system, Helvetica, arial, sans-serif, serif;
color: rgba(0, 0, 0, 0.8);
background-color: #fffff8;
line-height: 1.5em;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
Expand All @@ -21,7 +24,7 @@ a:hover {
}
h1,
h4 {
font-family: -apple-system, Helvetica, arial, sans-serif;
font-family: "Vollkorn", -apple-system, Helvetica, arial, sans-serif, serif;
}


Expand Down Expand Up @@ -207,7 +210,7 @@ table th {
}

.article {
font-family: Palatino,"Palatino Linotype","Palatino LT STD","Book Antiqua",Georgia,serif;
font-family: "Vollkorn", Palatino,"Palatino Linotype","Palatino LT STD","Book Antiqua",Georgia,serif;
font-size: 21px;
line-height: 1.7em;
color: rgba(0, 0, 0, 0.8);
Expand All @@ -232,7 +235,7 @@ table th {
padding: 20px 0;
}
.article .figure .caption {
font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
font-family: "Vollkorn", -apple-system, "Helvetica Neue", Arial, sans-serif, serif;
padding-top: 15px;
display: inline-block;
font-size: 15px;
Expand All @@ -243,7 +246,7 @@ table th {
color:rgba(0, 0, 0, 0.8)
}
.article .table-caption {
font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
font-family: "Vollkorn", -apple-system, "Helvetica Neue", Arial, sans-serif, serif;
margin-top: -10px;
font-size: 15px;
text-align: center !important;
Expand Down

0 comments on commit fe3c926

Please sign in to comment.