Add a CSS-only way of making navigation menu's look good.

This commit is contained in:
Tom Willemsen 2012-07-01 14:04:23 +02:00
parent c4e4c8b17f
commit a63547e7c4

View file

@ -178,3 +178,21 @@ pre {
.org-variable-name { .org-variable-name {
color: #268bd2; color: #268bd2;
} }
/* Navigation menu */
#content > ul:first-of-type {
margin: 0;
text-align: center;
}
#content > ul:first-of-type li {
display: inline;
}
#content > ul:first-of-type li:before {
content: "[ "
}
#content > ul:first-of-type li:after {
content: " ]"
}