diff --git a/_layouts/default.html b/_layouts/default.html index 41cf352..463ea39 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -19,7 +19,7 @@ {% include sidebar.html %}
-
+

{{ page.title }}

{{ content }}
diff --git a/_sass/modules/_base.scss b/_sass/modules/_base.scss index 3b8356a..f8de140 100644 --- a/_sass/modules/_base.scss +++ b/_sass/modules/_base.scss @@ -87,6 +87,7 @@ h1 { h2 { font-size: 1.5em; text-decoration: underline; + margin-top: $spacing-unit; } h3 { diff --git a/_sass/modules/_buttons.scss b/_sass/modules/_buttons.scss index c26460d..799ad0f 100644 --- a/_sass/modules/_buttons.scss +++ b/_sass/modules/_buttons.scss @@ -5,11 +5,12 @@ padding: $spacing-unit/4 $spacing-unit/2; width: 200px; border-radius: 4px; + text-decoration: none; &:hover { background: $color-blue-4; - text-decoration: none; cursor: pointer; + text-decoration: none; } } diff --git a/_sass/modules/_layout.scss b/_sass/modules/_layout.scss index 867513e..457154d 100644 --- a/_sass/modules/_layout.scss +++ b/_sass/modules/_layout.scss @@ -12,7 +12,7 @@ $wrapper-width: 800px; width: 100%; } -.content__list { +.content { max-width: $wrapper-width; margin: 0 auto; padding: 0 $spacing-unit; diff --git a/basics/truthy-and-falsy.md b/basics/truthy-and-falsy.md index 06bedff..feda346 100644 --- a/basics/truthy-and-falsy.md +++ b/basics/truthy-and-falsy.md @@ -4,6 +4,10 @@ title: Truthy and falsy In programming, anything that returns `true` in a conditional is called **truthy**. Anything that returns `false` in a conditional is called **falsy**. All object types can be described as either truthy or falsy. +- [Truthy](#truthy) +- [Falsy](#falsy) +- [Summary](#summary) + ## Truthy All values in Liquid are truthy except `nil` and `false`.