diff --git a/help.html b/help.html index 8b1abcff84..abf7efd38c 100644 --- a/help.html +++ b/help.html @@ -2,7 +2,7 @@ <%include file="navigation.html" /> -
+

Help

If you need help, first try asking a question in the forums and in the IRC channel (irc.mitx.org, channel #6002). As the semester starts, we will add a Frequently Asked Questions section.

diff --git a/sass/_discussion.scss b/sass/_discussion.scss new file mode 100644 index 0000000000..b6c4c49c19 --- /dev/null +++ b/sass/_discussion.scss @@ -0,0 +1,3 @@ +secondaryHeader { + @extend .topbar; +} diff --git a/sass/_help.scss b/sass/_help.scss new file mode 100644 index 0000000000..3e65a78b53 --- /dev/null +++ b/sass/_help.scss @@ -0,0 +1,19 @@ +section.help.main-content { + padding: lh(); + + p { + max-width: 700px; + } + + dl { + margin-bottom: lh(); + + dd, dt { + margin-bottom: lh(.5); + } + + dt { + font-weight: bold; + } + } +} diff --git a/sass/application.scss b/sass/application.scss index 2aebcee3c9..4860961649 100644 --- a/sass/application.scss +++ b/sass/application.scss @@ -13,6 +13,8 @@ @import "profile"; @import "wiki-create", "wiki"; @import "activation"; +@import "discussion"; +@import "help"; // left over @import "theme";