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

Last change on this file since 295 was 295, checked in by quinn, 16 years ago

Updated example config file. Added admin2.inc.css and minor corrections into HTML. Module maker fixes.

File size: 1.7 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/* App.inc.php ------------------------------------------------------ */
12.sc-msg { z-index: 2000000000; } /* Close to the maximum of a 32-bit integer. */
13.sc-msg-success,
14.sc-msg-notice,
15.sc-msg-warning,
16.sc-msg-error {
17    margin: 0 0 6px 0;
18    padding: 5px;
19    background: #fff;
20    color: #f00;
21    border: 1px solid #f00;
22}
23.sc-msg-success { color: #090; border-color: #090; }
24.sc-msg-notice { color: #C60; border-color: #C60; }
25
26form .sc-msg-success,
27form .sc-msg-notice,
28form .sc-msg-warning,
29form .sc-msg-error {
30    border-style: none;
31    padding: 0;
32}
33
34/* PEdit.inc.php ---------------------------------------------------- */
35.sc-pedit-form {}
36.sc-pedit-item,
37.sc-pedit-buttons { margin: .75em 0; }
38.sc-pedit-buttons { clear: both; }
39#sc-pedit-versions-table {
40    margin-bottom: .75em;
41    border-collapse: collapse;
42    border-spacing: 0;
43}
44#sc-pedit-versions-table th, 
45#sc-pedit-versions-table td {
46    border-bottom: 1px solid #CC9;
47    margin: 0;
48    padding: 2px 10px;
49    vertical-align: baseline;
50}
51#sc-pedit-versions-table th {
52    white-space: nowrap;
53}
54
55/* Utilities.inc.php ------------------------------------------------ */
56.sc-highlightwords {
57    background-color: #EBFE00;
58    color: #000;
59}
60
61/* Captcha.inc.php -------------------------------------------------- */
62#sc-captcha {
63    font-size: 0.5em;
64    line-height: 0.8em;
65}
Note: See TracBrowser for help on using the repository browser.