[Comoblog-commit] comoblog/modules/mod_tunelog/css mod_tunelog.css.php, NONE, 1.1
Status: Inactive
Brought to you by:
markwallis
|
From: iamdecal <iam...@us...> - 2006-10-22 11:44:24
|
Update of /cvsroot/comoblog/comoblog/modules/mod_tunelog/css In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv27709/modules/mod_tunelog/css Added Files: mod_tunelog.css.php Log Message: work in progress, ditching this server cos its borked ;( --- NEW FILE: mod_tunelog.css.php --- <?php require_once (dirname(__FILE__).'/../../../include/config.inc.php'); Header ('Content-type: text/css'); if (in_array('mod_tunelog', $SIDEBAR_MODULES)) $mod_pos = 'sidebar'; else $mod_pos = 'top'; if ($mod_pos == 'sidebar') { echo ' #mod_tunelog { font-size: '.CFG_MOD_TUNELOG_FONT_SIZE.'px; font-family: '.CFG_MOD_TUNELOG_FONT_FAMILY.'; color: #'.CFG_MOD_TUNELOG_COLOR.'; } #mod_tunelog ul { margin: 0; padding: 0; } #mod_tunelog li { list-style-type: none; padding-bottom : 5px; } #mod_tunelog a { color: #'.CFG_MOD_TUNELOG_A_COLOR.'; text-decoration: '.CFG_MOD_TUNELOG_A_TEXT_DECORATION.'; } #mod_tunelog a:hover { color: #'.CFG_MOD_TUNELOG_A_HOVER_COLOR.'; text-decoration: '.CFG_MOD_TUNELOG_A_HOVER_TEXT_DECORATION.'; } /* in the main section */ #tunes { float: left; width: '.(CFG_PAGE_WIDTH-CFG_SIDEBAR_WIDTH-30).'px; text-decoration: none; letter-spacing: -2px font-size:32px; font-family: '.CFG_MOD_TUNELOG_FONT_FAMILY.'; color: #'.CFG_MOD_TUNELOG_COLOR.'; } #tunes h2 { font-family: '.CFG_PAGE_TITLE_FONT_FAMILY.'; font-size: '.CFG_PAGE_TITLE_FONT_SIZE.'px; font-style: '.CFG_PAGE_TITLE_FONT_STYLE.'; color: #'.CFG_PAGE_TITLE_COLOR.'; } #tunetable { float: left; width: '.(CFG_PAGE_WIDTH-CFG_SIDEBAR_WIDTH-30).'px; margin: 5px; padding: 5px; border: '.CFG_POST_BORDER_WIDTH.'px '.CFG_POST_BORDER_STYLE.' #'.CFG_POST_BORDER_COLOR.'; } #tunetable td { font-family: '.CFG_POST_FONT_FAMILY.'; font-size: '.CFG_POST_FONT_SIZE.'px; font-style: '.CFG_POST_FONT_STYLE.'; color: #'.CFG_POST_COLOR.'; padding:2px; } #tunes p { font-family: '.CFG_POST_FONT_FAMILY.'; font-size: '.CFG_POST_FONT_SIZE.'px; font-style: '.CFG_POST_FONT_STYLE.'; color: #'.CFG_POST_COLOR.'; margin: 0; padding: 10px; } '; } mysql_close(); ?> |