Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add consistent monospace system font stack #70

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions web/styles/base-style.styl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pre
background #212121
display block
padding 20px
font-family Menlo, Courier New
font-family SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
font-size 13px
border-radius 3px
+breakpoint("tablet")
Expand Down Expand Up @@ -134,7 +134,7 @@ pre .xml .cdata
p
code
padding 2px 4px
font-family Menlo
font-family SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
color rgba(white,.8)
background-color rgba(white,.3)
border-radius 3px
Expand All @@ -150,7 +150,7 @@ dd
line-height 20px
code
padding 2px 4px
font-family Menlo
font-family SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
color black
background-color rgba(white,.5)
border-radius 3px
Expand Down
2 changes: 1 addition & 1 deletion web/styles/components/package.styl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
abbr
text-decoration: none
code
font-family: Menlo, Courier New
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
font-size: 12px
white-space: nowrap

Expand Down
4 changes: 2 additions & 2 deletions web/styles/components/window.styl
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
max-width 150px
margin auto
display block
font-family Menlo, Courier New
font-family SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
font-size 12px
color #444F5E
.window-content
font-family Menlo, Courier New
font-family SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
color #333
font-size 12px
padding 20px
Expand Down