Skip to content

Commit 37b6f27

Browse files
committed
FIIIIRAAAAA
1 parent 083b79e commit 37b6f27

File tree

10 files changed

+47
-42
lines changed

10 files changed

+47
-42
lines changed

_src/app/docs/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<title>Immutable.js</title>
66
<link rel="icon" type="image/png" href="../static/favicon.png" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
8+
<link rel="stylesheet" href="//code.cdn.mozilla.net/fonts/fira.css">
89
<link rel="stylesheet" type="text/css" href="bundle.css" />
910
<base target="_blank" />
1011
</head>

_src/app/docs/src/style.less

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -156,22 +156,13 @@
156156
text-transform: uppercase;
157157
}
158158

159-
code {
160-
background: #FCFBFA;
161-
color: #484A4C;
162-
font-family: Menlo, monospace;
163-
font-size: 0.9em;
164-
margin: -0.1rem -0.25em;
165-
padding: 0.1rem 0.25em;
166-
}
167-
168159
.codeBlock {
169160
-webkit-overflow-scrolling: touch;
170161
background: #FCFBFA;
171162
border-left: solid 3px #ECEAE9;
172163
box-sizing: border-box;
173164
display: block;
174-
font-size: 0.8125em;
165+
font-size: 0.875em;
175166
margin: 0.5rem 0;
176167
overflow-y: scroll;
177168
padding: 0.5rem 8px 0.5rem 12px;

_src/app/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<title>Immutable.js</title>
66
<link rel="icon" type="image/png" href="./static/favicon.png" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
8+
<link rel="stylesheet" href="//code.cdn.mozilla.net/fonts/fira.css">
89
<link rel="stylesheet" type="text/css" href="bundle.css" />
910
<base target="_blank" />
1011
</head>

_src/app/src/base.less

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,15 @@ html, body {
1010
padding: 0;
1111
-webkit-font-smoothing: antialiased;
1212
color: @body-color;
13-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
13+
font-family: 'Fira Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
1414
font-size: 16px;
15-
line-height: 1.625;//42857143;
16-
letter-spacing: -0.1pt;
15+
line-height: 1.625;
16+
}
17+
18+
@media only screen and (max-width: 680px) {
19+
body {
20+
font-size: 14px;
21+
}
1722
}
1823

1924
h1, h2, h3, h4, h5, h6 {
@@ -25,10 +30,15 @@ a {
2530
text-decoration: none;
2631
}
2732

28-
@media only screen and (max-width: 680px) {
29-
30-
body {
31-
font-size: 14px;
32-
}
33+
pre, code {
34+
font-family: 'Fira Mono', Menlo, monospace;
35+
background: #FCFBFA;
36+
color: #484A4C;
37+
font-size: 0.9375em;
38+
letter-spacing: -0.015em;
39+
}
3340

41+
code {
42+
margin: -0.1rem -0.25em;
43+
padding: 0.1rem 0.25em;
3444
}

bundle.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.

0 commit comments

Comments
 (0)