Team:Calgary/StyleSheets/Typography

From 2013.igem.org

(Difference between revisions)
Line 21: Line 21:
h1 {
h1 {
-
font-size: 3.2em;
+
font-size: 32px;
}
}
h2 {
h2 {
-
font-size: 2.4em;
+
font-size: 24px;
}
}
h3 {
h3 {
-
font-size: 1.9em;
+
font-size: 19px;
}
}
h4 {
h4 {
-
font-size: 1.6em;
+
font-size: 16px;
}
}
h5 {
h5 {
-
font-size: 1.3em;
+
font-size: 13px;
}
}
h6 {
h6 {
-
font-size: 1.1em;
+
font-size: 11px;
}
}
p, a {
p, a {
-
font: 1.6em/1.5 "Times New Roman", Times, serif;
+
font: 16px/1.5 "Times New Roman", Times, serif;
}
}

Revision as of 17:00, 5 June 2013

/*** Name: Wm. Keith van der Meulen Date: Summer 2013 Organization: University of Calgary iGEM Team 2013

---Purpose--- CSS code to define all typographical element styles


Cite: Wm. Keith van der Meulen University of Calgary iGEM 2013 https://2013.igem.org/Team:Calgary/StyleSheets/Typography

      • /

h1, h2, h3, h4, h5, h6 { font: bold underline 200% Arial, Helvetica, sans-serif; line-height: 1.2; }

h1 { font-size: 32px; }

h2 { font-size: 24px; }

h3 { font-size: 19px; }

h4 { font-size: 16px; }

h5 { font-size: 13px; }

h6 { font-size: 11px; }

p, a { font: 16px/1.5 "Times New Roman", Times, serif; }