Commit a2645b63 by Christine Lytwynec

Change .heading-group>h2 to .heading-group>p

parent 57b7034e
...@@ -86,7 +86,8 @@ $course-search-input-height: ($button-size); ...@@ -86,7 +86,8 @@ $course-search-input-height: ($button-size);
text-transform: none; text-transform: none;
} }
h2 { p {
@extend h2;
margin-bottom: 0; margin-bottom: 0;
text-transform: lowercase; text-transform: lowercase;
font-style: italic; font-style: italic;
......
...@@ -16,7 +16,7 @@ from django.core.urlresolvers import reverse ...@@ -16,7 +16,7 @@ from django.core.urlresolvers import reverse
## Translators: 'Open edX' is a brand, please keep this untranslated. See http://openedx.org for more information. ## Translators: 'Open edX' is a brand, please keep this untranslated. See http://openedx.org for more information.
<h1>${_("Welcome to Open edX!")}</h1> <h1>${_("Welcome to Open edX!")}</h1>
## Translators: 'Open edX' is a brand, please keep this untranslated. See http://openedx.org for more information. ## Translators: 'Open edX' is a brand, please keep this untranslated. See http://openedx.org for more information.
<h2>${_("It works! This is the default homepage for this Open edX instance.")}</h2> <p>${_("It works! This is the default homepage for this Open edX instance.")}</p>
% endif % endif
</div> </div>
% if settings.FEATURES.get('ENABLE_COURSE_DISCOVERY'): % if settings.FEATURES.get('ENABLE_COURSE_DISCOVERY'):
......
...@@ -12,7 +12,7 @@ from django.utils.translation import ugettext as _ ...@@ -12,7 +12,7 @@ from django.utils.translation import ugettext as _
${homepage_overlay_html} ${homepage_overlay_html}
% else: % else:
<h1>${_("Free courses from <strong>{university_name}</strong>").format(university_name="Stanford")}</h1> <h1>${_("Free courses from <strong>{university_name}</strong>").format(university_name="Stanford")}</h1>
<h2>${_("For anyone, anywhere, anytime")}</h2> <p>${_("For anyone, anywhere, anytime")}</p>
% endif % endif
</div> </div>
% if settings.FEATURES.get('ENABLE_COURSE_DISCOVERY'): % if settings.FEATURES.get('ENABLE_COURSE_DISCOVERY'):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment