mirror of
https://github.com/BeitDina/AutoIndex.git
synced 2026-01-16 02:12:04 +01:00
134 lines
2.0 KiB
CSS
134 lines
2.0 KiB
CSS
/**
|
|
* An alternate stylesheet.
|
|
*
|
|
* @package AutoIndex
|
|
* @author Justin Hagstrom <JustinHagstrom@yahoo.com>
|
|
* @version 1.0.0 (February 03, 2005)
|
|
*
|
|
* @copyright Copyright (C) 2002-2005 Justin Hagstrom
|
|
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License (GPL)
|
|
*
|
|
* @link http://autoindex.sourceforge.net
|
|
*/
|
|
|
|
/* Body */
|
|
.autoindex_body, html
|
|
{
|
|
font-family: verdana, lucidia, sans-serif;
|
|
font-size: 13px;
|
|
background-color: #FCFCFC;
|
|
}
|
|
|
|
/* Images */
|
|
.autoindex_body img
|
|
{
|
|
border: none;
|
|
}
|
|
|
|
/* Tables */
|
|
.autoindex_table
|
|
{
|
|
width: 100%;
|
|
border: none;
|
|
border-spacing: 2px;
|
|
}
|
|
.light_row
|
|
{
|
|
background-color: #FEFEFE;
|
|
font-size: 12px;
|
|
}
|
|
.dark_row
|
|
{
|
|
background-color: #EEEEEE;
|
|
font-size: 12px;
|
|
}
|
|
.light_row:hover, .dark_row:hover
|
|
{
|
|
background-color: #FFF2BF;
|
|
}
|
|
.autoindex_td
|
|
{
|
|
border: 1px solid #FAFAFA;
|
|
font-size: 12px;
|
|
padding: 1px;
|
|
text-align: left;
|
|
white-space: nowrap;
|
|
}
|
|
.autoindex_td_right
|
|
{
|
|
border: 1px solid #FAFAFA;
|
|
font-size: 12px;
|
|
padding: 1px;
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
}
|
|
.autoindex_td:hover, .autoindex_td_right:hover
|
|
{
|
|
font-size: 12px;
|
|
padding: 1px;
|
|
border: 1px solid #FFCC00;
|
|
}
|
|
.autoindex_th
|
|
{
|
|
background-color: #FFCC00;
|
|
border: 1px solid #AA9339;
|
|
font-size: 12px;
|
|
padding: 2px;
|
|
}
|
|
|
|
/* Links */
|
|
.plain_link
|
|
{
|
|
color: #000000;
|
|
text-decoration: none;
|
|
}
|
|
.autoindex_a:visited, .autoindex_a:active
|
|
{
|
|
color: #00008F;
|
|
text-decoration: none;
|
|
}
|
|
.autoindex_a:link
|
|
{
|
|
color: #0000FF;
|
|
text-decoration: none;
|
|
}
|
|
.autoindex_a:hover
|
|
{
|
|
color: #392266;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Buttons */
|
|
.button
|
|
{
|
|
color: #707070;
|
|
background-color: #F2F6FC;
|
|
font-family: arial, sans-serif;
|
|
font-size: 11px;
|
|
text-align: left;
|
|
vertical-align: middle;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
border: 0px outset #CBCBCB;
|
|
padding: 3px 10px 3px 10px;
|
|
}
|
|
|
|
/* Misc. */
|
|
.paragraph
|
|
{
|
|
background: #F2F6FC;
|
|
color: #000020;
|
|
font-size: 13px;
|
|
}
|
|
.autoindex_hr
|
|
{
|
|
color: #000020;
|
|
background-color: #000020;
|
|
border: none;
|
|
width: 75%;
|
|
height: 1px;
|
|
}
|
|
.autoindex_small
|
|
{
|
|
font-size: 10px;
|
|
} |