diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | data/starthere/section.xsl | 6 |
2 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2003-04-21 Xan Lopez <xan@masilla.org> + + * data/starthere/section.xsl: + + Use em instead of px to respect user selected font sizes. + 2003-04-21 David Bordoley <bordoley@msu.edu> * src/ephy-history-window.c: (key_pressed_cb), diff --git a/data/starthere/section.xsl b/data/starthere/section.xsl index eb552e0aa..21075a990 100644 --- a/data/starthere/section.xsl +++ b/data/starthere/section.xsl @@ -18,7 +18,7 @@ background: <xsl:value-of select="@bg"/>; color: <xsl:value-of select="@text"/>; font-family: Verdana, Helvetica, Arial, sans-serif; - font-size: 14px; + font-size: 1.0em; } div.topbar { @@ -32,14 +32,14 @@ div.topbar a { margin-right: 15; - font-size: 20px; + font-size: 1.4em; font-weight: bold; color: <xsl:value-of select="@title"/>; } h2 { color: <xsl:value-of select="@headings"/>; - font-size: 18px; + font-size: 1.2em; } a { |