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

Last change on this file since 263 was 263, checked in by quinn, 17 years ago

Added #sc-captcha to codebase.inc.css.

File size: 1.6 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 { font-family: verdana,geneva,arial,sans-serif; }
13.sc-msg-warning,
14.sc-msg-error,
15.sc-msg-success,
16.sc-msg-notice {
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
26/* PEdit.inc.php ---------------------------------------------------- */
27.sc-pedit-form {}
28.sc-pedit-item,
29.sc-pedit-buttons { margin: .75em 0; }
30.sc-pedit-buttons { clear: both; }
31#sc-pedit-versions-table {
32    margin-bottom: .75em;
33    border-collapse: collapse;
34    border-spacing: 0;
35}
36#sc-pedit-versions-table th, 
37#sc-pedit-versions-table td {
38    border-bottom: 1px solid #CC9;
39    margin: 0;
40    padding: 2px 10px;
41    vertical-align: baseline;
42}
43#sc-pedit-versions-table th {
44    white-space: nowrap;
45}
46
47/* Utilities.inc.php ------------------------------------------------ */
48.sc-highlightwords {
49    background-color: #EBFE00;
50    color: #000;
51}
52
53/* Captcha.inc.php -------------------------------------------------- */
54#sc-captcha {
55    font-size: 0.5em;
56    line-height: 0.8em;
57}
Note: See TracBrowser for help on using the repository browser.