| 1 |
/* $Id: base.css,v 1.5 2008/10/27 20:55:29 jmburnz Exp $ */ |
/* $Id: base.css,v 1.6 2008/10/30 12:01:36 jmburnz Exp $ */ |
| 2 |
|
|
| 3 |
/** |
/** |
| 4 |
* @file base.css |
* @file base.css |
| 5 |
* Reset browser CSS and set global styles. |
* Helper classes. |
| 6 |
*/ |
*/ |
|
|
|
|
/** |
|
|
* Comment out what you dont need or want. |
|
|
* This is likely to be moved to .info once Drupal gets better |
|
|
* handling of large numbers of stylesheets - http://drupal.org/node/228818 |
|
|
*/ |
|
|
@import url("css/forms.css"); |
|
|
@import url("css/lists.css"); |
|
|
@import url("css/messages.css"); |
|
|
@import url("css/tables.css"); |
|
|
@import url("css/tabs.css"); |
|
|
@import url("css/type.css"); |
|
|
|
|
| 7 |
|
|
| 8 |
/*********************************************************** |
/*********************************************************** |
| 9 |
* Grid |
* Grid |
| 10 |
**********************************************************/ |
**********************************************************/ |
| 11 |
/** |
/** |
| 12 |
* Uncomment to show the grid, also uncomment the grid class on the #contanier wrapper |
* Uncomment to show the grid, also uncomment the grid class |
| 13 |
* in your subthemes page.tpl.php |
* on the #contanier wrapper in your subthemes page.tpl.php |
| 14 |
*/ |
*/ |
| 15 |
/*@import url("css/grid.css");*/ |
/*@import url("css/grid.css");*/ |
| 16 |
|
|
| 17 |
|
|
| 18 |
/*********************************************************** |
/*********************************************************** |
| 19 |
* Header |
* Blocks |
| 20 |
**********************************************************/ |
**********************************************************/ |
|
|
|
|
h1#site-name, |
|
|
div#site-name { |
|
|
font-size: 2em ; |
|
|
line-height: 1.5; |
|
|
margin: 0; |
|
|
padding: 0; |
|
|
font-weight: bold; |
|
|
} |
|
|
|
|
|
/*********************************************************** |
|
|
* Node |
|
|
**********************************************************/ |
|
|
div.node-unpublished { |
|
|
background-color: #FFF4F4; |
|
|
padding: 0.375em; |
|
|
} |
|
|
|
|
|
div.node div.unpublished { |
|
|
font: bold 3em Arial, Helvetica, sans-serif; |
|
|
text-align: center; |
|
|
color: #FFE9E7; |
|
|
padding: 0.375em; |
|
|
} |
|
|
|
|
|
|
|
|
/*********************************************************** |
|
|
* Blocks |
|
|
**********************************************************/ |
|
|
/* blocks page table */ |
|
|
tr .block {border: none;} |
|
|
|
|
| 21 |
/** |
/** |
| 22 |
* Edit links for blocks. |
* Edit links for blocks. |
| 23 |
*/ |
*/ |
| 24 |
div.block {position: relative;} |
div.block {position: relative;} |
|
|
|
| 25 |
div.block div.edit { |
div.block div.edit { |
| 26 |
display: none; |
display: none; |
| 27 |
position: absolute; |
position: absolute; |
| 33 |
font-size: 11px; |
font-size: 11px; |
| 34 |
background-color: #fff; |
background-color: #fff; |
| 35 |
} |
} |
|
|
|
| 36 |
div.block:hover div.edit {display: block;} |
div.block:hover div.edit {display: block;} |
|
|
|
| 37 |
.block .node, |
.block .node, |
| 38 |
.block .comment {margin-bottom: 0;} |
.block .comment {margin-bottom: 0;} |
| 39 |
|
|
| 40 |
|
/* blocks page table */ |
| 41 |
/*********************************************************** |
tr .block {border: none;} |
|
* Comments |
|
|
**********************************************************/ |
|
|
div.comment-unpublished { |
|
|
background-color: #FFF4F4!important; |
|
|
padding: 0.375em; |
|
|
} |
|
|
|
|
|
div.comment div.unpublished { |
|
|
font: bold 3em Arial, Helvetica, sans-serif; |
|
|
text-align: center; |
|
|
color: #FFE9E7; |
|
|
padding: 0.375em; |
|
|
} |
|
|
|
|
|
|
|
|
/*********************************************************** |
|
|
* Forum |
|
|
**********************************************************/ |
|
|
#forum table {width: 100%;} |
|
|
|
|
|
#forum tr td.forum { |
|
|
background-position: 5px 5px!important; |
|
|
background-position: 5px 5px; |
|
|
padding-left: 1.67em; |
|
|
} |
|
|
|
|
|
#forum tr td.forum .name {padding-left: 0.375em;} |
|
|
|
|
|
#forum div.indent {margin-left: 0.5em;} |
|
|
|
|
|
|
|
|
/*********************************************************** |
|
|
* Book |
|
|
**********************************************************/ |
|
|
.book-navigation .page-links { |
|
|
padding: 0.75em; |
|
|
margin-bottom: 1.5em; |
|
|
border: none; |
|
|
} |
|
|
|
|
|
.book-navigation .menu { |
|
|
padding: 1.5em 0 0 3em; |
|
|
margin: 0 0 1.5em 0; |
|
|
} |
|
|
|
|
|
|
|
|
/*********************************************************** |
|
|
* Profile |
|
|
**********************************************************/ |
|
|
.profile .picture { |
|
|
float: right; |
|
|
margin: 2em 0 1em 0.5em; /* LTR */ |
|
|
} |
|
|
|
|
|
/* Fix alignment on user profile page*/ |
|
|
.profile dt {margin: 1.4em 0 0 0;} |
|
| 42 |
|
|
| 43 |
|
|
| 44 |
/*********************************************************** |
/*********************************************************** |
| 45 |
* Admin, Misc. |
* Admin, Misc. |
| 46 |
**********************************************************/ |
**********************************************************/ |
| 47 |
div.admin {padding-top: 0;} |
div.admin {padding-top: 0;} |
|
|
|
| 48 |
div.admin-panel {padding: 1.5em 0 0 0;} |
div.admin-panel {padding: 1.5em 0 0 0;} |
| 49 |
div.admin-panel .body {padding: 0;} |
div.admin-panel .body {padding: 0;} |
| 50 |
div.admin-panel .description {margin: 0 0 1.5em 0; padding: 0;} |
div.admin-panel .description {margin: 0 0 1.5em 0; padding: 0;} |
| 55 |
#user-admin-filter ul li, |
#user-admin-filter ul li, |
| 56 |
#node-admin-filter ul li {list-style: none;} |
#node-admin-filter ul li {list-style: none;} |
| 57 |
|
|
| 58 |
.more-help-link {font-size: 0.9em; line-height: 1.667em;} |
.more-help-link {font-size: 0.9em; line-height: 1.667em;} |
|
|
|
|
/*span.admin-disabled {}*/ |
|
|
|
|
|
|
|
|
|
|
|
|
|