Skip to content

Commit 5a0c8f3

Browse files
committed
Fix PT Sans
Signed-off-by: Andrew Thornton <[email protected]>
1 parent 645a79d commit 5a0c8f3

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

public/css/index.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/less/_base.less

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
font-family: @fonts;
1313
}
1414

15+
.home .hero h1, .home .hero h2 {
16+
font-family: 'PT Sans Narrow', @fonts;
17+
}
18+
1519
.ui.accordion .title:not(.ui),
1620
.ui.button,
1721
.ui.card > .content > .header.ui.card > .content > .header,
@@ -401,7 +405,7 @@ pre > code {
401405
}
402406

403407
.sha.label {
404-
font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace;
408+
font-family: Consolas, Menlo, Monaco, "Lucida Console", monospace, inherit;
405409
font-size: 13px;
406410
padding: 6px 10px 4px 10px;
407411
font-weight: normal;

public/less/_dashboard.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
}
101101
}
102102
.commit-id {
103-
font-family: Consolas, monospace;
103+
font-family: Consolas, monospace, inherit;
104104
}
105105
code {
106106
padding: 1px;

public/less/_form.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194

195195
.githook {
196196
textarea {
197-
font-family: monospace;
197+
font-family: monospace, inherit;
198198
}
199199
}
200200

public/less/_markdown.less

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.markdown:not(code) {
22
overflow: hidden;
3-
font-family: "Helvetica Neue", Helvetica, "Segoe UI", Arial, freesans, sans-serif;
43
font-size: 16px;
54
line-height: 1.6 !important;
65
word-wrap: break-word;

public/less/_repository.less

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@
331331
.code-view {
332332
* {
333333
font-size: 12px;
334-
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
334+
font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace, inherit;
335335
line-height: 20px;
336336
}
337337

@@ -700,7 +700,7 @@
700700
}
701701
textarea {
702702
height: 200px;
703-
font-family: "Consolas", monospace;
703+
font-family: "Consolas", monospace, inherit;
704704
}
705705
}
706706

@@ -803,7 +803,7 @@
803803
}
804804
textarea {
805805
height: 200px;
806-
font-family: "Consolas", monospace;
806+
font-family: "Consolas", monospace, inherit;
807807
}
808808
}
809809
}
@@ -1350,7 +1350,7 @@
13501350
&.new {
13511351
.CodeMirror {
13521352
.CodeMirror-code {
1353-
font-family: "Consolas", monospace;
1353+
font-family: "Consolas", monospace, inherit;
13541354
.cm-comment {
13551355
background: inherit;
13561356
}

0 commit comments

Comments
 (0)