codeforsanjose / ImmunizationSJ

An app that finds immunization information for schools.
MIT License
6 stars 2 forks source link

CSS headers need styling fix #4

Open Kyle-Falconer opened 9 years ago

Kyle-Falconer commented 9 years ago

Currently H1 and H2 have white as the color, which makes them invisible when used within the body of a webpage (as happens on school.html).

Kyle-Falconer commented 9 years ago

Issue persists on single school views with added chart. Happens on HTML structures like:

<section>
    <h1>{{ school.school_name }}</h1>
</section>

and

<h1>{{ school.school_name }}</h1>
<section>
    <!-- content -->
</section>