File tree Expand file tree Collapse file tree 1 file changed +23
-3
lines changed
Expand file tree Collapse file tree 1 file changed +23
-3
lines changed Original file line number Diff line number Diff line change @@ -54,10 +54,22 @@ body {
5454}
5555
5656/*
57- * Remove outline on <a> element when active or hovered
57+ * 1.
58+ * Make outline thin dotted for <a>
59+ * Fixes outline displayed oddly in C10
60+ * 2.
61+ * Remove outline for <a> element when active or hovered
5862 * Improves readability when focused and also mouse hovered in all browsers
5963*/
6064
65+ /* 1 */
66+
67+ a : focus {
68+ outline : thin dotted;
69+ }
70+
71+ /* 2 */
72+
6173a : active ,
6274a : hover {
6375 outline : none;
@@ -114,6 +126,8 @@ mark {
114126 * 1.
115127 * Fixes font family set oddly in C10 S5
116128 * 2.
129+ * Fixes monospace font family set oddly in IE6
130+ * 3.
117131 * Fixes monospace line-height overflow in iOS
118132*/
119133
@@ -122,7 +136,8 @@ code,
122136kbd ,
123137samp {
124138 font-family : monospace, sans-serif; /* 1 */
125- vertical-align : top; /* 2 */
139+ _font-family : 'Courier New' , monospace, sans-serif;/* 2 */
140+ vertical-align : top; /* 3 */
126141}
127142
128143/*
@@ -159,10 +174,15 @@ q:after {
159174}
160175
161176/*
162- * Define alignment for <sub> <sup> elements
177+ * Define alignment for <small> <sub> <sup> elements
163178 * Fixes alignment within multi-line text displayed oddly in all browsers
164179*/
165180
181+ small {
182+ font-size : 75% ;
183+ line-height : 1 ;
184+ }
185+
166186sub ,
167187sup {
168188 font-size : 75% ;
You can’t perform that action at this time.
0 commit comments