+++ /dev/null
-.thf { margin: 0 0 0 0; padding: 0 0 0 0; float: left; border: none; }
-.thumb { position: relative; width: 154px; height: 134px; background-color: black; }
-.tt { position: absolute; top: 0; left: 0; }
-.tl { position: absolute; top: 14px; left: 0; }
-.ti { position: absolute; }
-.tr { position: absolute; top: 14px; right: 0; }
-.tb { position: absolute; bottom: 0; right: 0; }
-.annot { width: 154px; text-align: center; }
-IMG { border: none; }
-H1 { text-align: center; }
-H2 { text-align: center; }
-P { clear: both; }
-H2 { clear: both; }
-.parent { text-align: center; }
-.large { text-align: center; }
-.back { float: left; }
-.fwd { float: right; }
+++ /dev/null
-
-PicturesPerRow: 5
-BGColor: #ffffff
-TextColor: #000000
-CommentColor: #000000
-FilmBGColor: #322207
-LinkColor: #000000
-ALinkColor: gold
-VLinkColor: #000000
-LinkSize: 1
-
-# linksize | top
-# | v
-# ------------------|---------------- ---
-# | | | |
-# ------------------v---------------- ---
-# | | ______________________ | | ^
-# | | | ^ | | | |
-# | | | | height | | |
-# | | | | | | |
-# l | | | | | | | right
-# --->|---| |<--|----width------->| |---|<-----
-# | | | | | | |
-# | | | | | | |
-# | | | | | | |
-# | | | v | | |
-# | | |---------------------| | | |
-# | | | | v
-# ----------------------------------- ---
-# | | |
-# ----------------------------------- ---
-# ^
-# | bottom
-#
-# total = left + linksize + width + linksize + right
-
-# Decorations: top bottom left right
-Decorations: 14 18 14 18
-ThumbWidth: 120
-ThumbHeight: 100
+++ /dev/null
-# NRT Theme for MJ's Photo Gallery
-# (c) 2003--2004 Martin Mares <mj@ucw.cz>; GPL'ed
-# Theme images taken from the cthumb package (c) Carlos Puchol
-
-package UCW::Gallery::Theme;
-
-use strict;
-use warnings;
-
-use UCW::Gallery;
-
-sub Init($) {
- my ($u) = @_;
- UCW::Gallery::SetOptions(
- "StyleSheet" => "$u/style.css",
- "ThumbW" => 114,
- "ThumbH" => 94,
- "TopImg" => "$u/top.png",
- "TopH" => 14,
- "BotImg" => "$u/bot.png",
- "BotH" => 18,
- "LeftImg" => "$u/left.png",
- "LeftW" => 14,
- "RightImg" => "$u/right.png",
- "RightW" => 18,
- "InteriorMargin" => 4,
- "ParentImg" => "$u/back.png",
- "ParentH" => 48,
- "ParentW" => 48,
- "BackImg" => "$u/prev.png",
- "BackH" => 48,
- "BackW" => 48,
- "FwdImg" => "$u/next.png",
- "FwdH" => 48,
- "FwdW" => 48
- );
- UCW::Gallery::RequireThumbnails(114, 94);
-}
-
-1;