summaryrefslogtreecommitdiff
path: root/page.tmpl
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2008-04-13 23:15:06 +0200
committerJonas Smedegaard <dr@jones.dk>2008-04-13 23:15:06 +0200
commit5a509762d29c40110f39d48582add9c0879c8c0a (patch)
tree1f64a2560d57e38b0ab5b9f21e84242c9014cdb7 /page.tmpl
parentf7cea4ca9c08e2bb2c43128199d12b2464758dd6 (diff)
Add "Sane CSS Sizes"
Origin: http://www.thenoodleincident.com/tutorials/typography/
Diffstat (limited to 'page.tmpl')
-rw-r--r--page.tmpl17
1 files changed, 15 insertions, 2 deletions
diff --git a/page.tmpl b/page.tmpl
index b648de9..27f4903 100644
--- a/page.tmpl
+++ b/page.tmpl
@@ -7,8 +7,21 @@
<TMPL_IF NAME="FAVICON">
<link rel="icon" href="<TMPL_VAR BASEURL><TMPL_VAR FAVICON>" type="image/x-icon" />
</TMPL_IF>
-<link rel="stylesheet" href="<TMPL_VAR BASEURL>style.css" type="text/css" />
-<link rel="stylesheet" href="<TMPL_VAR BASEURL>local.css" type="text/css" />
+<link rel="stylesheet" href="<TMPL_VAR BASEURL>nn4.css" type="text/css" media="screen" />
+<!--link before import prevents Flash Of Unstyled Content in ie6pc -->
+<style type="text/css" media="screen">@import url("<TMPL_VAR BASEURL>real.css");</style>
+<!-- import with quotes and brackets hides css from:
+Netscape 4.x
+Win IE 3
+Win IE 4
+Mac IE 4.01
+Mac IE 4.5
+Konqueror 2.1.2
+Win Amaya 5.1
+isn't that nice to know? -->
+<!-- Source of above: http://www.thenoodleincident.com/tutorials/typography/ -->
+<style type="text/css" media="screen">@import url("<TMPL_VAR BASEURL>style.css");</style>
+<style type="text/css" media="screen">@import url("<TMPL_VAR BASEURL>local.css");</style>
<TMPL_IF NAME="FEEDLINKS"><TMPL_VAR FEEDLINKS></TMPL_IF>
<TMPL_IF NAME="META"><TMPL_VAR META></TMPL_IF>
</head>