From: Matt S Trout Date: Wed, 16 Feb 2011 12:22:12 +0000 (+0000) Subject: import theme X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7460370d5f2db5cdaa8e30f41507877bc4f59c67;p=scpubgit%2FSCS.git import theme --- diff --git a/share/static/basic.css b/share/static/basic.css new file mode 100755 index 0000000..11ba3e8 --- /dev/null +++ b/share/static/basic.css @@ -0,0 +1,124 @@ +/* ------------------------------------------------ + GENERAL/BASIC TAGS +------------------------------------------------ */ + +body { + margin:0px; + padding:0px; + font-family: sans-serif; + font-size: 11pt; + background: #000000; + background-position: top left; +} + +a { + text-decoration: none; + color: #224e9f; +} + +a:visited { + color: green; +} + +a:hover { + color: #e50c0c; + text-decoration:none; +} + + +h1 { + font-family: serif; + color: #ffffff; + font-size: 220%; + padding-left: 115px; + text-align: left; + padding-top: 100px; + text-indent: 0px; +} + +/* +h1 a{ + display: block; + background: #cfcfcf; + height: 40px; + width: 200px; + text-indent: -900em; + text-decoration: none; + line-height: 100%; +} +*/ + +h2{ + font-family: verdana, arial, sans-serif; + font-size: 200%; + color: #333333; + text-align: center; + font-weight: normal; + margin: 0px 0px 15px; + border-bottom: 0px solid #ff6600; +} + +h3{ + font-family: Tahoma, Arial, sans-serif; + font-size: 140%; + font-weight: normal; + color: #333333; + padding-bottom: 2px; + border-bottom: 1px solid #ff6600; + margin: 30px 0px 5px; +} + +h3.header2{ + font-family: Tahoma, Arial, sans-serif; + font-size: 110%; + font-weight: normal; + color: #666666; + padding-bottom: 2px; + border-bottom: 1px solid #ff6600; + margin: 3px 0px 5px; +} + +.title4 h4 { + font-family: Tahoma, Arial, sans-serif; + font-size: 100%; + font-weight: normal; + color: #ff6600; + padding-bottom: 2px; + margin: 5px 130px 5px; +} + +.title5 h5 { + font-family: Tahoma, Arial, sans-serif; + margin: 5px 130px 5px; + font-size: 80%; +} + +li{ + font-family: tahoma, arial, sans-serif; + font-size: 100%; + line-height: 130%; + font-weight: normal; +} + + + + +/* ------------------------------------------------ + WRAPPER BLOCK - MAIN AND SIDE + +------------------------------------------------ */ + + +#wrap{ + margin-left: auto; + margin-right: auto; + width: 960px; + background: #fff; + border-left: 8px solid #444444; + border-right: 8px solid #444444; +} + + + + + diff --git a/share/static/blog.css b/share/static/blog.css new file mode 100644 index 0000000..8a65b03 --- /dev/null +++ b/share/static/blog.css @@ -0,0 +1,39 @@ +#blog p { + margin: 10px 45px 0px 130px; + font-size: 110%; + line-height: 150%; +} + +#blog p.pre { + margin: 10px 300px 0px 0px; + font-size: 110%; + line-height: 160%; +} + +#blog h4{ + font-family: Tahoma, Arial, sans-serif; + font-size: 125%; + font-weight: bold; + color: #333333; + padding-bottom: 2px; + margin: 30px 0px 5px 130px; +} + +#blog p.comments { + margin: -10px 20px 20px 130px; + background: #efefef; + font-size: 90%; + line-height: 110%; + border: 1px dashed #78abf7; + padding: 10px; +} + +#blog p.box2 { + margin: -10px 20px 20px 130px; + background: #efefef; + font-size: 90%; + line-height: 110%; + border: 1px dotted #ff6600; + padding: 10px; +} + diff --git a/share/static/cat-install b/share/static/cat-install new file mode 100755 index 0000000..50ac11d --- /dev/null +++ b/share/static/cat-install @@ -0,0 +1,143 @@ +# ABOUT: +# +# This is the Shadowcat Catalyst installer. Its purpose is to make it easier +# and quicker to get started with Catalyst development. In order to use it, +# make sure you have perl 5.8.1+, a make and a compiler, (nmake and dev-c++ +# are good on windows), a configured CPAN.pm and Module::Build installed. Then +# run this script by executing +# +# /path/to/perl cat-install +# +# and go for a tea break. If anything breaks, please send the full build log +# and the output of perl -V to and we'll +# see what we can do. This script is still BETA though, so don't be too +# surprised if something *does* break. +# +# See http://www.shadowcatsystems.co.uk/projects/catalyst/ for more information +# on the Catalyst project and Shadowcat's involvement with it. +# +# COPYRIGHT: +# +# This software is Copyright (c) 2006 Shadowcat Systems Limited +# +# +# LICENSE: +# +# This work is made available to you under the terms of Version 2 of +# the GNU General Public License. A copy of this license can be obtained +# from www.gnu.org, or by writing to the Free Software Foundation, Inc., +# 675 Mass Ave, Cambridge, MA 02139, USA. +# +# This work is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. + +package CPAN::Override; + +$ENV{PERL_MM_USE_DEFAULT} = 1; + +my $orig = CPAN::Distribution->can('new'); + +my $replace = sub { + my $dist = $orig->(@_); + my @bits = split('-', (split('/', $dist->normalize))[-1]); + pop(@bits); + my $o_pack = join('::', 'CPAN::Override::Distribution', @bits); + if ($o_pack->isa('CPAN::Distribution')) { + bless($dist, $o_pack); + } + return $dist; +}; + +{ + no warnings 'redefine'; + *CPAN::Distribution::new = \&$replace; +} + +package CPAN::Override::Distribution::Template::Toolkit; + +use base qw/CPAN::Distribution/; + +use strict; +use warnings; + +sub make { + my $self = shift; + my %args = (DOCS => 'n', SPLASH => 'n', EXAMPLES => 'n', EXTRAS => 'n', + DBI => 'n', LATEX => 'n', QUIET => 'n', ACCEPT => 'y'); + my $extra_args = join(' ', map { "TT_$_=".$args{$_} } keys %args); + local $CPAN::Config->{makepl_arg} = + $CPAN::Config->{makepl_arg}.' '.$extra_args; + $self->SUPER::make(@_); +} + +package CPAN::Override::Distribution::Module::Install; + +use base qw/CPAN::Distribution/; + +sub make { + my $self = shift; + $self->get; + my $builddir = $self->dir; + chdir($builddir) && (!-f 'Makefile') && do { + my $perl = $self->perl; + my $re_code = 's/^auto_install_now.*//; s/.*prerequisites_policy.*//;'; + if ($^O eq 'MSWin32') { + $re_code .= ' s/^.*ExtUtils::ParseXS.*$//;'; + system(qq!$perl -p -i.bak -e "s/\n/\r\n/;" Makefile.PL!); + } + system(qq!$perl -p -i.bak -e "${re_code}" Makefile.PL!); + }; + return $self->SUPER::make(@_); +} + +1; + + +package main; + +use CPAN; + +if ($^O eq 'MSWin32') { + system("ppm install Test-Simple"); + system("ppm install Spiffy"); + system("ppm install Test-Base"); + system("ppm install YAML"); + system("ppm install UNIVERSAL-require"); + system("ppm install Module-Pluggable-Fast"); + system("ppm install Class-Accessor"); + system("ppm install Test-use-ok"); + system("ppm install Sub-Uplevel"); + system("ppm install Test-Exception"); + system("ppm install UNIVERSAL-isa"); + system("ppm install UNIVERSAL-can"); + system("ppm install Test-MockObject"); + system("ppm install Data-Visitor"); + system("ppm install Test-Tester"); + system("ppm install Test-NoWarnings"); + system("ppm install Scalar-List-Utils"); + system("ppm install Tree-Simple"); + system("ppm install Tree-Simple-VisitorFactory"); + system("ppm install URI"); + system("ppm install Compress-Zlib"); + system("ppm install HTML-Tagset"); + system("ppm install HTML-Parser"); + system("ppm install libwww-perl"); + system("ppm install Class-Data-Inheritable"); + system("ppm install File-Modified"); + system("ppm install Module-Install"); + system("ppm install HTTP-Request-AsCGI"); + system("ppm install HTTP-Body"); + system("ppm install Text-SimpleTable"); + system("ppm install MIME-Types"); + system("ppm install AppConfig"); + system("ppm install Template-Toolkit"); + system("ppm install Path-Class"); + system("ppm install File-Copy-Recursive"); + system("ppm install Class-Inspector"); + system("ppm install Catalyst"); + install('Test::MockObject'); +} + +install('Catalyst'); diff --git a/share/static/favicon.ico b/share/static/favicon.ico new file mode 100644 index 0000000..88c45c7 Binary files /dev/null and b/share/static/favicon.ico differ diff --git a/share/static/footer.css b/share/static/footer.css new file mode 100755 index 0000000..8ab8dcd --- /dev/null +++ b/share/static/footer.css @@ -0,0 +1,95 @@ +/* ------------------------------------------------ + FOOTER CONTAINER/TAGS/LINKS +------------------------------------------------ */ + +#footer { + padding-top: 0px; + background: #696969 url(images/footerback.jpg); + border-top: 1px solid black; + margin: 0px 0px 0px 0px; + clear: both; +} + +#copyright { + text-align: center; + margin: 0px; + height: 85px; + font-size: 80%; + line-height: 130%; + color: #cfcfcf; + padding-top: 35px; +} + + +#footerlinks { + margin-bottom: 0px; + height: 15px; + background: #000 url(images/nav2foot.png); + border-bottom: 1px solid black; +} + +#footerlinks ul { + margin:0px; + padding-right: 10px; + list-style:none; + background: #ff0000; +} + +#footerlinks li{ + font-family: tahoma, arial, sans-serif; + font-size: 10pt; + height: 15px; + font-weight: normal; + font-variant: small-caps; + float: right; + list-style:none; +} + +#footerlinks li a{ + color: #fff; + text-decoration: none; + display: block; + padding: 0px 8px 0px; + height: 15px; + line-height: 15px; + float: left; + border-left: 1px solid #aaaaaa; + border-right: 1px solid #aaaaaa; + text-align: center; + background: #a64400 url(images/nav2foot.png); + list-style:none; +} + +#footerlinks li a:hover{ + color: #fff; + line-height: 15px; + border-left: 1px solid #aaaaaa; + border-right: 1px solid #aaaaaa; + background: #aaaaaa url(images/nav2foot_alt.png); +} + +img.logo { + margin-top: 10px; + margin-left: 5px; +} + +#links { + list-style:none; + margin:0px; + padding:0px; +} + +#links li{ + border-bottom: 1px dotted #bdd4f4; + padding:5px 0px; +} + +#links li a{ + color: #82774a; + text-decoration: none; +} + +#links li a:hover{ + color: #e50c0c; + text-decoration:none; +} diff --git a/share/static/forms.css b/share/static/forms.css new file mode 100644 index 0000000..3e50f9b --- /dev/null +++ b/share/static/forms.css @@ -0,0 +1,65 @@ +/* ------------------------------------------------ + FORMS CAT01 +------------------------------------------------ */ + +table.cat01 { + width: 500px; + padding: 2px; + background: #ffffff; + margin: 10px 0px 0px 130px; + font-family: arial, verdana, sans-serif; + font-size: 90%; +} + +td.cat01a, .cat01b, .cat01c { + font-size: 90%; + width: 100px; + background: #ff6600; + color: #ffffff; + border: 1px solid #ffffff; +} + +td.cat01b { + background: #ffffff; + color: #000000; +} + +td.cat01c { + background: #ffffff; + color: #000000; + text-align: right; + border-top: 10px solid #ffffff; +} + +td.cat01d { + font-size: 80%; + background: #fff190; + color: #000000; + padding: 3px; + border-top: 10px solid #ffffff; +} + +label.cat01 { + font-family: arial, verdana, sans-serif; + font-size: 90%; + margin: 0 0 0 2px; +} + +input.cat01a { + font-family: arial, verdana, sans-serif; + font-size: 90%; + background: #cccccc; + width: 380px; +} + +input.cat01b { + width: 100px; +} + +textarea.cat01a { + font-family: arial, verdana, sans-serif; + font-size: 90%; + background: #cccccc; + width: 380px; +} + diff --git a/share/static/images/001.html b/share/static/images/001.html new file mode 100755 index 0000000..a8f5dd9 --- /dev/null +++ b/share/static/images/001.html @@ -0,0 +1,23 @@ + + +Aleo Flash Intro Banner Maker + + +
+ + + + + + + + +
+ + \ No newline at end of file diff --git a/share/static/images/001.swf b/share/static/images/001.swf new file mode 100755 index 0000000..d054dc3 Binary files /dev/null and b/share/static/images/001.swf differ diff --git a/share/static/images/Thumbs.db b/share/static/images/Thumbs.db new file mode 100755 index 0000000..b523056 Binary files /dev/null and b/share/static/images/Thumbs.db differ diff --git a/share/static/images/adleft.png b/share/static/images/adleft.png new file mode 100755 index 0000000..3471e86 Binary files /dev/null and b/share/static/images/adleft.png differ diff --git a/share/static/images/back-body.jpg b/share/static/images/back-body.jpg new file mode 100755 index 0000000..444ae2d Binary files /dev/null and b/share/static/images/back-body.jpg differ diff --git a/share/static/images/blank.jpg b/share/static/images/blank.jpg new file mode 100755 index 0000000..db71154 Binary files /dev/null and b/share/static/images/blank.jpg differ diff --git a/share/static/images/cards_large.png b/share/static/images/cards_large.png new file mode 100644 index 0000000..e21dfd0 Binary files /dev/null and b/share/static/images/cards_large.png differ diff --git a/share/static/images/cards_small.png b/share/static/images/cards_small.png new file mode 100644 index 0000000..7acf85d Binary files /dev/null and b/share/static/images/cards_small.png differ diff --git a/share/static/images/catalyst.png b/share/static/images/catalyst.png new file mode 100644 index 0000000..6edeca1 Binary files /dev/null and b/share/static/images/catalyst.png differ diff --git a/share/static/images/conf_2008.jpg b/share/static/images/conf_2008.jpg new file mode 100755 index 0000000..d1910cc Binary files /dev/null and b/share/static/images/conf_2008.jpg differ diff --git a/share/static/images/dbic.png b/share/static/images/dbic.png new file mode 100644 index 0000000..aff2fcb Binary files /dev/null and b/share/static/images/dbic.png differ diff --git a/share/static/images/delicious.gif b/share/static/images/delicious.gif new file mode 100644 index 0000000..2bf0e5c Binary files /dev/null and b/share/static/images/delicious.gif differ diff --git a/share/static/images/epo-logo.png b/share/static/images/epo-logo.png new file mode 100644 index 0000000..8ea851e Binary files /dev/null and b/share/static/images/epo-logo.png differ diff --git a/share/static/images/footerback.jpg b/share/static/images/footerback.jpg new file mode 100755 index 0000000..6602407 Binary files /dev/null and b/share/static/images/footerback.jpg differ diff --git a/share/static/images/footerback.png b/share/static/images/footerback.png new file mode 100755 index 0000000..87ca1e1 Binary files /dev/null and b/share/static/images/footerback.png differ diff --git a/share/static/images/front-small.jpg b/share/static/images/front-small.jpg new file mode 100644 index 0000000..0eb4d1f Binary files /dev/null and b/share/static/images/front-small.jpg differ diff --git a/share/static/images/headback.png b/share/static/images/headback.png new file mode 100644 index 0000000..b780e1f Binary files /dev/null and b/share/static/images/headback.png differ diff --git a/share/static/images/header.jpg b/share/static/images/header.jpg new file mode 100755 index 0000000..859b1fd Binary files /dev/null and b/share/static/images/header.jpg differ diff --git a/share/static/images/header.png b/share/static/images/header.png new file mode 100644 index 0000000..2830061 Binary files /dev/null and b/share/static/images/header.png differ diff --git a/share/static/images/header_old.jpg b/share/static/images/header_old.jpg new file mode 100755 index 0000000..5ec87b0 Binary files /dev/null and b/share/static/images/header_old.jpg differ diff --git a/share/static/images/headerback.png b/share/static/images/headerback.png new file mode 100644 index 0000000..94115c8 Binary files /dev/null and b/share/static/images/headerback.png differ diff --git a/share/static/images/ie_logo.jpg b/share/static/images/ie_logo.jpg new file mode 100755 index 0000000..7a958f7 Binary files /dev/null and b/share/static/images/ie_logo.jpg differ diff --git a/share/static/images/ie_top_mid.jpg b/share/static/images/ie_top_mid.jpg new file mode 100755 index 0000000..3560e19 Binary files /dev/null and b/share/static/images/ie_top_mid.jpg differ diff --git a/share/static/images/ie_top_right.jpg b/share/static/images/ie_top_right.jpg new file mode 100755 index 0000000..2aa8fdf Binary files /dev/null and b/share/static/images/ie_top_right.jpg differ diff --git a/share/static/images/ironman-banner.png b/share/static/images/ironman-banner.png new file mode 100644 index 0000000..23a6f90 Binary files /dev/null and b/share/static/images/ironman-banner.png differ diff --git a/share/static/images/link_bot (copy).png b/share/static/images/link_bot (copy).png new file mode 100755 index 0000000..1a2e66e Binary files /dev/null and b/share/static/images/link_bot (copy).png differ diff --git a/share/static/images/link_bot.png b/share/static/images/link_bot.png new file mode 100755 index 0000000..6eda6b3 Binary files /dev/null and b/share/static/images/link_bot.png differ diff --git a/share/static/images/link_top (copy).png b/share/static/images/link_top (copy).png new file mode 100755 index 0000000..95a1bbb Binary files /dev/null and b/share/static/images/link_top (copy).png differ diff --git a/share/static/images/link_top.png b/share/static/images/link_top.png new file mode 100755 index 0000000..7726706 Binary files /dev/null and b/share/static/images/link_top.png differ diff --git a/share/static/images/main_content_side.png b/share/static/images/main_content_side.png new file mode 100644 index 0000000..b35843a Binary files /dev/null and b/share/static/images/main_content_side.png differ diff --git a/share/static/images/nav2.png b/share/static/images/nav2.png new file mode 100644 index 0000000..b341cd4 Binary files /dev/null and b/share/static/images/nav2.png differ diff --git a/share/static/images/nav2_alt.png b/share/static/images/nav2_alt.png new file mode 100644 index 0000000..029ade5 Binary files /dev/null and b/share/static/images/nav2_alt.png differ diff --git a/share/static/images/nav2foot.png b/share/static/images/nav2foot.png new file mode 100755 index 0000000..cd12fcd Binary files /dev/null and b/share/static/images/nav2foot.png differ diff --git a/share/static/images/nav2foot_alt.png b/share/static/images/nav2foot_alt.png new file mode 100755 index 0000000..8010f8b Binary files /dev/null and b/share/static/images/nav2foot_alt.png differ diff --git a/share/static/images/navcenter.png b/share/static/images/navcenter.png new file mode 100644 index 0000000..bbf8911 Binary files /dev/null and b/share/static/images/navcenter.png differ diff --git a/share/static/images/navcenter_alt.png b/share/static/images/navcenter_alt.png new file mode 100644 index 0000000..9d8f2da Binary files /dev/null and b/share/static/images/navcenter_alt.png differ diff --git a/share/static/images/navleft.png b/share/static/images/navleft.png new file mode 100644 index 0000000..ddf69fd Binary files /dev/null and b/share/static/images/navleft.png differ diff --git a/share/static/images/navright.png b/share/static/images/navright.png new file mode 100644 index 0000000..5db75a9 Binary files /dev/null and b/share/static/images/navright.png differ diff --git a/share/static/images/newyear-banner.jpg b/share/static/images/newyear-banner.jpg new file mode 100755 index 0000000..c110bd7 Binary files /dev/null and b/share/static/images/newyear-banner.jpg differ diff --git a/share/static/images/oscon.png b/share/static/images/oscon.png new file mode 100755 index 0000000..360a26d Binary files /dev/null and b/share/static/images/oscon.png differ diff --git a/share/static/images/paper.png b/share/static/images/paper.png new file mode 100755 index 0000000..f6a217d Binary files /dev/null and b/share/static/images/paper.png differ diff --git a/share/static/images/path5193.png b/share/static/images/path5193.png new file mode 100644 index 0000000..42142dc Binary files /dev/null and b/share/static/images/path5193.png differ diff --git a/share/static/images/pronoh4.png b/share/static/images/pronoh4.png new file mode 100755 index 0000000..5e4c7eb Binary files /dev/null and b/share/static/images/pronoh4.png differ diff --git a/share/static/images/ring.jpg b/share/static/images/ring.jpg new file mode 100644 index 0000000..86f4ef8 Binary files /dev/null and b/share/static/images/ring.jpg differ diff --git a/share/static/images/server.png b/share/static/images/server.png new file mode 100755 index 0000000..6c5e2c1 Binary files /dev/null and b/share/static/images/server.png differ diff --git a/share/static/images/sidebot_back.png b/share/static/images/sidebot_back.png new file mode 100644 index 0000000..df8fb03 Binary files /dev/null and b/share/static/images/sidebot_back.png differ diff --git a/share/static/images/sideh4_back.jpg b/share/static/images/sideh4_back.jpg new file mode 100755 index 0000000..f5e2973 Binary files /dev/null and b/share/static/images/sideh4_back.jpg differ diff --git a/share/static/images/sideh4_back_bottom.jpg b/share/static/images/sideh4_back_bottom.jpg new file mode 100755 index 0000000..4a673ae Binary files /dev/null and b/share/static/images/sideh4_back_bottom.jpg differ diff --git a/share/static/images/sideh4_back_bottom_ie.jpg b/share/static/images/sideh4_back_bottom_ie.jpg new file mode 100755 index 0000000..f5030c5 Binary files /dev/null and b/share/static/images/sideh4_back_bottom_ie.jpg differ diff --git a/share/static/images/sideh4_back_ie.jpg b/share/static/images/sideh4_back_ie.jpg new file mode 100755 index 0000000..2db77c3 Binary files /dev/null and b/share/static/images/sideh4_back_ie.jpg differ diff --git a/share/static/images/sidetop_back.png b/share/static/images/sidetop_back.png new file mode 100755 index 0000000..43d23e6 Binary files /dev/null and b/share/static/images/sidetop_back.png differ diff --git a/share/static/images/t__lady_small.png b/share/static/images/t__lady_small.png new file mode 100644 index 0000000..4f862d7 Binary files /dev/null and b/share/static/images/t__lady_small.png differ diff --git a/share/static/images/t_small.png b/share/static/images/t_small.png new file mode 100644 index 0000000..37eef98 Binary files /dev/null and b/share/static/images/t_small.png differ diff --git a/share/static/images/t_small.xcf b/share/static/images/t_small.xcf new file mode 100644 index 0000000..fee4a6e Binary files /dev/null and b/share/static/images/t_small.xcf differ diff --git a/share/static/images/title.gif b/share/static/images/title.gif new file mode 100644 index 0000000..cf08b52 Binary files /dev/null and b/share/static/images/title.gif differ diff --git a/share/static/images/title.png b/share/static/images/title.png new file mode 100644 index 0000000..0593bf5 Binary files /dev/null and b/share/static/images/title.png differ diff --git a/share/static/images/top-mid.jpg b/share/static/images/top-mid.jpg new file mode 100755 index 0000000..137be20 Binary files /dev/null and b/share/static/images/top-mid.jpg differ diff --git a/share/static/images/top_left.jpg b/share/static/images/top_left.jpg new file mode 100755 index 0000000..caedd9e Binary files /dev/null and b/share/static/images/top_left.jpg differ diff --git a/share/static/images/top_left.png b/share/static/images/top_left.png new file mode 100644 index 0000000..782bc16 Binary files /dev/null and b/share/static/images/top_left.png differ diff --git a/share/static/images/top_mid.jpg b/share/static/images/top_mid.jpg new file mode 100755 index 0000000..137be20 Binary files /dev/null and b/share/static/images/top_mid.jpg differ diff --git a/share/static/images/top_mid.png b/share/static/images/top_mid.png new file mode 100644 index 0000000..f02977c Binary files /dev/null and b/share/static/images/top_mid.png differ diff --git a/share/static/images/top_right.jpg b/share/static/images/top_right.jpg new file mode 100755 index 0000000..eb8bd7d Binary files /dev/null and b/share/static/images/top_right.jpg differ diff --git a/share/static/images/top_right.png b/share/static/images/top_right.png new file mode 100644 index 0000000..764ca47 Binary files /dev/null and b/share/static/images/top_right.png differ diff --git a/share/static/images/xmas-banner.jpg b/share/static/images/xmas-banner.jpg new file mode 100755 index 0000000..33aaa26 Binary files /dev/null and b/share/static/images/xmas-banner.jpg differ diff --git a/share/static/images/you_small.png b/share/static/images/you_small.png new file mode 100644 index 0000000..89e8068 Binary files /dev/null and b/share/static/images/you_small.png differ diff --git a/share/static/maincontent.css b/share/static/maincontent.css new file mode 100755 index 0000000..65ecba7 --- /dev/null +++ b/share/static/maincontent.css @@ -0,0 +1,249 @@ +/* ------------------------------------------------ + MAIN CONTENT WITH NAVIGATION BARS +------------------------------------------------ */ + + +#wrap2{ + + background: #fff; + padding-top: 140px; + padding-bottom: 0px; + position: relative; +} + + +/* ------------------------------------------------ + INNER/LOWER NAVIGATION BAR +------------------------------------------------ */ + + +#nav2 { + position: relative; + height: 25px; + background: #000 url(images/nav2.png); + margin-right: 232px; + border-left: 0px solid #fff; +} + +#nav2 ul { + margin:0px; + padding-left: 10px; + list-style:none; + background: #ff0000; +} + +#nav2 li{ + font-family: tahoma, arial, sans-serif; + font-size: 10pt; + height: 25px; + font-weight: normal; + font-variant: small-caps; + float: left; + list-style:none; +} + +#nav2 li a{ + color: #fff; + text-decoration: none; + display: block; + padding: 0px 8px 0px; + height: 25px; + line-height: 25px; + float: left; + border-left: 1px solid #aaaaaa; + border-right: 1px solid #aaaaaa; + text-align: center; + background: #a64400 url(images/nav2.png); + list-style:none; +} + +#nav2 li a:hover{ + color: #fff; + line-height: 25px; + border-left: 1px solid #aaaaaa; + border-right: 1px solid #aaaaaa; + background: #aaaaaa url(images/nav2_alt.png); +} + +#nav2 li a.current{ + color: #000; + text-decoration: none; + display: block; + padding: 0px 8px 0px; + height: 25px; + line-height: 25px; + float: left; + border-left: 1px solid white; + border-right: 1px solid white; + text-align: center; + background: #fff; + list-style:none; +} + +#nav2 li a.current:hover{ + color: #fff; + line-height: 25px; + border-left: 1px solid #aaaaaa; + border-right: 1px solid #aaaaaa; + background: #aaaaaa url(images/nav2_alt.png); +} + +/* ------------------------------------------------ + CHANGEABLE PAGE HEADER +------------------------------------------------ */ + +#header { + + height: 130px; + background: #000000; + margin-right: 224px; + border-left: 0px solid #fff; +} + +#header_table { + border: 1px solid black; +} + +h3.header{ + font-family: tahoma, arial, sans-serif; + font-size: 160%; + font-weight: bold; + color: #fff; + padding: 6px 10px 0px 4px; + margin-top: 0px; + border: 0px; +} + + + +td.text { + text-align: center; + color: #cfcfcf; + border-top: 1px solid #333333; + background: #333333; + padding: 5px; + font-size: 80%; +} + +td a.header { + color: #ffffff; +} + +td a.header:hover { + color: #ffcc00; +} + + +/* ------------------------------------------------ + MAIN PAGE CONTENT CONTAINER/TAGS +------------------------------------------------ */ + + +#maincontent { + padding: 10px 0px 80px 0px; + background: #ffffff; + background-position: top right; + border-right: #333333 solid 232px; +} + +#maincontent p,pre { + margin: 10px 25px 0px 130px; + line-height: 130%; + font-size: 110%; +} + +#maincontent p.frontpage { + margin: 10px 270px 10px 10px; + line-height: 140%; + font-size: 120%; + font-family: Times, serif; +} + +#maincontent pre { + font-family: fixed; +} + +#maincontent p.image_captions { + margin: 10px 25px 0px 130px; + font-family: verdana, arial, sans-serif; + line-height: 110%; + font-size: 80%; + text-align: left; + color: #cc4400; +} + +#maincontent p.quote { + margin: 10px 10px 0 5px; + width: 100px; + float: left; + color: #333333; + font-family: verdana, arial, sans-serif; + line-height: 110%; + font-size: 90%; + text-align: center; + background: #cfcfcf; + padding: 9px 6px 9px 6px; + border: 0px double #e87a03; +} + +#maincontent p.subtitle { + color: #224e9f; + font-family: verdana, arial, sans-serif; + font-size: 100%; + margin: 4px 25px 0px 130px; +} + +#maincontent p.description { + font-size: 90%; + margin: 0px 25px 0px 130px; +} + +#maincontent p.published_at { + font-size: 90%; + margin: 0px 25px 0px 130px; +} + +#maincontent p.footnotes { + font-size: 90%; + margin: 6px 25px 0px 130px; +} + +#maincontent h2{ + font-family: verdana, arial, sans-serif; + font-size: 200%; + color: #333333; + text-align: center; + font-weight: normal; + margin: 0px 0px 15px 130px; + border-bottom: 0px solid #ff6600; +} + +#maincontent h2.frontpage { + font-family: Tahoma, Arial, sans-serif; + font-size: 140%; + font-weight: normal; + color: #ff6600; + padding-bottom: 2px; + border-bottom: 0px solid #ff6600; + margin: 30px 0px 5px 0px; +} + +#maincontent h3{ + font-family: Tahoma, Arial, sans-serif; + font-size: 140%; + font-weight: normal; + color: #333333; + padding-bottom: 2px; + border-bottom: 1px solid #ff6600; + margin: 30px 0px 5px 130px; +} + +#maincontent h4{ + font-family: Tahoma, Arial, sans-serif; + font-size: 120%; + font-weight: normal; + color: #ff6600; + margin: 10px 0px 0px 130px; +} + + diff --git a/share/static/one_off.css b/share/static/one_off.css new file mode 100644 index 0000000..d6a213e --- /dev/null +++ b/share/static/one_off.css @@ -0,0 +1,67 @@ +/* ------------------------------------------------ + TRADING CARD LAYOUT TAG +------------------------------------------------ */ + +#trading_card_image { + width: 600px; + height: 1000px; + overflow: scroll; + margin: 20px 0px 10px 130px; +} + +#header_table { + width: 500px; + height: 64px; + overflow: scroll; + background: url(images/blank.jpg) no-repeat; + padding: 6px 0px 0px 0px; + margin: 0px 0px 0px 0px; +} + +/* ------------------------------------------------ + PLAYER TAGS +------------------------------------------------ */ + +#player { + margin: 10px 10px 10px 10px; +} + + +/* ------------------------------------------------ + FRONT PAGE TABLE +------------------------------------------------ */ + + +td.td1 { + padding: 5px; + height: 120px; + background: url(http://ironman.enlightenedperl.org/munger/mybadge/male/mst.png) no-repeat; + background-position: center; + border-right: 1px solid #000000; +} + +td.td2 { + padding: 5px; + height: 120px; + background: url(images/you_small.png) no-repeat; + background-position: center; +} + +td.td3 { + padding: 5px; + height: 120px; + background: url(images/front-small.jpg) no-repeat; + background-position: center; + border-right: 1px solid #000000; +} + +td.td4 { + padding: 5px; + height: 120px; + background: url(images/you_small.png) no-repeat; + background-position: center; +} + + + + diff --git a/share/static/reset.css b/share/static/reset.css new file mode 100755 index 0000000..a6367c2 --- /dev/null +++ b/share/static/reset.css @@ -0,0 +1,46 @@ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td { + margin: 0; + padding: 0; + border: 0; + outline: 0; + font-weight: inherit; + font-style: inherit; + font-size: 100%; + font-family: inherit; + vertical-align: baseline; +} +/* remember to define focus styles! */ +:focus { + outline: 0; +} +body { + line-height: 1; + color: black; + background: white; +} +ol, ul { + list-style: none; +} +/* tables still need 'cellspacing="0"' in the markup */ +table { + border-collapse: separate; + border-spacing: 0; +} +caption, th, td { + text-align: left; + font-weight: normal; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ""; +} +blockquote, q { + quotes: "" ""; +} \ No newline at end of file diff --git a/share/static/scnavbar.css b/share/static/scnavbar.css new file mode 100755 index 0000000..0d7a8e0 --- /dev/null +++ b/share/static/scnavbar.css @@ -0,0 +1,152 @@ +/* ------------------------------------------------ + TOP SHADOWCAT AREA +------------------------------------------------ */ + +#title { + position: absolute; + top: 0px; + left: 6px; + z-index: 999; + height: 146px; + width: 950px; +} + +#tagline { + position: absolute; + top: 122px; + right: 5px; + z-index: 999; + text-align: right; + font-variant: small-caps; + font-family: arial, sans-serif; + font-size: 80%; + color: #ccc; +} + +#nav { + position: absolute; + top: 0px; + left: 0px; + right: 0px; + margin: 0px 0px 0px 0px; + z-index: 990; + height: 46px; + background: #fff; +} + +#nav div.left { + position: absolute; + top: 0px; + left: 0px; + z-index: 991; + height: 140px; + width: 100px; + background: url(images/top_left.jpg) no-repeat; +} + +#nav div.center { + position: absolute; + top: 0px; + left: 99px; + right: 99px; + z-index: 991; + height: 140px; + background: url(images/top-mid.jpg) repeat-x; +} + +#nav div.right { + position: absolute; + top: 0px; + right: 0px; + z-index: 991; + height: 140px; + width: 100px; + background: url(images/top_right.jpg) no-repeat; +} + +#navlinks { + position: absolute; + right: 132px; + top: 0px; + height: 20px; +} + +#navlinksright { + position: absolute; + right: 0px; + top: 0px; + height: 20px; + width: 8px; + background: #ffffff url(images/navright.png) no-repeat; +} + +#navlinkscenter { + top: 0px; + height: 20px; + background: #ffffff url(images/navcenter.png) repeat-x; + padding: 0px 15px 0px 15px; +} + +#navlinksleft { + position: absolute; + left: 0px; + top: 0px; + height: 20px; + width: 8px; + background: #ffffff url(images/navleft.png) no-repeat; +} + + +#nav ul { + margin:0px; + padding-left: 0px; + list-style:none; + background: #ff0000; +} + +#nav li{ + font-family: tahoma, arial, sans-serif; + font-size: 10pt; + height: 18px; + font-weight: normal; + float: left; + list-style:none; +} + +#nav li a.line{ + color: #fff; + text-decoration: none; + display: block; + padding: 0px 5px 0px; + height: 18px; + float: left; + border-left: 1px solid silver; + text-align: center; + list-style: none; +} + +#nav li a.line:hover{ + color: #ffffff; + background: url(images/navcenter_alt.png) repeat-x; + border-left: 1px solid black; +} + +#nav li a.endright{ + color: #fff; + text-decoration: none; + display: block; + padding: 0px 5px 0px; + height: 18px; + float: left; + border-right: 1px solid silver; + border-left: 1px solid silver; + text-align: center; + list-style: none; +} + +#nav li a.endright:hover{ + color: #ffffff; + border-right: 1px solid black; + border-left: 1px solid black; + background: url(images/navcenter_alt.png) repeat-x; +} diff --git a/share/static/sidebars.css b/share/static/sidebars.css new file mode 100755 index 0000000..7d83b31 --- /dev/null +++ b/share/static/sidebars.css @@ -0,0 +1,125 @@ +/* ------------------------------------------------ + SIDE BLOCK +------------------------------------------------ */ + +#sidebar { + float: right; + width: 230px; + background: #333333; + border-left: 1px solid #333333; + border-right: 1px solid #333333; + margin-bottom: 0px; + margin-right: 0px; +} + + + +#sidebar ul { + padding: 0px 0px 0px 0px; + background-color: inherit; +} + +#sidebar li{ + text-indent: 0px; + line-height: 20px; + margin-left: 30px; + list-style: url(images/link_top.png) disc; +} + +#sidebar li:hover{ + list-style: url(images/link_bot.png) disc; +} + +#sidebar li a{ + font-size: 90%; + display: block; + color: #000000; + text-decoration: none; + background: inherit; + border-bottom: 1px dotted #7991a1; + margin-right: 4px; +} + +#sidebar li a:hover{ + color: #ff6600; + background: inherit; + list-style-image: url(images/link_bot.png); +} + +h4.sidebar { + font-family: Tahoma, Arial, sans-serif; + font-size: 115%; + line-height: 35px; + font-weight: normal; + color: #cfcfcf; + text-align: center; + font-variant: small-caps; +} + +div.topsidebar { + width: 230px; + height: 75px; + background: #333333 url(images/sidetop_back.png); + margin: 0px 0 0px 0; +} + +div.botsidebar { + width: 230px; + height: 75px; + background: #333333 url(images/sidebot_back.png); +} + +div.h4sidebarnav { + width: 230px; + height: 37px; + background: #333333 url(images/sideh4_back.jpg) no-repeat; +} + + +div.h4sidebar2 { + width: 230px; + height: 37px; + background: #333333 url(images/sideh4_back_bottom.jpg) no-repeat; + margin: 0px 0 5px 0; +} + +#sidebar p { + font-size: 85%; + font-family: arial, sans-seif; + margin: 6px 3px 4px 3px; +} + +div.textblock { + border-left: 5px solid #333333; + border-right: 5px solid #333333; + background: #fff; + padding: 5px 0px 5px 0px; +} + +/* ------------------------------------------------ + SUBMIT BUTTONS CONTAINER/TAGS +------------------------------------------------ */ + +#submit_buttons { + float: left; + width: 120px; + height: 11px; + padding: 2px; + background: #faa140; + border: #ff6600 solid 1px; + margin: 62px 0px 0px 100px; +} + +#submit_buttons a { + font-family: arial; + font-size: 8pt; + font-weight: bold; + color: #666; +} + +#submit_buttons a:hover { + font-family: arial; + font-size: 8pt; + font-weight: bold; + color: #f00; +}