[Docs] Add FreeBSD logo beside the FreeBSD name

Extracted from https://www.freebsd.org/logo/logo-simple.svg
for temporary use until a future Font Awesome release adds
the `fa-freebsd` glyph (github/FortAwesome/Font-Awesome#1116)  :-)

Make .fa `display: inline` to prevent unwanted line-wrapping

Also make the menu item "Issue & Help" line up with the others.
This commit is contained in:
Anthony Fok
2015-01-19 01:49:12 -07:00
parent 3c4bc653a3
commit b56c9db6dc
4 changed files with 144 additions and 3 deletions

View File

@@ -520,3 +520,14 @@ dd {
padding: 0.2em 0 0.2em 10em;
border-top: 1px solid #ccc;
}
/* Prevent linebreak right after an icon */
.fa {
display: inline;
}
/* Logo for FreeBSD until Font Awesome adds it, see https://github.com/FortAwesome/Font-Awesome/issues/1116 */
i.freebsd-19px:before {
content: url(/img/freebsd-19px.svg);
vertical-align: -7%;
}