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

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

adding old classes back into codebase.inc.css until new classes are added to codebase. specifically for lws site

File size: 1.3 KB
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/*_____________________ SC Messaging ____________________*/
12.sc-msg { font-family: verdana,geneva,arial,sans-serif; }
13
14.warning,
15.error,
16.success,
17.notice,
18.sc-msg-warning,
19.sc-msg-error,
20.sc-msg-success,
21.sc-msg-notice {
22    margin: 0 0 6px 0;
23    padding: 5px;
24    background: #fff;
25    color: #f00;
26    border: 1px solid #f00;
27}
28.success,
29.sc-msg-success { color: #090; border-color: #090; }
30.notice,
31.sc-msg-notice { color: #C60; border-color: #C60; }
32
33/*_____________________ pEdit Forms ____________________*/
34
35.sc-pedit-form {}
36
37.sc-pedit-item,
38.sc-pedit-buttons { margin: .75em 0; }
39
40#sc-pedit-versions-table {
41    margin-bottom: .75em;
42    border-collapse: collapse;
43    border-spacing: 0;
44}
45
46#sc-pedit-versions-table th, 
47#sc-pedit-versions-table td {
48    border-bottom: 1px solid #CC9;
49    margin: 0;
50    padding: 2px 10px;
51    vertical-align: baseline;
52}
53#sc-pedit-versions-table th {
54    white-space: nowrap;
55}
Note: See TracBrowser for help on using the repository browser.