source: tags/1.0.0/css/codebase.inc.css @ 1

Last change on this file since 1 was 1, checked in by scdev, 19 years ago

Initial import.

File size: 996 bytes
Line 
1/**
2 * codebase.css
3 * code by strangecode :: www.strangecode.com :: this document contains copyrighted information
4 *
5 * CSS used in codebase templates and scripts that generate HTML. Do not arbitrarily
6 * edit this code! This file is used between many sites and modifying it may result
7 * in something breaking. Instead, overwrite these values in a specific site by
8 * adding new definitions to a screen.css file.
9 */
10
11
12/*_____________________ MESSAGING SYSTEM ____________________*/
13.codebasemsg
14{
15    font-family: verdana,geneva,arial,sans-serif;
16}
17
18.success, .notice, .warning, .error
19{
20    margin: 0 0 6px 0;
21    padding: 5px;
22    background: #fff;
23    border: 1px solid white;
24}
25
26.success
27{
28    color: #090;
29    border-color: #090;
30}
31
32.notice
33{
34    color: #C60;
35    border-color: #C60;
36}
37
38.warning, .error
39{
40    color: #f00;
41    border-color: #f00;
42}
43
44/* BEAU: How about a seperate class for the $fv->err() function to print? At the moment it uses the above error definition, but we could use a "form error {" one too. */
Note: See TracBrowser for help on using the repository browser.