handy-css-rails 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +1 -0
- data/README.md +40 -0
- data/Rakefile +32 -0
- data/handy-css-rails.gemspec +19 -0
- data/lib/handy-css-rails/engine.rb +9 -0
- data/lib/handy-css-rails/version.rb +5 -0
- data/lib/handy-css-rails.rb +8 -0
- data/vendor/assets/stylesheets/handy-css-rails/handyCSS.backdrops.css +825 -0
- data/vendor/assets/stylesheets/handy-css-rails/handyCSS.box.css +745 -0
- data/vendor/assets/stylesheets/handy-css-rails/handyCSS.css +1803 -0
- metadata +77 -0
@@ -0,0 +1,825 @@
|
|
1
|
+
/* ========================================================
|
2
|
+
* bootstrap-tab.js v2.3.2
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html#tabs
|
4
|
+
* ========================================================
|
5
|
+
* Copyright 2012 Twitter, Inc.
|
6
|
+
*
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
* you may not use this file except in compliance with the License.
|
9
|
+
* You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
* ======================================================== */
|
19
|
+
/* backdrop holder class classes for both picture and pattern */
|
20
|
+
#backdrop-holder {
|
21
|
+
background-size: cover;
|
22
|
+
background-repeat: no-repeat;
|
23
|
+
/* color: inherit;*/
|
24
|
+
min-height: 800px;
|
25
|
+
position: fixed;
|
26
|
+
width: 100%;
|
27
|
+
z-index: -1; }
|
28
|
+
|
29
|
+
/* Picture based backdrops */
|
30
|
+
.backdrop-picture-mountains {
|
31
|
+
background-color: #0066cc;
|
32
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0066cc), color-stop(100%, #0066cc));
|
33
|
+
background-image: -webkit-linear-gradient(#0066cc, #0066cc);
|
34
|
+
background-image: linear-gradient(#0066cc, #0066cc);
|
35
|
+
background-image: url(../images/backdrops/pictures/mountains.jpg); }
|
36
|
+
|
37
|
+
.backdrop-picture-wood {
|
38
|
+
background-color: #663300;
|
39
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #663300), color-stop(100%, black));
|
40
|
+
background-image: -webkit-linear-gradient(#663300, black);
|
41
|
+
background-image: linear-gradient(#663300, black);
|
42
|
+
background-image: url(../images/backdrops/pictures/wood.jpg); }
|
43
|
+
|
44
|
+
.backdrop-picture-beach {
|
45
|
+
background-color: #0099cc;
|
46
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0099cc), color-stop(100%, #cccccc));
|
47
|
+
background-image: -webkit-linear-gradient(#0099cc, #cccccc);
|
48
|
+
background-image: linear-gradient(#0099cc, #cccccc);
|
49
|
+
background-image: url(../images/backdrops/pictures/beach.jpg); }
|
50
|
+
|
51
|
+
.backdrop-picture-ocean {
|
52
|
+
background-color: #3399cc;
|
53
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3399cc), color-stop(100%, #99ccff));
|
54
|
+
background-image: -webkit-linear-gradient(#3399cc, #99ccff);
|
55
|
+
background-image: linear-gradient(#3399cc, #99ccff);
|
56
|
+
background-image: url(../images/backdrops/pictures/ocean.jpg); }
|
57
|
+
|
58
|
+
.backdrop-picture-treetops {
|
59
|
+
background-color: #6699cc;
|
60
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6699cc), color-stop(100%, #006699));
|
61
|
+
background-image: -webkit-linear-gradient(#6699cc, #006699);
|
62
|
+
background-image: linear-gradient(#6699cc, #006699);
|
63
|
+
background-image: url(../images/backdrops/pictures/treetops.jpg); }
|
64
|
+
|
65
|
+
.backdrop-picture-desk {
|
66
|
+
background-color: #563b26;
|
67
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #563b26), color-stop(100%, #663333));
|
68
|
+
background-image: -webkit-linear-gradient(#563b26, #663333);
|
69
|
+
background-image: linear-gradient(#563b26, #663333);
|
70
|
+
background-image: url(../images/backdrops/pictures/desk.jpg); }
|
71
|
+
|
72
|
+
.backdrop-picture-turf {
|
73
|
+
background-color: #339900;
|
74
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #339900), color-stop(100%, #336600));
|
75
|
+
background-image: -webkit-linear-gradient(#339900, #336600);
|
76
|
+
background-image: linear-gradient(#339900, #336600);
|
77
|
+
background-image: url(../images/backdrops/pictures/turf.jpg); }
|
78
|
+
|
79
|
+
.backdrop-picture-grafitti {
|
80
|
+
background-color: black;
|
81
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, black));
|
82
|
+
background-image: -webkit-linear-gradient(black, black);
|
83
|
+
background-image: linear-gradient(black, black);
|
84
|
+
background-image: url(../images/backdrops/pictures/grafitti.jpg); }
|
85
|
+
|
86
|
+
.backdrop-picture-pebbles {
|
87
|
+
background-color: #666666;
|
88
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #666666), color-stop(100%, #333333));
|
89
|
+
background-image: -webkit-linear-gradient(#666666, #333333);
|
90
|
+
background-image: linear-gradient(#666666, #333333);
|
91
|
+
background-image: url(../images/backdrops/pictures/pebbles.jpg); }
|
92
|
+
|
93
|
+
.backdrop-picture-venus {
|
94
|
+
background-color: black;
|
95
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, black));
|
96
|
+
background-image: -webkit-linear-gradient(black, black);
|
97
|
+
background-image: linear-gradient(black, black);
|
98
|
+
background-image: url(../images/backdrops/pictures/venus.jpg); }
|
99
|
+
|
100
|
+
.backdrop-picture-octopus {
|
101
|
+
background-color: black;
|
102
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, black));
|
103
|
+
background-image: -webkit-linear-gradient(black, black);
|
104
|
+
background-image: linear-gradient(black, black);
|
105
|
+
background-image: url(../images/backdrops/pictures/octopus.jpg); }
|
106
|
+
|
107
|
+
.backdrop-picture-ruby {
|
108
|
+
background-color: #990000;
|
109
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #990000), color-stop(100%, #990000));
|
110
|
+
background-image: -webkit-linear-gradient(#990000, #990000);
|
111
|
+
background-image: linear-gradient(#990000, #990000);
|
112
|
+
background-image: url(../images/backdrops/pictures/ruby.jpg); }
|
113
|
+
|
114
|
+
.backdrop-picture-apple {
|
115
|
+
background-color: #333333;
|
116
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #333333));
|
117
|
+
background-image: -webkit-linear-gradient(#333333, #333333);
|
118
|
+
background-image: linear-gradient(#333333, #333333);
|
119
|
+
background-image: url(../images/backdrops/pictures/apple.jpg); }
|
120
|
+
|
121
|
+
.backdrop-picture-ror1 {
|
122
|
+
background-color: #000033;
|
123
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000033), color-stop(100%, #000033));
|
124
|
+
background-image: -webkit-linear-gradient(#000033, #000033);
|
125
|
+
background-image: linear-gradient(#000033, #000033);
|
126
|
+
background-image: url(../images/backdrops/pictures/ror1.jpg); }
|
127
|
+
|
128
|
+
.backdrop-picture-ror2 {
|
129
|
+
background-color: #990033;
|
130
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #990033), color-stop(100%, #990033));
|
131
|
+
background-image: -webkit-linear-gradient(#990033, #990033);
|
132
|
+
background-image: linear-gradient(#990033, #990033);
|
133
|
+
background-image: url(../images/backdrops/pictures/ror2.jpg); }
|
134
|
+
|
135
|
+
.backdrop-picture-ror3 {
|
136
|
+
background-color: black;
|
137
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, black));
|
138
|
+
background-image: -webkit-linear-gradient(black, black);
|
139
|
+
background-image: linear-gradient(black, black);
|
140
|
+
background-image: url(../images/backdrops/pictures/ror3.jpg); }
|
141
|
+
|
142
|
+
.backdrop-picture-ror4 {
|
143
|
+
background-color: #3366cc;
|
144
|
+
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3366cc), color-stop(100%, #3366cc));
|
145
|
+
background-image: -webkit-linear-gradient(#3366cc, #3366cc);
|
146
|
+
background-image: linear-gradient(#3366cc, #3366cc);
|
147
|
+
background-image: url(../images/backdrops/pictures/ror4.jpg); }
|
148
|
+
|
149
|
+
/* Add a new image based theme here.
|
150
|
+
.backdrop-picture-name {
|
151
|
+
@include linear-gradient(#topColor, #botomColor);
|
152
|
+
background-image: url(../images/backdrops/pictures/image-name.jpg);
|
153
|
+
}
|
154
|
+
Don't forget to add the image to the above mentioned folder.
|
155
|
+
Now you can use
|
156
|
+
<body class="backdrop-picture theme-default">
|
157
|
+
<div id="backdrop-holder" class="backdrop-picture-image-name">
|
158
|
+
Content Goes here.
|
159
|
+
</div>
|
160
|
+
</body>
|
161
|
+
*/
|
162
|
+
/* Pattern based backdrops */
|
163
|
+
.backdrop-pattern #backdrop-holder::after {
|
164
|
+
content: '';
|
165
|
+
display: block;
|
166
|
+
position: absolute;
|
167
|
+
top: 0;
|
168
|
+
right: 0;
|
169
|
+
bottom: 0;
|
170
|
+
left: 0;
|
171
|
+
opacity: 0.1; }
|
172
|
+
|
173
|
+
/*[class*="backdrop-pattern-preview-"] { opacity: 0.1; }*/
|
174
|
+
.backdrop-pattern .backdrop-pattern-01::after, .backdrop-pattern-preview-01::after {
|
175
|
+
content: '';
|
176
|
+
background: url(../images/backdrops/patterns/01.png) repeat center center;
|
177
|
+
display: block;
|
178
|
+
opacity: 0.1;
|
179
|
+
height: 100%; }
|
180
|
+
|
181
|
+
.backdrop-pattern .backdrop-pattern-02::after, .backdrop-pattern-preview-02::after {
|
182
|
+
content: '';
|
183
|
+
background: url(../images/backdrops/patterns/02.png) repeat center center;
|
184
|
+
display: block;
|
185
|
+
opacity: 0.1;
|
186
|
+
height: 100%; }
|
187
|
+
|
188
|
+
.backdrop-pattern .backdrop-pattern-03::after, .backdrop-pattern-preview-03::after {
|
189
|
+
content: '';
|
190
|
+
background: url(../images/backdrops/patterns/03.png) repeat center center;
|
191
|
+
display: block;
|
192
|
+
opacity: 0.1;
|
193
|
+
height: 100%; }
|
194
|
+
|
195
|
+
.backdrop-pattern .backdrop-pattern-04::after, .backdrop-pattern-preview-04::after {
|
196
|
+
content: '';
|
197
|
+
background: url(../images/backdrops/patterns/04.png) repeat center center;
|
198
|
+
display: block;
|
199
|
+
opacity: 0.1;
|
200
|
+
height: 100%; }
|
201
|
+
|
202
|
+
.backdrop-pattern .backdrop-pattern-05::after, .backdrop-pattern-preview-05::after {
|
203
|
+
content: '';
|
204
|
+
background: url(../images/backdrops/patterns/05.png) repeat center center;
|
205
|
+
display: block;
|
206
|
+
opacity: 0.1;
|
207
|
+
height: 100%; }
|
208
|
+
|
209
|
+
.backdrop-pattern .backdrop-pattern-06::after, .backdrop-pattern-preview-06::after {
|
210
|
+
content: '';
|
211
|
+
background: url(../images/backdrops/patterns/06.png) repeat center center;
|
212
|
+
display: block;
|
213
|
+
opacity: 0.1;
|
214
|
+
height: 100%; }
|
215
|
+
|
216
|
+
.backdrop-pattern .backdrop-pattern-07::after, .backdrop-pattern-preview-07::after {
|
217
|
+
content: '';
|
218
|
+
background: url(../images/backdrops/patterns/07.png) repeat center center;
|
219
|
+
display: block;
|
220
|
+
opacity: 0.1;
|
221
|
+
height: 100%; }
|
222
|
+
|
223
|
+
.backdrop-pattern .backdrop-pattern-08::after, .backdrop-pattern-preview-08::after {
|
224
|
+
content: '';
|
225
|
+
background: url(../images/backdrops/patterns/08.png) repeat center center;
|
226
|
+
display: block;
|
227
|
+
opacity: 0.1;
|
228
|
+
height: 100%; }
|
229
|
+
|
230
|
+
.backdrop-pattern .backdrop-pattern-09::after, .backdrop-pattern-preview-09::after {
|
231
|
+
content: '';
|
232
|
+
background: url(../images/backdrops/patterns/09.png) repeat center center;
|
233
|
+
display: block;
|
234
|
+
opacity: 0.1;
|
235
|
+
height: 100%; }
|
236
|
+
|
237
|
+
.backdrop-pattern .backdrop-pattern-10::after, .backdrop-pattern-preview-10::after {
|
238
|
+
content: '';
|
239
|
+
background: url(../images/backdrops/patterns/10.png) repeat center center;
|
240
|
+
display: block;
|
241
|
+
opacity: 0.1;
|
242
|
+
height: 100%; }
|
243
|
+
|
244
|
+
/* Add a new dark colored gradient themes here.
|
245
|
+
.backdrop-pattern .backdrop-pattern-xxxx::after, .backdrop-pattern-preview-xxxx::after {
|
246
|
+
content: '';
|
247
|
+
background: url(../images/backdrops/patterns/xxxx.png) repeat center center;
|
248
|
+
display: block;
|
249
|
+
opacity: 0.1;
|
250
|
+
height: 100%;
|
251
|
+
}
|
252
|
+
Now you can use
|
253
|
+
<body class="backdrop-pattern theme-default">
|
254
|
+
<div id="backdrop-holder" class="backdrop-pattern-xxxx backdrop-pattern-some-shade">
|
255
|
+
Content Goes here.
|
256
|
+
</div>
|
257
|
+
</body>
|
258
|
+
*/
|
259
|
+
.backdrop-shade-bootstrap-violet, .backdrop-shade-preview-bootstrap-violet {
|
260
|
+
background-color: #6d3353;
|
261
|
+
background-color: #6d3353;
|
262
|
+
background-repeat: repeat-x;
|
263
|
+
background-image: -moz-linear-gradient(280deg, #020031, #6d3353);
|
264
|
+
background-image: -webkit-linear-gradient(280deg, #020031, #6d3353);
|
265
|
+
background-image: -o-linear-gradient(280deg, #020031, #6d3353);
|
266
|
+
background-image: linear, 280deg, #020031, #6d3353; }
|
267
|
+
|
268
|
+
.backdrop-shade-olive-green, .backdrop-shade-preview-olive-green {
|
269
|
+
background-color: darkOliveGreen;
|
270
|
+
background-color: white;
|
271
|
+
background-repeat: repeat-x;
|
272
|
+
background-image: -moz-linear-gradient(280deg, darkolivegreen, white);
|
273
|
+
background-image: -webkit-linear-gradient(280deg, darkolivegreen, white);
|
274
|
+
background-image: -o-linear-gradient(280deg, darkolivegreen, white);
|
275
|
+
background-image: linear, 280deg, darkolivegreen, white; }
|
276
|
+
|
277
|
+
.backdrop-shade-goldern-red, .backdrop-shade-preview-goldern-red {
|
278
|
+
background-color: darkgoldenrod;
|
279
|
+
background-color: white;
|
280
|
+
background-repeat: repeat-x;
|
281
|
+
background-image: -moz-linear-gradient(280deg, darkgoldenrod, white);
|
282
|
+
background-image: -webkit-linear-gradient(280deg, darkgoldenrod, white);
|
283
|
+
background-image: -o-linear-gradient(280deg, darkgoldenrod, white);
|
284
|
+
background-image: linear, 280deg, darkgoldenrod, white; }
|
285
|
+
|
286
|
+
.backdrop-shade-dark-green, .backdrop-shade-preview-dark-green {
|
287
|
+
background-color: darkGreen;
|
288
|
+
background-color: white;
|
289
|
+
background-repeat: repeat-x;
|
290
|
+
background-image: -moz-linear-gradient(280deg, darkgreen, white);
|
291
|
+
background-image: -webkit-linear-gradient(280deg, darkgreen, white);
|
292
|
+
background-image: -o-linear-gradient(280deg, darkgreen, white);
|
293
|
+
background-image: linear, 280deg, darkgreen, white; }
|
294
|
+
|
295
|
+
.backdrop-shade-dark-red, .backdrop-shade-preview-dark-red {
|
296
|
+
background-color: darkRed;
|
297
|
+
background-color: white;
|
298
|
+
background-repeat: repeat-x;
|
299
|
+
background-image: -moz-linear-gradient(280deg, darkred, white);
|
300
|
+
background-image: -webkit-linear-gradient(280deg, darkred, white);
|
301
|
+
background-image: -o-linear-gradient(280deg, darkred, white);
|
302
|
+
background-image: linear, 280deg, darkred, white; }
|
303
|
+
|
304
|
+
.backdrop-shade-dark-salmon, .backdrop-shade-preview-dark-salmon {
|
305
|
+
background-color: darkSalmon;
|
306
|
+
background-color: white;
|
307
|
+
background-repeat: repeat-x;
|
308
|
+
background-image: -moz-linear-gradient(280deg, darksalmon, white);
|
309
|
+
background-image: -webkit-linear-gradient(280deg, darksalmon, white);
|
310
|
+
background-image: -o-linear-gradient(280deg, darksalmon, white);
|
311
|
+
background-image: linear, 280deg, darksalmon, white; }
|
312
|
+
|
313
|
+
.backdrop-shade-dark-grey, .backdrop-shade-preview-dark-grey {
|
314
|
+
background-color: darkGray;
|
315
|
+
background-color: white;
|
316
|
+
background-repeat: repeat-x;
|
317
|
+
background-image: -moz-linear-gradient(280deg, darkgrey, white);
|
318
|
+
background-image: -webkit-linear-gradient(280deg, darkgrey, white);
|
319
|
+
background-image: -o-linear-gradient(280deg, darkgrey, white);
|
320
|
+
background-image: linear, 280deg, darkgrey, white; }
|
321
|
+
|
322
|
+
.backdrop-shade-slate-grey, .backdrop-shade-preview-slate-grey {
|
323
|
+
background-color: SlateGrey;
|
324
|
+
background-color: white;
|
325
|
+
background-repeat: repeat-x;
|
326
|
+
background-image: -moz-linear-gradient(280deg, slategrey, white);
|
327
|
+
background-image: -webkit-linear-gradient(280deg, slategrey, white);
|
328
|
+
background-image: -o-linear-gradient(280deg, slategrey, white);
|
329
|
+
background-image: linear, 280deg, slategrey, white; }
|
330
|
+
|
331
|
+
.backdrop-shade-dark-slate-grey, .backdrop-shade-preview-dark-slate-grey {
|
332
|
+
background-color: darkSlateGrey;
|
333
|
+
background-color: white;
|
334
|
+
background-repeat: repeat-x;
|
335
|
+
background-image: -moz-linear-gradient(280deg, darkslategrey, white);
|
336
|
+
background-image: -webkit-linear-gradient(280deg, darkslategrey, white);
|
337
|
+
background-image: -o-linear-gradient(280deg, darkslategrey, white);
|
338
|
+
background-image: linear, 280deg, darkslategrey, white; }
|
339
|
+
|
340
|
+
.backdrop-shade-light-slate-grey, .backdrop-shade-preview-light-slate-grey {
|
341
|
+
background-color: lightSlateGrey;
|
342
|
+
background-color: white;
|
343
|
+
background-repeat: repeat-x;
|
344
|
+
background-image: -moz-linear-gradient(280deg, lightslategrey, white);
|
345
|
+
background-image: -webkit-linear-gradient(280deg, lightslategrey, white);
|
346
|
+
background-image: -o-linear-gradient(280deg, lightslategrey, white);
|
347
|
+
background-image: linear, 280deg, lightslategrey, white; }
|
348
|
+
|
349
|
+
.backdrop-shade-dim-grey, .backdrop-shade-preview-dim-grey {
|
350
|
+
background-color: dimGrey;
|
351
|
+
background-color: white;
|
352
|
+
background-repeat: repeat-x;
|
353
|
+
background-image: -moz-linear-gradient(280deg, dimgrey, white);
|
354
|
+
background-image: -webkit-linear-gradient(280deg, dimgrey, white);
|
355
|
+
background-image: -o-linear-gradient(280deg, dimgrey, white);
|
356
|
+
background-image: linear, 280deg, dimgrey, white; }
|
357
|
+
|
358
|
+
.backdrop-shade-steel-blue, .backdrop-shade-preview-steel-blue {
|
359
|
+
background-color: steelBlue;
|
360
|
+
background-color: white;
|
361
|
+
background-repeat: repeat-x;
|
362
|
+
background-image: -moz-linear-gradient(280deg, steelblue, white);
|
363
|
+
background-image: -webkit-linear-gradient(280deg, steelblue, white);
|
364
|
+
background-image: -o-linear-gradient(280deg, steelblue, white);
|
365
|
+
background-image: linear, 280deg, steelblue, white; }
|
366
|
+
|
367
|
+
.backdrop-shade-dark-steel-blue, .backdrop-shade-preview-dark-steel-blue {
|
368
|
+
background-color: darkSteelBlue;
|
369
|
+
background-color: white;
|
370
|
+
background-repeat: repeat-x;
|
371
|
+
background-image: -moz-linear-gradient(280deg, darkSteelBlue, white);
|
372
|
+
background-image: -webkit-linear-gradient(280deg, darkSteelBlue, white);
|
373
|
+
background-image: -o-linear-gradient(280deg, darkSteelBlue, white);
|
374
|
+
background-image: linear, 280deg, darkSteelBlue, white; }
|
375
|
+
|
376
|
+
.backdrop-shade-light-steel-blue, .backdrop-shade-preview-light-steel-blue {
|
377
|
+
background-color: lightSteelBlue;
|
378
|
+
background-color: white;
|
379
|
+
background-repeat: repeat-x;
|
380
|
+
background-image: -moz-linear-gradient(280deg, lightsteelblue, white);
|
381
|
+
background-image: -webkit-linear-gradient(280deg, lightsteelblue, white);
|
382
|
+
background-image: -o-linear-gradient(280deg, lightsteelblue, white);
|
383
|
+
background-image: linear, 280deg, lightsteelblue, white; }
|
384
|
+
|
385
|
+
.backdrop-shade-cadet-blue, .backdrop-shade-preview-cadet-blue {
|
386
|
+
background-color: cadetBlue;
|
387
|
+
background-color: white;
|
388
|
+
background-repeat: repeat-x;
|
389
|
+
background-image: -moz-linear-gradient(280deg, cadetblue, white);
|
390
|
+
background-image: -webkit-linear-gradient(280deg, cadetblue, white);
|
391
|
+
background-image: -o-linear-gradient(280deg, cadetblue, white);
|
392
|
+
background-image: linear, 280deg, cadetblue, white; }
|
393
|
+
|
394
|
+
.backdrop-shade-brown, .backdrop-shade-preview-brown {
|
395
|
+
background-color: brown;
|
396
|
+
background-color: white;
|
397
|
+
background-repeat: repeat-x;
|
398
|
+
background-image: -moz-linear-gradient(280deg, brown, white);
|
399
|
+
background-image: -webkit-linear-gradient(280deg, brown, white);
|
400
|
+
background-image: -o-linear-gradient(280deg, brown, white);
|
401
|
+
background-image: linear, 280deg, brown, white; }
|
402
|
+
|
403
|
+
.backdrop-shade-maroon, .backdrop-shade-preview-maroon {
|
404
|
+
background-color: maroon;
|
405
|
+
background-color: white;
|
406
|
+
background-repeat: repeat-x;
|
407
|
+
background-image: -moz-linear-gradient(280deg, maroon, white);
|
408
|
+
background-image: -webkit-linear-gradient(280deg, maroon, white);
|
409
|
+
background-image: -o-linear-gradient(280deg, maroon, white);
|
410
|
+
background-image: linear, 280deg, maroon, white; }
|
411
|
+
|
412
|
+
.backdrop-shade-forest-green, .backdrop-shade-preview-forest-green {
|
413
|
+
background-color: forestGreen;
|
414
|
+
background-color: white;
|
415
|
+
background-repeat: repeat-x;
|
416
|
+
background-image: -moz-linear-gradient(280deg, forestgreen, white);
|
417
|
+
background-image: -webkit-linear-gradient(280deg, forestgreen, white);
|
418
|
+
background-image: -o-linear-gradient(280deg, forestgreen, white);
|
419
|
+
background-image: linear, 280deg, forestgreen, white; }
|
420
|
+
|
421
|
+
.backdrop-shade-peru, .backdrop-shade-preview-peru {
|
422
|
+
background-color: peru;
|
423
|
+
background-color: white;
|
424
|
+
background-repeat: repeat-x;
|
425
|
+
background-image: -moz-linear-gradient(280deg, peru, white);
|
426
|
+
background-image: -webkit-linear-gradient(280deg, peru, white);
|
427
|
+
background-image: -o-linear-gradient(280deg, peru, white);
|
428
|
+
background-image: linear, 280deg, peru, white; }
|
429
|
+
|
430
|
+
.backdrop-shade-olive, .backdrop-shade-preview-olive {
|
431
|
+
background-color: olive;
|
432
|
+
background-color: white;
|
433
|
+
background-repeat: repeat-x;
|
434
|
+
background-image: -moz-linear-gradient(280deg, olive, white);
|
435
|
+
background-image: -webkit-linear-gradient(280deg, olive, white);
|
436
|
+
background-image: -o-linear-gradient(280deg, olive, white);
|
437
|
+
background-image: linear, 280deg, olive, white; }
|
438
|
+
|
439
|
+
.backdrop-shade-olive-rab, .backdrop-shade-preview-olive-rab {
|
440
|
+
background-color: oliveRab;
|
441
|
+
background-color: white;
|
442
|
+
background-repeat: repeat-x;
|
443
|
+
background-image: -moz-linear-gradient(280deg, oliveRab, white);
|
444
|
+
background-image: -webkit-linear-gradient(280deg, oliveRab, white);
|
445
|
+
background-image: -o-linear-gradient(280deg, oliveRab, white);
|
446
|
+
background-image: linear, 280deg, oliveRab, white; }
|
447
|
+
|
448
|
+
.backdrop-shade-indian-red, .backdrop-shade-preview-indian-red {
|
449
|
+
background-color: indianRed;
|
450
|
+
background-color: white;
|
451
|
+
background-repeat: repeat-x;
|
452
|
+
background-image: -moz-linear-gradient(280deg, indianred, white);
|
453
|
+
background-image: -webkit-linear-gradient(280deg, indianred, white);
|
454
|
+
background-image: -o-linear-gradient(280deg, indianred, white);
|
455
|
+
background-image: linear, 280deg, indianred, white; }
|
456
|
+
|
457
|
+
.backdrop-shade-fire-brick, .backdrop-shade-preview-fire-brick {
|
458
|
+
background-color: fireBrick;
|
459
|
+
background-color: white;
|
460
|
+
background-repeat: repeat-x;
|
461
|
+
background-image: -moz-linear-gradient(280deg, firebrick, white);
|
462
|
+
background-image: -webkit-linear-gradient(280deg, firebrick, white);
|
463
|
+
background-image: -o-linear-gradient(280deg, firebrick, white);
|
464
|
+
background-image: linear, 280deg, firebrick, white; }
|
465
|
+
|
466
|
+
.backdrop-shade-white-smoke, .backdrop-shade-preview-white-smoke {
|
467
|
+
background-color: whiteSmoke;
|
468
|
+
background-color: white;
|
469
|
+
background-repeat: repeat-x;
|
470
|
+
background-image: -moz-linear-gradient(280deg, whitesmoke, white);
|
471
|
+
background-image: -webkit-linear-gradient(280deg, whitesmoke, white);
|
472
|
+
background-image: -o-linear-gradient(280deg, whitesmoke, white);
|
473
|
+
background-image: linear, 280deg, whitesmoke, white; }
|
474
|
+
|
475
|
+
/* Add a new dark colored gradient themes here.
|
476
|
+
.backdrop-shade-some-shade { background-color:some-shade;}
|
477
|
+
|
478
|
+
1.Now you can use without pattern or picture
|
479
|
+
<body class="theme-default">
|
480
|
+
<div id="backdrop-holder" class="backdrop-shade-olive-green">
|
481
|
+
Content Goes here.
|
482
|
+
</div>
|
483
|
+
</body>
|
484
|
+
|
485
|
+
2.Now you can use with pattern
|
486
|
+
<body class="backgrop-pattern backdrop-pattern-01 theme-default">
|
487
|
+
<div id="backdrop-holder" class="backdrop-shade-olive-green">
|
488
|
+
Content Goes here.
|
489
|
+
</div>
|
490
|
+
</body>
|
491
|
+
|
492
|
+
3.Now you can use with picture as a fallback background color
|
493
|
+
<body class="backdrop-picture theme-default">
|
494
|
+
<div id="backdrop-holder" class="backdrop-shade-olive-green backdrop-picture-mountains">
|
495
|
+
Content Goes here.
|
496
|
+
</div>
|
497
|
+
</body>
|
498
|
+
*/
|
499
|
+
.theme-default .palette.shadowed:hover {
|
500
|
+
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
501
|
+
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
502
|
+
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
503
|
+
-webkit-transition: all 0.5s ease;
|
504
|
+
-moz-transition: all 0.5s ease;
|
505
|
+
-o-transition: all 0.5s ease;
|
506
|
+
transition: all 0.5s ease; }
|
507
|
+
.theme-default .palette {
|
508
|
+
position: relative;
|
509
|
+
top: auto;
|
510
|
+
z-index: 1;
|
511
|
+
max-width: 100%;
|
512
|
+
margin: 0px;
|
513
|
+
overflow: auto;
|
514
|
+
background-color: transparent;
|
515
|
+
*zoom: 1; }
|
516
|
+
.theme-default .palette:before, .theme-default .palette:after {
|
517
|
+
content: " ";
|
518
|
+
display: table; }
|
519
|
+
.theme-default .palette:after {
|
520
|
+
clear: both; }
|
521
|
+
.theme-default .palette.fixed {
|
522
|
+
position: fixed; }
|
523
|
+
.theme-default .palette.bordered {
|
524
|
+
border: 1px solid #eee;
|
525
|
+
-webkit-background-clip: padding-box;
|
526
|
+
-moz-background-clip: padding-box;
|
527
|
+
background-clip: padding-box; }
|
528
|
+
.theme-default .palette.rounded {
|
529
|
+
-webkit-border-radius: 6px;
|
530
|
+
-moz-border-radius: 6px;
|
531
|
+
border-radius: 6px; }
|
532
|
+
.theme-default .palette .palette-header {
|
533
|
+
background-color: #fff;
|
534
|
+
padding: 9px 15px;
|
535
|
+
border-bottom: 1px solid #eee; }
|
536
|
+
.theme-default .palette .palette-header.rounded {
|
537
|
+
-webkit-border-radius: 4px 4px 0px 0px;
|
538
|
+
-moz-border-radius: 4px 4px 0px 0px;
|
539
|
+
border-radius: 4px 4px 0px 0px; }
|
540
|
+
.theme-default .palette .palette-header.bordered {
|
541
|
+
border-bottom: 1px solid #ddd;
|
542
|
+
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
543
|
+
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
544
|
+
box-shadow: inset 0 1px 0 #ffffff; }
|
545
|
+
.theme-default .palette .palette-body {
|
546
|
+
background-color: #fff;
|
547
|
+
overflow-y: auto;
|
548
|
+
padding: 15px; }
|
549
|
+
.theme-default .palette .palette-footer {
|
550
|
+
padding: 14px 15px 15px;
|
551
|
+
margin-bottom: 0;
|
552
|
+
text-align: right;
|
553
|
+
background-color: #f5f5f5; }
|
554
|
+
.theme-default .palette .palette-footer.rounded {
|
555
|
+
-webkit-border-radius: 0 0 6px 6px;
|
556
|
+
-moz-border-radius: 0 0 6px 6px;
|
557
|
+
border-radius: 0 0 6px 6px; }
|
558
|
+
.theme-default .palette .palette-footer.bordered {
|
559
|
+
border-top: 1px solid #ddd;
|
560
|
+
-webkit-box-shadow: inset 0 1px 0 #ffffff;
|
561
|
+
-moz-box-shadow: inset 0 1px 0 #ffffff;
|
562
|
+
box-shadow: inset 0 1px 0 #ffffff; }
|
563
|
+
|
564
|
+
/* .palette-content {
|
565
|
+
background-color: white;color:#4b4b4b;
|
566
|
+
:hover, .selected { background-color: #fff; }
|
567
|
+
}
|
568
|
+
.palette-outer {
|
569
|
+
background-color: white;color:#4b4b4b;
|
570
|
+
:hover, .selected { background-color: #fff; }
|
571
|
+
}
|
572
|
+
.palette-inner {
|
573
|
+
background-color: white;color:#4b4b4b;
|
574
|
+
:hover, .selected { background-color: #fff; }
|
575
|
+
}
|
576
|
+
.palette-token {
|
577
|
+
background-color: white;color:#4b4b4b;
|
578
|
+
a { color:#4b4b4b !important}
|
579
|
+
:hover, .selected { background-color: #fff; }
|
580
|
+
}
|
581
|
+
.palette-shadow {
|
582
|
+
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
583
|
+
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
584
|
+
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
585
|
+
-webkit-transition: all 0.5s ease;
|
586
|
+
-moz-transition: all 0.5s ease;
|
587
|
+
-o-transition: all 0.5s ease;
|
588
|
+
transition: all 0.5s ease;
|
589
|
+
}
|
590
|
+
.palette-rounded { -webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px; }
|
591
|
+
}*/
|
592
|
+
/*
|
593
|
+
.theme-default
|
594
|
+
.theme-default .palette-bordered { border: 1px solid #c1c1c1; }
|
595
|
+
|
596
|
+
.theme-default .palette > h1, .theme-default .palette > h2, .theme-default .palette > h3, .theme-default .palette > h4, .theme-default .palette > h5, .theme-default .palette > h6 { margin: 10px 0; font-family: inherit; font-weight: bold; line-height: 20px; color: #4b4b4b; text-rendering: optimizelegibility; text-align:left; border-bottom:1px solid #c1c1c1; padding-bottom:20px; }
|
597
|
+
.theme-default .palette > h4, .theme-default .palette > h5, .theme-default .palette > h6 { padding-bottom:10px; }
|
598
|
+
.theme-default .palette .palette-inner > h1, .theme-default .palette .palette-inner > h2, .theme-default .palette .palette-inner > h3, .theme-default .palette .palette-inner > h4, .theme-default .palette .palette-inner > h5, .theme-default .palette .palette-inner > h6 { color: whitesmoke; }
|
599
|
+
*/
|
600
|
+
/** Palette Classes **/
|
601
|
+
.theme-glass .palette {
|
602
|
+
min-height: 20px;
|
603
|
+
padding: 10px;
|
604
|
+
margin-bottom: 20px;
|
605
|
+
background: transparent; }
|
606
|
+
|
607
|
+
/** Palette Outer **/
|
608
|
+
.theme-glass .palette-outer {
|
609
|
+
color: #fff; }
|
610
|
+
|
611
|
+
.contrast-light.theme-glass .palette-outer {
|
612
|
+
background: rgba(255, 255, 255, 0.2);
|
613
|
+
border: 1px solid rgba(255, 255, 255, 0.2); }
|
614
|
+
|
615
|
+
.contrast-light.theme-glass .palette-outer:hover, .contrast-light.theme-glass .palette-outer.selected {
|
616
|
+
border: 1px solid rgba(255, 255, 255, 0.4); }
|
617
|
+
|
618
|
+
.contrast-dark.theme-glass .palette-outer {
|
619
|
+
background: rgba(0, 0, 0, 0.4);
|
620
|
+
border: 1px solid rgba(0, 0, 0, 0.2); }
|
621
|
+
|
622
|
+
.contrast-dark.theme-glass .palette-outer:hover, .contrast-light.theme-glass .palette-outer.selected {
|
623
|
+
border: 1px solid rgba(0, 0, 0, 0.9); }
|
624
|
+
|
625
|
+
/** Palette Inner **/
|
626
|
+
.theme-glass .palette-inner {
|
627
|
+
background: rgba(255, 255, 255, 0.9);
|
628
|
+
color: #4B4B4B; }
|
629
|
+
|
630
|
+
.theme-glass .palette-inner:hover, .theme-glass .palette-inner.selected {
|
631
|
+
background-color: #fff; }
|
632
|
+
|
633
|
+
/** Palette Token **/
|
634
|
+
.theme-glass .palette-token {
|
635
|
+
background-color: rgba(255, 255, 255, 0.1);
|
636
|
+
color: #fff; }
|
637
|
+
|
638
|
+
.theme-glass .palette-token a {
|
639
|
+
color: #fff !important; }
|
640
|
+
|
641
|
+
.theme-glass .palette-token:hover, .theme-glass .palette-token.selected {
|
642
|
+
color: #fff; }
|
643
|
+
|
644
|
+
.contrast-light.theme-glass .palette-token {
|
645
|
+
background-color: rgba(255, 255, 255, 0.1);
|
646
|
+
border: 1px solid rgba(255, 255, 255, 0.1); }
|
647
|
+
|
648
|
+
.contrast-dark.theme-glass .palette-token {
|
649
|
+
background-color: rgba(0, 0, 0, 0.1);
|
650
|
+
border: 1px solid rgba(0, 0, 0, 0.1); }
|
651
|
+
|
652
|
+
.contrast-light.theme-glass .palette-token:hover, .contrast-light.theme-glass .palette-token.selected {
|
653
|
+
background-color: rgba(255, 255, 255, 0.5);
|
654
|
+
border: 1px solid rgba(0, 0, 0, 0.1); }
|
655
|
+
|
656
|
+
.contrast-dark.theme-glass .palette-token:hover, .contrast-light.theme-glass .palette-token.selected {
|
657
|
+
background-color: rgba(0, 0, 0, 0.5);
|
658
|
+
border: 1px solid rgba(255, 255, 255, 0.5); }
|
659
|
+
|
660
|
+
/** Palette Topup Classes **/
|
661
|
+
.theme-glass .palette-shadow {
|
662
|
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
663
|
+
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
|
664
|
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
|
665
|
+
|
666
|
+
.theme-glass .palette-rounded {
|
667
|
+
-webkit-border-radius: 4px;
|
668
|
+
-moz-border-radius: 4px;
|
669
|
+
border-radius: 4px; }
|
670
|
+
|
671
|
+
.theme-glass .palette-bordered {
|
672
|
+
border: 1px solid #E3E3E3; }
|
673
|
+
|
674
|
+
.theme-glass .palette > h1, .theme-glass .palette > h2, .theme-glass .palette > h3, .theme-glass .palette > h4, .theme-glass .palette > h5, .theme-glass .palette > h6 {
|
675
|
+
margin: 10px 0;
|
676
|
+
font-family: inherit;
|
677
|
+
font-weight: bold;
|
678
|
+
line-height: 20px;
|
679
|
+
color: #FFF;
|
680
|
+
text-rendering: optimizelegibility;
|
681
|
+
text-align: left;
|
682
|
+
border-bottom: 1px solid #c1c1c1;
|
683
|
+
padding-bottom: 20px; }
|
684
|
+
|
685
|
+
.theme-glass .palette > h4, .theme-glass .palette > h5, .theme-glass .palette > h6 {
|
686
|
+
padding-bottom: 10px; }
|
687
|
+
|
688
|
+
.theme-glass .palette-inner > h1, .theme-glass .palette-inner > h2, .theme-glass .palette-inner > h3, .theme-glass .palette-inner > h4, .theme-glass .palette-inner > h5, .theme-glass .palette-inner > h6 {
|
689
|
+
color: #4b4b4b; }
|
690
|
+
|
691
|
+
.theme-glass .palette a:not(.close):not(.escape-color) {
|
692
|
+
color: #08C;
|
693
|
+
font-weight: bold; }
|
694
|
+
|
695
|
+
.theme-glass .palette a:not(.close):not(.escape-color):hover {
|
696
|
+
color: #005580; }
|
697
|
+
|
698
|
+
.theme-glass .palette a.title {
|
699
|
+
font-size: 18px; }
|
700
|
+
|
701
|
+
.theme-glass .palette a.sub-title {
|
702
|
+
font-size: 16px; }
|
703
|
+
|
704
|
+
.theme-glass .palette a.small-title {
|
705
|
+
font-size: 14px; }
|
706
|
+
|
707
|
+
.theme-glass .palette a.small-sub-title {
|
708
|
+
font-size: 13px; }
|
709
|
+
|
710
|
+
.theme-glass .palette a.tiny-title {
|
711
|
+
font-size: 12px; }
|
712
|
+
|
713
|
+
.theme-glass .palette .description {
|
714
|
+
color: #4b4b4b;
|
715
|
+
margin: 0px; }
|
716
|
+
|
717
|
+
.theme-glass .palette .description > a.read-more {
|
718
|
+
font-size: 11px;
|
719
|
+
float: right; }
|
720
|
+
|
721
|
+
.theme-glass .palette a.author {
|
722
|
+
color: brown;
|
723
|
+
font-weight: bold !important; }
|
724
|
+
|
725
|
+
.theme-glass .palette .time, .theme-glass .palette .date, .theme-glass .palette .time-ago, .theme-glass .palette .date-time, .theme-glass .palette .display-time {
|
726
|
+
color: #898989; }
|
727
|
+
|
728
|
+
.theme-glass .palette a.right-heading-link {
|
729
|
+
float: right;
|
730
|
+
color: #fff;
|
731
|
+
font-style: underline;
|
732
|
+
font-size: 11px; }
|
733
|
+
|
734
|
+
/* Overriding simple form css for forms */
|
735
|
+
.theme-glass .palette .form-horizontal .control-group {
|
736
|
+
margin-bottom: 10px; }
|
737
|
+
|
738
|
+
.theme-glass .palette .form-horizontal .help-block {
|
739
|
+
text-align: right;
|
740
|
+
color: #C1C1C1; }
|
741
|
+
|
742
|
+
.control-group.error > label, .control-group.error .help-block, .control-group.error .help-inline {
|
743
|
+
color: #ce817f; }
|
744
|
+
|
745
|
+
.theme-glass .palette .form-horizontal .help-block {
|
746
|
+
text-align: right;
|
747
|
+
color: #C1C1C1; }
|
748
|
+
|
749
|
+
.theme-glass .palette .form-horizontal .controls input {
|
750
|
+
width: 90%; }
|
751
|
+
|
752
|
+
.theme-glass .palette .form-horizontal .control-label {
|
753
|
+
color: #FFF; }
|
754
|
+
|
755
|
+
/*.theme-default .palette { min-height: 20px;padding: 10px;margin-bottom: 20px;background: transparent; }
|
756
|
+
|
757
|
+
.theme-default.contrast-dark .palette-outer { background-color: #4b4b4b;color:#fff; border: 1px solid whitesmoke; }
|
758
|
+
.theme-default.contrast-light .palette-outer { background-color: white;color:#4b4b4b; border: 1px solid #c1c1c1; }
|
759
|
+
.theme-default.contrast-dark .palette-outer:hover, .theme-default .palette-outer.selected { background-color: #000; }
|
760
|
+
.theme-default.contrast-light .palette-outer:hover, .theme-default .palette-outer.selected { background-color: #fff; }
|
761
|
+
|
762
|
+
.theme-default.contrast-dark .palette-inner { background-color: #898989;color:#4b4b4b;border-bottom: 1px solid #898989; }
|
763
|
+
.theme-default.contrast-light .palette-inner { background-color: #4b4b4b;color:#fff;border-bottom: 1px solid #4b4b4b; }
|
764
|
+
.theme-default.contrast-dark .palette-inner:hover, .theme-default .palette-inner.selected { background-color: #fff; }
|
765
|
+
.theme-default.contrast-light .palette-inner:hover, .theme-default .palette-inner.selected { background-color: #000; }
|
766
|
+
|
767
|
+
.theme-default.contrast-dark .palette-token { background-color: whitesmoke;color:#4b4b4b; }
|
768
|
+
.theme-default.contrast-light .palette-token { background-color: #4b4b4b;color:#fff; }
|
769
|
+
.theme-default.contrast-dark .palette-token a { color:#fff !important}
|
770
|
+
.theme-default.contrast-light .palette-token a { color:#4b4b4b !important}
|
771
|
+
.theme-default.contrast-dark .palette-token:hover, .theme-default .palette-inner.selected { background-color: #000;color:#fff; }
|
772
|
+
.theme-default.contrast-light .palette-token:hover, .theme-default .palette-inner.selected { background-color: whitesmoke;color:#4b4b4b; }
|
773
|
+
|
774
|
+
.theme-default .palette-shadow { -webkit-box-shadow: inset 0 1px 1px rgb(0, 0, 0); -moz-box-shadow: inset 0 1px 1px rgb(0, 0, 0); box-shadow: inset 0 1px 1px rgb(0, 0, 0); }
|
775
|
+
.theme-default .palette-rounded { -webkit-border-radius: 4px;-moz-border-radius: 4px;border-radius: 4px; }
|
776
|
+
.theme-default .palette-bordered { border: 1px solid #c1c1c1; }
|
777
|
+
|
778
|
+
.theme-default .palette > h1, .theme-default .palette > h2, .theme-default .palette > h3, .theme-default .palette > h4, .theme-default .palette > h5, .theme-default .palette > h6 { margin: 10px 0; font-family: inherit; font-weight: bold; line-height: 20px; color: #4b4b4b; text-rendering: optimizelegibility; text-align:left; border-bottom:1px solid #c1c1c1; padding-bottom:20px; }
|
779
|
+
.theme-default.contrast-dark .palette > h1, .theme-default.contrast-dark .palette > h2, .theme-default.contrast-dark .palette > h3, .theme-default.contrast-dark .palette > h4, .theme-default.contrast-dark .palette > h5, .theme-default.contrast-dark .palette > h6 { color: #fff; border-bottom:1px solid whitesmoke;}
|
780
|
+
.theme-default .palette > h4, .theme-default .palette > h5, .theme-default .palette > h6 { padding-bottom:10px; }
|
781
|
+
.theme-default .palette .palette-inner > h1, .theme-default .palette .palette-inner > h2, .theme-default .palette .palette-inner > h3, .theme-default .palette .palette-inner > h4, .theme-default .palette .palette-inner > h5, .theme-default .palette .palette-inner > h6 { color: whitesmoke; }
|
782
|
+
.theme-default.contrast-dark .palette .palette-inner > h1, .theme-default.contrast-dark .palette .palette-inner > h2, .theme-default.contrast-dark .palette .palette-inner > h3, .theme-default.contrast-dark .palette .palette-inner > h4, .theme-default.contrast-dark .palette .palette-inner > h5, .theme-default.contrast-dark .palette .palette-inner > h6 { color: #4b4b4b; }
|
783
|
+
|
784
|
+
h1 > a.right-heading-link, h2 > a.right-heading-link, h3 > a.right-heading-link, h4 > a.right-heading-link, h5 > a.right-heading-link, h6 > a.right-heading-link {float:right;color:#898989;font-style:underline; font-size:11px;}
|
785
|
+
|
786
|
+
.theme-default .palette a:not(.close):not(.escape-color) {color:#4b4b4b;font-weight:bold;}
|
787
|
+
.theme-default .palette a:not(.close):not(.escape-color):hover {color:#005580;}
|
788
|
+
|
789
|
+
.lnk { color: #fff; }
|
790
|
+
.lnk:hover { color: orange; }
|
791
|
+
|
792
|
+
.theme-default .palette a.title {font-size:18px;}
|
793
|
+
.theme-default .palette .palette-inner a.title {color:#fff;}
|
794
|
+
.theme-default .palette .palette-inner a.title:hover {color:orange;}
|
795
|
+
|
796
|
+
.theme-default .palette a.sub-title {font-size:16px;}
|
797
|
+
.theme-default .palette .palette-inner a.sub-title {color:#fff;}
|
798
|
+
.theme-default .palette .palette-inner a.sub-title:hover {color:orange;}
|
799
|
+
|
800
|
+
.theme-default .palette a.small-title {font-size:14px;}
|
801
|
+
.theme-default .palette .palette-inner a.small-title {color:#fff;}
|
802
|
+
.theme-default .palette .palette-inner a.small-title:hover {color:orange;}
|
803
|
+
|
804
|
+
.theme-default .palette a.small-sub-title {font-size:13px;}
|
805
|
+
.theme-default .palette .palette-inner a.small-sub-title {color:#fff;}
|
806
|
+
.theme-default .palette .palette-inner a.small-sub-title:hover {color:orange;}
|
807
|
+
|
808
|
+
.theme-default .palette a.tiny-title {font-size:12px;}
|
809
|
+
.theme-default .palette .palette-inner a.tiny-title {color:#fff;}
|
810
|
+
.theme-default .palette .palette-inner a.tiny-title:hover {color:orange;}
|
811
|
+
.theme-default .palette .description {color:#4b4b4b;margin:0px;}
|
812
|
+
.theme-default .palette .palette-inner .description {color:#fff;}
|
813
|
+
.theme-default .palette .description > a.read-more {font-size:11px;float:right;}
|
814
|
+
|
815
|
+
.theme-default .palette a.author {color:brown;font-weight:bold !important}
|
816
|
+
.theme-default .palette .palette-inner a.author {color:darkorange;font-weight:bold !important}
|
817
|
+
.theme-default .palette .time, .theme-default .palette .date, .theme-default .palette .time-ago, .theme-default .palette .date-time, .theme-default .palette .display-time {color:#898989;}
|
818
|
+
*/
|
819
|
+
/* Form Heading */
|
820
|
+
/*.form-heading1 {text-align: left;margin: 0px 0px 20px 0px;color:#4b4b4b;border-bottom:1px solid #c1c1c1;padding-bottom:10px;}*/
|
821
|
+
/* Overriding simple form css */
|
822
|
+
/*.theme-default .palette .form-horizontal .control-group {margin-bottom:10px;}
|
823
|
+
.theme-default .palette .form-horizontal .help-block {text-align:right;color:#898989;}
|
824
|
+
.theme-default .palette .form-horizontal .controls input{width:90%;}
|
825
|
+
.theme-default .palette .form-horizontal .control-label{color:#4b4b4b;}*/
|