diff options
author | Fred Drake <fdrake@acm.org> | 1999-02-19 23:03:04 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-02-19 23:03:04 (GMT) |
commit | df5d50d8899c6da323bfa4702f37a712bcda1e55 (patch) | |
tree | 8d9cb3204c79730a20aed29f2383b8cce17c7958 /Doc/html/style.css | |
parent | 56f8185a536cffa454806f3681d5fd14a890095c (diff) | |
download | cpython-df5d50d8899c6da323bfa4702f37a712bcda1e55.zip cpython-df5d50d8899c6da323bfa4702f37a712bcda1e55.tar.gz cpython-df5d50d8899c6da323bfa4702f37a712bcda1e55.tar.bz2 |
Specify the sizes of H? relative to the normal font size as
percentages; using "large", "x-large" makes them too big for
some troublemakers. ;-)
(Not specifying them at all causes some browsers to make them the same
size as normal text. ;-( )
Diffstat (limited to 'Doc/html/style.css')
-rw-r--r-- | Doc/html/style.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/html/style.css b/Doc/html/style.css index 0ae3cb7..afb1855 100644 --- a/Doc/html/style.css +++ b/Doc/html/style.css @@ -29,8 +29,9 @@ BIG.XHUGE { font-size : xx-large } h1, h2, h3, h4, h5, h6 { font-family: avantgarde, sans-serif; font-weight: bold } -h1, h2 { font-size: x-large } -h3, h4 { font-size: large } +h1 { font-size: 180% } +h2 { font-size: 150% } +h3, h4 { font-size: 120% } code, tt { font-family: courier } var { font: italic normal serif } |