~ubuntu-drupal-devs/ubuntu-drupal-theme/6.x-2010

57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
1
/* $Id$ */
2
3
/**
4
 * Index:
5
 * 1. Body
6
 * 2. Header
7
 * 3. Subheader
8
 * 4. Content
9
 * 5. Sidebar
10
 * 6. Footer
11
 * 7. Nice Menus
66 by staging.profarius.com
Adding section in css files for advanced forums.
12
 * 8. Advanced Forum
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
13
 */
14
15
16
/**
17
 * 1. Body
18
 */
19
20
* {
21
  color: #000000;
22
}
23
24
body {
25
  color: #333333;
26
  background: #FFFFFF;
27
}
28
29
.container {
30
  background: #FFFFFF;
31
}
32
33
/**
34
 * 2. Header
35
 */
36
37
#header {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
38
  background: url("../images/header.png") repeat-x scroll 0 0 #796646;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
39
}
40
41
#header li {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
42
  border-left: 1px solid #2F1C0F;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
43
}
44
83 by Michael Lustfield
Finishing blue style, added minor css fix.
45
#header ul {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
46
  border-right: 1px solid #2F1C0F;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
47
}
48
49
#header li a {
58 by staging.profarius.com
Fixing a lost style.
50
  color: #FFFFFF;
51
  text-shadow: 1px 1px 1px #333333;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
52
}
53
54
#header li a.active, #header li a:hover {
55
  background: url("../images/mainnav.png") repeat scroll 0 0 transparent;
56
}
57
58
#header #search {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
59
  border: 2px solid #4F3B14;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
60
  background: #FFFFFF;
61
  box-shadow: inset #DFDFDF 2px 2px 2px;
62
  -moz-box-shadow: inset #DFDFDF 2px 2px 2px;
63
  -webkit-box-shadow: inset #DFDFDF 2px 2px 2px;
64
}
65
66
#header #search * {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
67
  color: #925B39;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
68
  background: transparent;
69
}
70
71
/**
72
 * 3. Subheader
73
 */
74
75
#subheader {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
76
  background: url("../images/dotted.png") repeat scroll 0 0 #B1A585;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
77
}
78
79
#subheader .container {
80
}
81
82
#subheader .container-inside {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
83
  background-color: #EEEEEE;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
84
  box-shadow: #DFDFDF 0 1px 1px;
85
  -moz-box-shadow: #DFDFDF 0 1px 1px;
86
  -webkit-box-shadow: #DFDFDF 0 1px 1px;
87
}
88
89
#subheader .links a:focus, #subheader .links a:hover,
90
#subheader .links a:active, #subheader .links li.active a {
91
  background-color: #EFEFEF;
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
92
  color: #4F3B14;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
93
}
94
95
#subheader .form-submit {
96
  background-color: #F0F0F0;
97
  border: 1px solid #CCCCCC;
98
}
99
100
#subheader .form-submit:hover {
101
  background-color:#f7f7f7;
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
102
  border: 1px solid #4F3B14;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
103
}
104
105
#subheader .form-text {
106
  background-color: #F0F0F0;
107
  border: 1px solid #CCCCCC;
108
}
109
110
#subheader .form-text:focus {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
111
  background-color: #EEEEEE;
112
  border: 1px solid #4F3B14;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
113
}
114
115
#subheader .block-search {
116
  float: right;
117
}
118
119
/* launchpad login */
120
#subheader #openid-launchpad-login-form input {
121
  border-right: 1px solid #CCCCCC;
122
  border-left: 1px solid #CCCCCC;
123
  background: url(../images/launchpad-logo.png) 4px 2px no-repeat;
124
}
125
126
/**
127
 * 4. Content
128
 */
129
130
#content {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
131
  background: url("../images/dotted.png") repeat scroll 0 0 #B1A585;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
132
}
133
134
#content .block h2 {
135
  color: #3D273A;
136
  border-bottom: dotted 1px #999999;
137
}
138
139
#content .block a {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
140
  color: #4F3B14;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
141
}
142
143
h1 {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
144
  color: #2F1C0F;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
145
}
146
147
#center h2 a {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
148
  color: #2F1C0F;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
149
}
150
151
.submitted {
152
  color: #777777;
153
}
154
155
.comment h3 a {
156
  color: #3D273A;
157
}
158
159
.comment {
160
  border-left: 1px dotted #CCCCCC;
161
  border-bottom: 1px dotted #CCCCCC;
162
}
163
164
.new {
165
  color: #555555;
166
}
167
168
.node .links a, .comment .links a {
169
  color: #555555;
170
}
171
172
.messages, .status {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
173
  background: #EEEEEE;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
174
  color: #444444;
175
}
176
177
/**
178
 * 5. Sidebar
179
 */
180
181
.sidebar .block {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
182
  background:  #EEEEEE;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
183
  box-shadow: #DFDFDF 0 2px 2px;
184
  -moz-box-shadow: #DFDFDF 0 2px 2px;
185
  -webkit-box-shadow: #DFDFDF 0 2px 2px;
186
}
187
188
/**
189
 * 6. Footer
190
 */
191
192
#footer {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
193
  background: url("../images/footer.png") repeat-x scroll 0 0 #D3CAAA;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
194
}
195
196
#footer .block h2 {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
197
  color: #C31B1B;
67 by staging.profarius.com
Inluding CSS to pull in trademarked content from an external location.
198
  font-size: 11px;
199
  font-weight: normal;
200
  margin: 0 0 9px;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
201
}
202
203
#footer .block a {
204
  border-bottom: dotted 1px #999999;
205
}
206
207
/**
208
 * 7. Nice Menus
209
 */
210
211
/* Reset Nice Menu CSS */
212
213
ul.nice-menu, ul.nice-menu a, ul.nice-menu ul, ul.nice-menu li, ul.nice-menu-down,
214
ul.nice-menu-down ul, ul.nice-menu-down li, ul.nice-menu li.menuparent,
215
ul.nice-menu li.menuparent a, ul.nice-menu li.menuparent a:hover,
216
ul.nice-menu li.menuparent:hover, ul.nice-menu li.menuparent:hover a {
217
  background-color: transparent;
218
  background-image: none;
219
}
220
221
ul.nice-menu, ul.nice-menu ul {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
222
  border-right: 1px solid #2F1C0F;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
223
}
224
225
#header ul.nice-menu li ul {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
226
  border-right: 1px solid #2F1C0F;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
227
}
228
229
#header ul.nice-menu li ul li {
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
230
  background-color: #2F1C0F;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
231
}
232
233
#header ul.nice-menu li ul li a {
234
  background: none;
60 by staging.profarius.com
Making the 'Official Brown' theme and fixing two very trivial bugs.
235
  background-color: #796646;
57 by staging.profarius.com
Added new features and dropped color.module. Can now easily add and select pallette(theme) options. Much more work to do. Sanity for the night has been saved.
236
}
237
238
#header ul.nice-menu li ul li a:hover {
239
  background-image: url("../images/mainnav.png");
240
}
66 by staging.profarius.com
Adding section in css files for advanced forums.
241
242
/**
243
 * 8. Advanced Forums
244
 */
245