aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_zf/static/css/normalize.css
diff options
context:
space:
mode:
authorMatt <s@tuxlite.com>2013-05-12 16:46:53 +0000
committerMatt <s@tuxlite.com>2013-05-12 16:46:53 +0000
commit1abef3723b4db5b3c287db58fbe9275064384ad8 (patch)
tree9e5432871233f29cc4cd2cc308a6728e7e148ff1 /tuxlite_zf/static/css/normalize.css
parentff2e25c964ba12505a402d00c9fa566367161667 (diff)
downloadpelican-themes-1abef3723b4db5b3c287db58fbe9275064384ad8.tar.gz
Fix misc styling bugs.
- Change header and site name colors - Fix heading sizes for pages and archives - Change navigation link color - Fix syntax highlighting. Now using solarized theme - Fix HTML lists using list-style-position - Increased spacing between posts - Update foundation CSS, JS files
Diffstat (limited to 'tuxlite_zf/static/css/normalize.css')
-rw-r--r--tuxlite_zf/static/css/normalize.css18
1 files changed, 12 insertions, 6 deletions
diff --git a/tuxlite_zf/static/css/normalize.css b/tuxlite_zf/static/css/normalize.css
index a9c6f52..6d24a38 100644
--- a/tuxlite_zf/static/css/normalize.css
+++ b/tuxlite_zf/static/css/normalize.css
@@ -1,4 +1,4 @@
-/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
+/*! normalize.css v2.1.1 | MIT License | git.io/normalize */
/* ==========================================================================
HTML5 display definitions
@@ -56,15 +56,21 @@ audio:not([controls]) {
========================================================================== */
/**
- * 1. Set default font family to sans-serif.
- * 2. Prevent iOS text size adjust after orientation change, without disabling
+ * 1. Prevent system color scheme's background color being used in Firefox, IE,
+ * and Opera.
+ * 2. Prevent system color scheme's text color being used in Firefox, IE, and
+ * Opera.
+ * 3. Set default font family to sans-serif.
+ * 4. Prevent iOS text size adjust after orientation change, without disabling
* user zoom.
*/
html {
- font-family: sans-serif; /* 1 */
- -webkit-text-size-adjust: 100%; /* 2 */
- -ms-text-size-adjust: 100%; /* 2 */
+ background: #fff; /* 1 */
+ color: #000; /* 2 */
+ font-family: sans-serif; /* 3 */
+ -ms-text-size-adjust: 100%; /* 4 */
+ -webkit-text-size-adjust: 100%; /* 4 */
}
/**