From 61672b1912da0a1b1669259718e04b268367f98e Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Sat, 17 Oct 2009 23:02:30 +0000 Subject: [PATCH] style: common setup for floating tables --- base.css | 24 ++++++++++-------------- charset.plp | 10 +++------- termcol.plp | 27 +++++++++++++++------------ unicode.plp | 2 +- 4 files changed, 29 insertions(+), 34 deletions(-) diff --git a/base.css b/base.css index fb998d0..bfce8a2 100644 --- a/base.css +++ b/base.css @@ -28,7 +28,7 @@ h1, h2 { margin: 0; } h2, caption { - font-size: 125%; + font-size: 110%; font-weight: bold; } caption { @@ -42,11 +42,17 @@ hr { margin: 0; } -.diinfo h2 { +.section h2 { margin: 0 1ex; clear: both; - font-size: 110%; - text-align: left; +} +.section table { + float: left; + position: relative; /* prevents buggy hovering in table if caption present in gecko */ + margin: 1ex 1ex 2ex; +} +#charset .section table { + margin: -0.5ex 0 1ex; /* headers provide sufficient spacing already */ } p { @@ -150,11 +156,6 @@ ul.keys.ctrl li b small { /* meta key indicator */ /* tables */ -li table { - float: left; - position: relative; /* prevents buggy hovering if table-caption present in gecko */ -} - table { border-collapse: collapse; } @@ -240,11 +241,6 @@ table.glyphs.dimap { overflow: hidden; } -.diinfo table.glyphs { - margin: 1ex 1ex 2ex; - float: left; -} - /* glyph cell overlay (digraph labels) */ .glyphs.dilabel td { diff --git a/charset.plp b/charset.plp index e82c5cc..73f9377 100644 --- a/charset.plp +++ b/charset.plp @@ -18,7 +18,7 @@ $header{content_type} = 'text/html; charset=utf-8'; - +

Character encoding

<: @@ -109,11 +109,9 @@ sub quote { return $_; } -print "\n"; - :>
diff --git a/termcol.plp b/termcol.plp index 359b33d..9e9ad19 100644 --- a/termcol.plp +++ b/termcol.plp @@ -22,7 +22,7 @@ $header{content_type} = 'text/html; charset=utf-8';

Terminal colours

- +:>
-

88-colour space

+:>
-

256-colour space

+:>
diff --git a/unicode.plp b/unicode.plp index 6457864..7207b03 100644 --- a/unicode.plp +++ b/unicode.plp @@ -139,7 +139,7 @@ sub glyph_table { sub print_glyph_tables { while (@_) { - printf "

%s

\n\n", shift; + printf '

%s

'."\n\n", shift; while (ref $_[0] and $_ = shift) { print glyph_table($_); } -- 2.30.0