Make toc font size less obnoxiously large

This commit is contained in:
Ryan Watters
2017-04-07 18:51:56 -05:00
parent 8f60e9ace1
commit 0902a1c08b
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ You'll see the `bookshelf` directory has 6 subdirectories and 1 file. Let's look
* `config.toml`: Hugo uses `.toml` as its default configuration format but also accepts `.yml` and `.json`. The configuration settings mentioned in the `config.toml` are applied to the full website an include important global variables such as the `baseURL` and `title` of your website. (See [Configuration][configuration].)
* `content`: This single directory houses all of the content for your website. Each subdirectory in content is considered a [section][]. If your website has sections for posts, events, and tutorials, you would create `content/posts`, `content/events`, and `content/tutorials`.
* `data`: This directory is used to store files of serialized data (YAML, TOML, or JSON) that can be used in [data templates][datatemplates] and your [website's menu][sitemenu].
* `layouts`: This is the hub for all your [templating][templating], including [list and section templates][listsectiontemplates] and [shortcodes][shortcodetemplates].
* `layouts`: This is the hub for all your [templating][templating], including [list and section templates](/templates/lists/) and [shortcodes](/templates/shortcode-templates/).
* `static`: This houses all your static content; i.e., images, JavaScript, and CSS. Everything in `/static` is copied over *as is* to your finished website.
* `themes`: This is where you will download themes for Hugo. You can see a showcase of all themes at <http://themes.gohugo.io>.
File diff suppressed because one or more lines are too long
@@ -87,7 +87,7 @@ nav#TableOfContents {
ul > li > ul {
li {
line-height: 1.2;
font-size: 16px;
font-size: 14px;
padding-left: 8px;
position: relative;
margin-top: .5em;
@@ -133,7 +133,7 @@ nav#TableOfContents {
margin-top: 8px;
margin-bottom: 0px;
> li {
font-size: 14px;
font-size: 13px;
a {
@include MQ(L) {
&:hover {
File diff suppressed because one or more lines are too long