Skip to content

Commit a2622c5

Browse files
authored
Merge pull request #242 from cxharris/master
Changed font.
2 parents 73187f0 + 2dacdd0 commit a2622c5

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

docs/_includes/head.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
<!-- most color styles are extracted out to here -->
1717
<link rel="stylesheet" href="css/theme-blue.css">
1818

19+
<!-- Added by C Harris on 5th June 2019 -->
20+
<style>
21+
@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Sans&display=swap');
22+
@import url('https://fonts.googleapis.com/css?family=IBM+Plex+Mono&display=swap');
23+
</style>
24+
1925
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
2026

2127
<!-- Added by C Harris on 1st May 2019 - used for code copying buttons -->

docs/css/customstyles.css

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
body {
2+
font-family: 'IBM Plex Sans', sans-serif;
23
font-size:15px;
34
}
45

6+
pre {
7+
font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
8+
}
9+
10+
code {
11+
font-family: 'IBM Plex Mono', 'Courier New', Courier, monospace;
12+
}
13+
514
.bs-callout {
615
padding: 20px;
716
margin: 20px 0;
@@ -429,7 +438,7 @@ ul#mysidebar {
429438
}
430439

431440
span.projectTitle {
432-
font-family: Helvetica;
441+
font-family: 'IBM Plex Sans', sans-serif;
433442
font-weight: bold;
434443
}
435444

@@ -820,7 +829,7 @@ a.accordion-toggle {
820829

821830
span.red {
822831
color: red;
823-
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
832+
font-family: 'IBM Plex Mono', Monaco, Menlo, Consolas, "Courier New", monospace;
824833
}
825834

826835
h3.codeExplanation {

0 commit comments

Comments
 (0)