<?php
/*
#########################################################################################
## ##
## PHPeasynews - An easy to use functional news management script written in PHP ##
## Copyright 2003 ##
## ##
#########################################################################################
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
css.php file
*/
// Css infomation goes in here
?>
<style type="text/css">
<?php
//$css_tableheader = "#E7E7E7";
// Background of news main content
// Default: white
//$css_tablemain = "white";
?>
<!--
<?php if(($nobody) != ("1")){
echo 'body
{
font-family : Verdana;
font-size : 11px;
text-decoration : none;
}';
}else{
echo '.penbody
{
font-family : Verdana;
font-size : 11px;
text-decoration : none;
}';
}
?>
<?php
// CSS
// Background of news header
// Default: #E7E7E7
?>
.pennewsheader
{
font-family : Verdana;
font-size : 11px;
text-decoration : none;
background-color:<?php echo $css_tableheader; ?>
}
<?php
// Background of news main content
// Default: white
?>
.pentablemain
{
font-family : Verdana;
font-size : 11px;
text-decoration : none;
background-color:<?php echo $css_tablemain; ?>
}
<?php
// Install Page CSS... Non User Configurable
?>
.installtablemain
{
font-family : Verdana;
font-size : 11px;
text-decoration : none;
background-color:white
}
.installtables
{
font-family: Verdana;
background-color: rgb(243,243,243);
border: solid rgb(0,0,0) 1px;
width: 140px;
font-size:8pt;
}
<?php
// Colour on the "Written By, On, at" text on newsarchive
// Default: #878787
?>
.pennewsarchive
{
font-family : Verdana;
font-size : 11px;
text-decoration : none;
color : <?php echo $css_na_writtenbyonat; ?>
}
<?php
// Colour of the hyperlink on the newsarchive page...
// Default: #000080
?>
.penhyperlink{
font-family : Verdana;
font-size : 9px;
text-decoration : none;
color : <?php echo $css_hyperlink; ?>
}
.penhyperlinkdisabled{
font-family : Verdana;
font-size : 9px;
text-decoration : none;
color : black;
}
<?php
// Hyperlink colour on the newsarchive - Hover
// Default: #4040FF
?>
a.penhyperlink:hover{
font-family : Verdana;
font-size : 9px;
text-decoration : none;
color : <?php echo $css_hyperlink_hover; ?>
}
.form
{
font-family : Verdana;
font-size : 11px;
text-decoration : none;
}
-->
</style>