- <?
- /**
- * The CSS Base layout resources for this site
- *
- * @package base
- * @filesource
- * @see HTML_BASE_RESOURCE_PATH/Css.php
- * @copyright (c) http://Finn-Rasmussen.com
- * @license http://Finn-Rasmussen.com/license/ myPHP License conditions
- * @author http://Finn-Rasmussen.com
- * @version 1.9
- * @since 21-oct-2005
- */
-
- /**
- * @global String CSS_ONEPC The CSS Util
- */
- define('CSS_ONEPC' ,'baseOnepc');
- define('CSS_ONEPX' ,'baseOnepx');
- define('CSS_FLOAT_LEFT' ,'baseFloatLeft');
- define('CSS_FLOAT_CENTER' ,'baseFloatCenter');
- define('CSS_FLOAT_RIGHT' ,'baseFloatRight');
- define('CSS_HIDDEN' ,'baseHidden');
- define('CSS_HELP' ,'baseHelp');
- define('CSS_FILL_OUT' ,'baseFillOut');
- define('CSS_PRINTER' ,'basePrinter');
-
- /**
- * @global String CSS_PAGE_VIEW CSS Views
- */
- define('CSS_PAGE_VIEW' ,'basePageView');
-
- /**
- * @global String CSS_NORMAL_COLOR The CSS Normal Color for the whole site
- */
- define('CSS_NORMAL_COLOR' , '000');
-
- /**
- * @global String CSS_NORMAL_BACKGROUND The CSS Normal Background Color for the whole site
- */
- define('CSS_NORMAL_BACKGROUND' , 'fff');
-
- /**
- * @global String CSS_COLOR_HEADER The CSS XYZ class name for the whole site
- */
- if (!defined('CSS_COLOR_HEADER')) {
- define('CSS_COLOR_HEADER', DEFAULT_CSS_COLOR_HEADER);
- }
- if (!defined('CSS_COLOR_LIGHT')) {
- define('CSS_COLOR_LIGHT', DEFAULT_CSS_COLOR_LIGHT);
- }
- if (!defined('CSS_COLOR_DARK')) {
- define('CSS_COLOR_DARK', DEFAULT_CSS_COLOR_DARK);
- }
- if (!defined('CSS_ALIGN_LEFT')) {
- define('CSS_ALIGN_LEFT', DEFAULT_CSS_ALIGN_LEFT);
- }
- if (!defined('CSS_ALIGN_CENTER')) {
- define('CSS_ALIGN_CENTER', DEFAULT_CSS_ALIGN_CENTER);
- }
- if (!defined('CSS_ALIGN_RIGHT')) {
- define('CSS_ALIGN_RIGHT', DEFAULT_CSS_ALIGN_RIGHT);
- }
- if (!defined('CSS_LINK_COLOR')) {
- define('CSS_LINK_COLOR', DEFAULT_CSS_LINK_COLOR);
- }
- if (!defined('CSS_BORDER')) {
- define('CSS_BORDER', DEFAULT_CSS_BORDER);
- }
- if (!defined('CSS_FIELDSET')) {
- define('CSS_FIELDSET', DEFAULT_CSS_FIELDSET);
- }
- if (!defined('CSS_LEGEND')) {
- define('CSS_LEGEND', DEFAULT_CSS_LEGEND);
- }
- if (!defined('CSS_BODY')) {
- define('CSS_BODY', DEFAULT_CSS_BODY);
- }
- if (!defined('CSS_ARROW_HEADLINE')) {
- define('CSS_ARROW_HEADLINE', DEFAULT_CSS_ARROW_HEADLINE);
- }
-
- /**
- * @global String CSS_FILE_NAME_BASE The CSS File Name used all over
- */
- define('CSS_FILE_NAME_BASE' , 'base.css');
- define('CSS_FILE_NAME_TABLE' , 'table.css');
- define('CSS_FILE_NAME_LINK' , 'link.css');
- define('CSS_FILE_NAME_FORM' , 'form.css');
- define('CSS_FILE_NAME_MENU' , 'menu.css');
- define('CSS_FILE_NAME_TAB' , 'tab.css');
- define('CSS_FILE_NAME_LAYOUT' , 'layout.css');
- define('CSS_FILE_NAME_COMPONENT', 'component.css');
- define('CSS_FILE_NAME_CMS' , 'cms.css');
-
- /**
- * @global String CSS_FILES The CSS Files to use all over
- */
- if (!defined('CSS_FILES')) {
- define('CSS_FILES', CSS_FILES_INLINE);
- }
-
- /**
- * @global String CSS_FONTSIZE_SIZE_XXSMALL Common CSS styles
- */
- define('CSS_FONTSIZE_SIZE_XXSMALL' ,'xx-small');
- define('CSS_FONTSIZE_SIZE_MEDIUM' ,'medium');
- define('CSS_ARROW_HEADLINE_WIDTH' ,'1%');
- define('CSS_NO_REPEAT' ,'no-repeat');
- define('CSS_REPEAT_X' ,'repeat-x');
- define('CSS_FONT_FAMILY' ,'verdana,"lucida sans unicode",lucida,"lucida sans",sans-serif');
- define('CSS_FONT_SIZE' ,'11px');
- define('CSS_FONT_WEIGHT_BOLD' ,'bold');
- define('CSS_MARGIN_TOP' ,'10px');
- define('CSS_MARGIN_LEFT' ,'10px');
- define('CSS_MARGIN_RIGHT' ,'10px');
- define('CSS_MARGIN_BOTTOM' ,'10px');
- define('CSS_TEXT_ALIGN' ,'left');
- define('CSS_TEXT_DECORATION_NONE' ,'none');
- define('CSS_TEXT_DECORATION_UNDERLINE' ,'underline');
- define('CSS_STYLE_IMAGE_NONE' ,'none');
- define('CSS_BACKGROUND_REPEAT_X' ,'repeat-x');
- define('CSS_0PX' ,'0px');
- define('CSS_1PX' ,'1px');
- define('CSS_2PX' ,'2px');
- define('CSS_1PC' ,'1%' );
- define('CSS_BORDER_STYLE_SOLID' ,'solid');
- define('CSS_BORDER_STYLE_OUTSET' ,'outset');
- define('CSS_BORDER_STYLE_GROOVE' ,'groove');
- define('CSS_CURSOR_HELP' ,'help');
- define('CSS_NONE' ,'baseNONE');
- define('CSS_WIDTH_FILL_OUT' ,'100%');
-
- define('CSS_BODY_COLOR' ,CSS_NORMAL_COLOR);
- define('CSS_BODY_BACKGROUND' ,CSS_NORMAL_BACKGROUND);
- define('CSS_ARROW_HEADLINE_COLOR' ,'000');
- define('CSS_ARROW_HEADLINE_BACKGROUND' ,'f00');
- define('CSS_COLOR_HEADER_COLOR' ,'000');
- define('CSS_COLOR_HEADER_BACKGROUND' ,'aaa');
- define('CSS_COLOR_LIGHT_COLOR' ,CSS_NORMAL_COLOR);
- define('CSS_COLOR_LIGHT_BACKGROUND' ,'ddd');
- define('CSS_COLOR_DARK_COLOR' ,CSS_NORMAL_COLOR);
- define('CSS_COLOR_DARK_BACKGROUND' ,'ccc');
-
- define('CSS_BORDER_COLOR' ,CSS_NORMAL_COLOR);
- define('CSS_BORDER_BACKGROUND' ,CSS_NORMAL_BACKGROUND);
-
- ?>