source: trunk/css/codebase.inc.css @ 57

Last change on this file since 57 was 57, checked in by scdev, 18 years ago

css testing

File size: 1.0 KB
Line 
1*
2{
3    color: inherit;
4    background-color: inherit;
5}
6
7
8/**
9 * codebase.css
10 * code by strangecode :: www.strangecode.com :: this document contains copyrighted information
11 *
12 * CSS used in codebase templates and scripts that generate HTML. Do not arbitrarily
13 * edit this code! This file is used between many sites and modifying it may result
14 * in something breaking. Instead, overwrite these values in a specific site by
15 * adding new definitions to a screen.css file.
16 */
17
18
19/*_____________________ MESSAGING SYSTEM ____________________*/
20.codebasemsg
21{
22    font-family: verdana,geneva,arial,sans-serif;
23}
24
25.success, .notice, .warning, .error
26{
27    margin: 0 0 6px 0;
28    padding: 5px;
29    background: #fff;
30    border: 1px solid white;
31}
32
33.success
34{
35    color: #090;
36    border-color: #090;
37}
38
39.notice
40{
41    color: #C60;
42    border-color: #C60;
43}
44
45.warning, .error
46{
47    color: #f00;
48    border-color: #f00;
49}
50
51/* 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.