diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2007-08-11 18:07:39 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2007-08-11 18:07:39 +0200 |
commit | 29a1ada097a0c197c0494eabaeb6430d0f9396a7 (patch) | |
tree | ef2f79ab6991f861a74aeb0b22232a08c011562c | |
parent | 5f69ebe6345bf4ee37d0e29fc71f6aa7d81f9a46 (diff) |
add copyright; smaller image indicators
-rwxr-xr-x | examples/gipfel2html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/gipfel2html b/examples/gipfel2html index 9fe3a1c..e8912d9 100755 --- a/examples/gipfel2html +++ b/examples/gipfel2html @@ -26,7 +26,7 @@ while read name height x y dist flags dummy; do thumb_w=`identify -format %w gipfelweb/thumbs/${name}` thumb_h=`identify -format %h gipfelweb/thumbs/${name}` - echo "#id_${i} {left:$((${x} - 20 / 2))px; top: $((${y} - 20 / 2))px; width: 20px; height: 20px;}" + echo "#id_${i} {left:$((${x} - 10 / 2))px; top: $((${y} - 6 / 2))px; width: 10px; height: 6px;}" echo "#id_${i}:hover {width: ${thumb_w}px; height: ${thumb_h}px; background: url(thumbs/${name});}" i=$((${i} + 1)) @@ -55,9 +55,9 @@ EOF echo "<h3>$TITLE</h3>" cat << EOF -<table border="0" cellpadding="0" cellspacing="1" width="542" bgcolor="black"> +<table border="0" cellpadding="0" cellspacing="1" bgcolor="black"> <tr><td> -<table border="0" cellpadding="10" cellspacing="0" width="542" bgcolor="white"> +<table border="0" cellpadding="10" cellspacing="0" bgcolor="white"> <tr><td> <div id="gipfel"> EOF |