/*
 * tracker.css - sample CSS layout for dumpstats(), dumpretiredstats(),
 * index_sample.php, and retired_sample.php
 *
 * Author: danomac
 * Date: 12-Sep-04
 *
 * Use this to modify how the table looks, or copy these contents into your
 * site's CSS layout file, and point the two scripts to it.
 *
 * The two functions rely on having a script file with <HEAD> tags already,
 * so when you use the functions make sure that these definitions are somewhere
 * within your script's scope!
 *
 * Copyright (C) 2004 danomac
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

/*
 * these four are the default styles used on hyperlinks.
 * comment them out if you have your own settings.
 */
a:link {
	color: white;
	text-decoration: none;
	background-color: transparent;
}

a:visited {
	color: white;
	text-decoration: none;
	background-color: transparent;
}

a:hover {
	text-decoration: underline;
}

a:active {
	text-decoration: underline;
}

/*
 * Default HTML body values - comment this out if you use
 * your own settings!
 */
body {
	font: 12px tahoma, verdana, arial, sans-serif;
	background-color: #0b0823;
	color: #999999;
}

/*
 * The outer stats table (this will contain the inner table,
 * which will hold all of the stats)
 */
table.trkOuter {
	width: 70%;
	border-top: 1px solid black;
	border-bottom: 2px solid black;
	border-left: 1px solid black;
	border-right: 2px solid black;
}

/*
 * The inner stats table, this one actually shows the torrent statistics
 */
table.trkInner {
	background-color: black;
/*	width: 100%;*/
	border: 0px solid black;
	border-collapse: separate;
	border-spacing: 1px 1px;
}
td {
	height: 20pt;
}

/*
 * Odd row in tracker table
 */
td.trkOdd, td.odd, tr.com_header, .odd, td.ip, td.bytes{
	font: 11px tahoma, verdana, arial, sans-serif;
	background-color: #2b313f;
}

/*
 * Even row in tracker table
 */
td.trkEven, td.even, tr.com_body, .even {
	font: 11px tahoma, verdana, arial, sans-serif;
	background-color: #495263;
}

/*
 * The table heading background color
 */
th.trkHeading, th {
	font: 13px tahoma, verdana, arial, sans-serif;
	background-color: #191d26;
	padding: 4px;
	border-bottom: 2px solid #272936;
}

h1 { /* Tracker Header/Title */
	font: 24px verdana, sans-serif;
	text-align: center;
	text-decoration: none;
}

#nome { /* "Notes" / Smaller Page Headers */
	font: 11px verdana, sans-serif;
	color:#CCCCCC;
}
td.name, td.download, td.bytes, td.date, td.infolink, td.admin {

    white-space:               nowrap                ;

}

td.download, td.percent, td.infolink, td.admin, td.ip {

    text-align:                center                ;

}

td.bytes, td.connected {

    text-align:                right                 ;

}

td.number, td.number_red, td.number_yellow, td.number_green {

    text-align:                center                ;

}



