Projet

Général

Profil

Paste
Télécharger (6,79 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / pixture_reloaded / color / colors.css @ 9525582e

1 85ad3d82 Assos Assos
/**
2
 * Pixture Reloaded Colors
3
 */
4
/* Main Wrappers */
5
html {
6
  color: #555555;
7
  background: #fdeaf7 url("../images/bg-wall.png") repeat-x left top;
8
}
9
10
#page {
11
  background: #ffffff;
12
}
13
14
15
/* HTML elements */
16
17
fieldset legend,
18
.form-item label {
19
  color: #666666;
20
}
21
22
blockquote {
23
  background: #f7f7f7;
24
}
25
26
/* Lists */
27
28
.item-list ul li {
29
  list-style-image: url("../images/bullet-round.png");
30
}
31
32
.links {
33
  color: #666666;
34
}
35
36
37
/* Menus */
38
39
li.leaf {
40
  list-style-image: url("../images/bullet-round.png");
41
}
42
43
li.collapsed {
44
  list-style-image: url("../images/bullet-sm-arrow-right.png");
45
}
46
47
li.expanded {
48
  list-style-image: url("../images/bullet-sm-arrow-down.png");
49
}
50
51
52
/* Links */
53
54
a:link,
55
a:visited,
56
a:active,
57
a.active {
58
  color: #b21f88;
59
}
60
61
a:hover,
62
a:focus {
63
  color: #d23fa8;
64
}
65
66
67
/* Tables */
68
69
tr.odd {
70
  background: #fdeaf7;
71
}
72
73
tr.even {
74
  background: #fffff0;
75
}
76
77
78
/* Header */
79
80
#header  {
81
  background: #b800a5 url("../images/header-tile.png") repeat-x left top;
82
}
83
84 74f6bef0 Assos Assos
.header-inner {
85 85ad3d82 Assos Assos
  background: transparent url("../images/header.png") no-repeat top left;
86
}
87
88
@media only screen and (max-width:320px) {
89 74f6bef0 Assos Assos
  #header,
90
  .header-inner {background: #b800a5;}
91 85ad3d82 Assos Assos
}
92
93
@media only screen and (min-width:321px) and (max-width:480px) {
94 74f6bef0 Assos Assos
  #header,
95
  .header-inner  {background: #b800a5;}
96 85ad3d82 Assos Assos
}
97
98
@media only screen and (min-width:481px) and (max-width:768px) {
99 74f6bef0 Assos Assos
  #header,
100
  .header-inner  {background: #b800a5;}
101 85ad3d82 Assos Assos
}
102
103
#site-slogan {
104
  color: #fefefe;
105
}
106
107
#site-name a,
108 74f6bef0 Assos Assos
.region-header #block-user-login label {
109 85ad3d82 Assos Assos
  color: #feffff;
110
}
111
112
#menu-bar,
113
#primary-menu-bar {
114
  background-color: #b800a5;
115
}
116
117
.region-header .form-text,
118
.region-header .form-submit {
119
  border-color: #b21f88;
120
}
121
122
123
/* Footer */
124
125
#footer {
126
  background: #181818; /* fallback for browsers that don't support CSS gradients */
127
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#181818), to(#343434));
128
  background-image: -moz-linear-gradient(-90deg, #181818, #343434);
129
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#181818', endColorstr='#343434')";
130
  filter: progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr=#181818,endColorstr=#343434,GradientType=0);
131
}
132
133
#footer,
134
#footer a {
135
  color: #fffffa;
136
}
137
138
#footer #block-node-recent {
139
  color: #444;
140
}
141
142
#footer #block-node-recent a {
143
  color: #b21f88;
144
}
145
146
147
/* Blocks */
148
149
.block-inner {
150
  background: #f9cbec;
151
}
152
.block-title {
153
  color: #fffffc;
154
  background: #eb5ac3;
155
}
156
157
158
/* Strip backgrounds */
159
160
#header-region .block-inner,
161
#block-system-main .block-inner,
162
#footer .block-inner,
163
#footer .block .block-title {
164
  background: none;
165
}
166
167
168
/* Poll */
169
170
.poll .bar {
171
  background-color: #e9e9e9;
172
  border: solid 1px #e9e9e9;
173
}
174
175
.poll .bar .foreground {
176
  background: #b21f88 url("../images/bg-lbar.png") repeat-x center left;
177
}
178
179
180
/* Articles */
181
182 74f6bef0 Assos Assos
.node .node-title {
183 85ad3d82 Assos Assos
  border-bottom: solid 1px #e9e9e9;
184
}
185
186 74f6bef0 Assos Assos
.node .node-title a:hover {
187 85ad3d82 Assos Assos
  color: #ac2e82;
188
}
189
190 74f6bef0 Assos Assos
.node-teaser.node-sticky .node-title {
191 85ad3d82 Assos Assos
}
192
193
.field-type-image figure {
194
  border: 1px solid #e9e9e9;
195
}
196
197 74f6bef0 Assos Assos
#main-content .node-teaser {
198 85ad3d82 Assos Assos
  border: 1px solid #e9e9e9;
199
}
200
201 74f6bef0 Assos Assos
#main-content .node-teaser.node-sticky {
202 85ad3d82 Assos Assos
  background: #f7f7f7;
203
}
204
205
206
/* Comments */
207
208
#comments .odd {
209
  background: #f9cbec;
210
}
211
212
213
/* Aggregator */
214
215
#aggregator .feed-source {
216
  background-color: #f7f7f7;
217
  border: 1px solid #e9e9e9;
218
}
219
220
221
/* Forum */
222
223 74f6bef0 Assos Assos
#forum thead,
224 85ad3d82 Assos Assos
#forum tbody {
225
  border: none;
226
}
227
228
229
/* Profile */
230
231
#profile .profile {
232
  border: 1px solid #e9e9e9;
233
}
234
235
236
/* Administer */
237
238
div.admin-panel h3 {
239
  background: #eb5ac3;
240
  color: #fffffc;
241
}
242
243
244
/* Pager */
245
246
div.item-list ul.pager li a.active {
247
  color: #555555;
248
}
249
250
div.item-list ul.pager li {
251
  border: 1px solid #e9e9e9;
252
}
253
254
div.item-list ul.pager li:hover,
255
div.item-list ul.pager li:focus {
256
  border: 1px solid #eb5ac3;
257
  color: #b21f88;
258
}
259
260
div.item-list ul.pager li.pager-current,
261
div.item-list ul.pager li.pager-current a.active {
262
  border: 1px solid #eb5ac3;
263
  color: #b21f88;
264
}
265
266
267
/* Local task tabs */
268
269
ul.primary li a {
270
  background: #fdfdfd;
271
  border: solid 1px #f9cbec;
272
}
273
274
ul.primary li a:hover {
275
  background: #fdfdfd;
276
  border: solid 1px #eb5ac3;
277
}
278
279
ul.primary li a.active,
280
ul.primary li.active a {
281
  border: solid 1px #eb5ac3;
282
  background: #f9cbec;
283
  color: #000000;
284
}
285
286
ul.primary li a.active:hover,
287
ul.primary li a.active:focus {
288
  border: solid 1px #eb5ac3;
289
  background: #f9cbec;
290
  color: #000000;
291
}
292
293
294
/* Menu bar menu */
295 74f6bef0 Assos Assos
.at-mt .at-menu-toggle h2 a,
296
.menu-wrapper li a,
297
.menu-wrapper li a:hover,
298
.menu-wrapper li a:focus {
299 85ad3d82 Assos Assos
  color: #fffffe;
300
}
301
302 74f6bef0 Assos Assos
.at-mt .at-menu-toggle h2 {
303
  background: none;
304
}
305
306 85ad3d82 Assos Assos
307
/* Superfish Skin */
308
309
ul.sf-menu.sf-style-default li,
310
ul.sf-menu.sf-navbar.sf-style-default,
311
ul.sf-menu.sf-horizonal.sf-style-default,
312
ul.sf-menu.sf-vertical.sf-style-default {
313
  background: transparent;
314
}
315
316
ul.sf-menu.sf-style-default li li {
317
  background: #b800a6;
318
}
319
320
ul.sf-menu.sf-style-default li li li {
321
  background: #b800a6;
322
}
323
324
ul.sf-menu.sf-style-default li:hover,
325
ul.sf-menu.sf-style-default li.sfHover,
326
ul.sf-menu.sf-style-default li.active a,
327
ul.sf-menu.sf-style-default a:focus,
328
ul.sf-menu.sf-style-default a:hover,
329
ul.sf-menu.sf-style-default a:active,
330
ul.sf-menu.sf-navbar.sf-style-default li li {
331
  background: #eb5ac3;
332
}
333
334
ul.sf-menu.sf-navbar.sf-style-default li ul li ul {
335
  background-color: transparent;
336
}
337
338
339
/* .sf-horizontal */
340
341
ul.sf-menu.sf-horizontal.sf-style-default a {
342
  border: 0 !important;
343
  color: #fffffe !important;
344
}
345
346
347
/* .sf-navbar */
348
349
ul.sf-menu.sf-navbar.sf-style-default li ul {
350
  background-color: transparent !important;
351
  width: 100%;
352
}
353
354
ul.sf-menu.sf-navbar.sf-style-default > li > ul > li {
355
  border-bottom: 1px solid #b21f88;
356
}
357
358
359
/* .sf-vertical */
360
361
ul.sf-menu.sf-menu.sf-vertical.sf-style-default a {
362
  border: 0 !important;
363
  color: #b21f88;
364
}
365
ul.sf-menu.sf-vertical.sf-style-default a:hover,
366
ul.sf-menu.sf-vertical.sf-style-default a:focus,
367
ul.sf-menu.sf-vertical.sf-style-default ul a,
368
ul.sf-menu.sf-vertical.sf-style-default ul ul a,
369
ul.sf-menu.sf-vertical.sf-style-default ul ul ul a,
370
ul.sf-menu.sf-vertical.sf-style-default ul ul ul ul a {
371
  color: #fffffe !important;
372
}
373
374
375
/* Calendar styles */
376
377
.calendar-calendar div.date-nav {
378
  background-color: transparent;
379
  color: #b21f88;
380
}
381
382
.calendar-calendar div.date-nav a,
383
.calendar-calendar div.date-nav h3 {
384
  color: #b21f88;
385
}
386
387
.calendar-calendar td {
388
  color: #000000;
389
}
390
391
.calendar-calendar th {
392
  background-color: #f9cbed;
393
  color: #b21f88;
394
  border: 1px solid #f9cbed;
395
}
396
397
.calendar-calendar th.days {
398
  background-color: #fffff0;
399
  color: #b21f88;
400
}
401
402
.calendar-calendar tr td.today,
403
.calendar-calendar tr.odd td.today,
404
.calendar-calendar tr.even td.today {
405
  background-color: #f9cbed;
406
}
407
408
.calendar-calendar td.calendar-agenda-hour,
409
.calendar-calendar td.calendar-agenda-items,
410
.calendar-calendar td.calendar-agenda-hour {
411
  border-color: #f9cbed;
412
}
413
414
.view-content .calendar-calendar ul.inline li {
415
  border: 1px solid #f9cbed;
416
}
417 74f6bef0 Assos Assos
418
#footer .attribution a {
419
  color: #fff;
420
  color: rgba(255, 255, 255, 0.5);
421
}