diff --git a/normalize.css b/normalize.css
index 406bc54..614ccb7 100644
--- a/normalize.css
+++ b/normalize.css
@@ -54,10 +54,22 @@ body {
}
/*
- * Remove outline on element when active or hovered
+ * 1.
+ * Make outline thin dotted for
+ * Fixes outline displayed oddly in C10
+ * 2.
+ * Remove outline for element when active or hovered
* Improves readability when focused and also mouse hovered in all browsers
*/
+/* 1 */
+
+a:focus {
+ outline: thin dotted;
+}
+
+/* 2 */
+
a:active,
a:hover {
outline: none;
@@ -114,6 +126,8 @@ mark {
* 1.
* Fixes font family set oddly in C10 S5
* 2.
+ * Fixes monospace font family set oddly in IE6
+ * 3.
* Fixes monospace line-height overflow in iOS
*/
@@ -122,7 +136,8 @@ code,
kbd,
samp {
font-family: monospace, sans-serif; /* 1 */
- vertical-align: top; /* 2 */
+ _font-family: 'Courier New', monospace, sans-serif;/* 2 */
+ vertical-align: top; /* 3 */
}
/*
@@ -159,10 +174,15 @@ q:after {
}
/*
- * Define alignment for elements
+ * Define alignment for elements
* Fixes alignment within multi-line text displayed oddly in all browsers
*/
+small {
+ font-size: 75%;
+ line-height: 1;
+}
+
sub,
sup {
font-size: 75%;