-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
doc: update style for iojs #297
Conversation
This is looking great 😁 Chiming in with a small nit: maybe the sidebar header and content header fonts should match? |
all lgtm, I'm keen to have this merged so it can go in nightlies asap, can be tweaked over time |
.api_stability_5 { | ||
color: white !important; | ||
margin: 0em 0 1.0em 0; | ||
font-family: "Lato", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Verdana, Tahoma, sans-serif; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just curious, wouldn't the font-family be inherited from the body tag?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are pre
elements, so they'll automatically inherit monospace
.
}); | ||
}); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style nit: trailing newline.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed this in the merge.
LGTM |
👍 |
margin: 0; | ||
padding: 0; | ||
color: #3a3a3a; | ||
background: #fcfefa; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we see how this looks with:
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
Nice |
* updates the styling for the iojs docs * pulls the processing step for markdown files into a separate module * adds the ability to insert comments into the markdown
* updates the styling for the iojs docs * pulls the processing step for markdown files into a separate module * adds the ability to insert comments into the markdown PR-URL: #297 Fixes: nodejs/iojs.org#23 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Merged in 9120f2b. |
a separate module
The rendered documents.
Fixes nodejs/iojs.org#23.