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

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

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

File size: 1.6 KB
RevLine 
[1]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
[263]11/* App.inc.php ------------------------------------------------------ */
[98]12.sc-msg { font-family: verdana,geneva,arial,sans-serif; }
[102]13.sc-msg-warning,
14.sc-msg-error,
15.sc-msg-success,
[98]16.sc-msg-notice {
[1]17    margin: 0 0 6px 0;
18    padding: 5px;
19    background: #fff;
[98]20    color: #f00;
21    border: 1px solid #f00;
[1]22}
[98]23.sc-msg-success { color: #090; border-color: #090; }
24.sc-msg-notice { color: #C60; border-color: #C60; }
[1]25
[263]26/* PEdit.inc.php ---------------------------------------------------- */
[98]27.sc-pedit-form {}
28.sc-pedit-item,
29.sc-pedit-buttons { margin: .75em 0; }
[107]30.sc-pedit-buttons { clear: both; }
[98]31#sc-pedit-versions-table {
32    margin-bottom: .75em;
33    border-collapse: collapse;
34    border-spacing: 0;
[1]35}
[98]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;
[97]42}
[98]43#sc-pedit-versions-table th {
44    white-space: nowrap;
[97]45}
[257]46
[263]47/* Utilities.inc.php ------------------------------------------------ */
[257]48.sc-highlightwords {
49    background-color: #EBFE00;
50    color: #000;
[263]51}
52
53/* Captcha.inc.php -------------------------------------------------- */
54#sc-captcha {
55    font-size: 0.5em;
56    line-height: 0.8em;
[257]57}
Note: See TracBrowser for help on using the repository browser.