Responsive font size in CSS

I’ve created a site using the Zurb Foundation 3 grid. Each page has a large h1: body { font-size: 100% } /* Headers */ h1 { font-size: 6.2em; font-weight: 500; } <div class=”row”> <div class=”twelve columns text-center”> <h1> LARGE HEADER TAGLINE </h1> </div> <!– End Tagline –> </div> <!– End Row –> When I resize … Read more

How to change the font size on a matplotlib plot

How does one change the font size for all elements (ticks, labels, title) on a matplotlib plot? I know how to change the tick label sizes, this is done with: import matplotlib matplotlib.rc(‘xtick’, labelsize=20) matplotlib.rc(‘ytick’, labelsize=20) But how does one change the rest? 15 s 15 From the matplotlib documentation, font = {‘family’ : ‘normal’, … Read more