oocss-compass 0.0.2
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/LICENSE +30 -0
- data/lib/oocss-compass.rb +4 -0
- data/stylesheets/_definitions.scss +64 -0
- data/stylesheets/_mixins.scss +13 -0
- data/stylesheets/_oocss-compass.scss +61 -0
- data/stylesheets/core/_libraries.scss +82 -0
- data/stylesheets/core/grid/_grids.scss +59 -0
- data/stylesheets/core/grid/_grids_debug.scss +36 -0
- data/stylesheets/core/module/_mod.scss +120 -0
- data/stylesheets/core/module/_mod_debug.scss +28 -0
- data/stylesheets/core/template/_template.scss +69 -0
- data/stylesheets/core/template/_template_debug.scss +19 -0
- data/stylesheets/plugins/breadcrumb/_breadcrumb.scss +15 -0
- data/stylesheets/plugins/breadcrumb/breadcrumb.css +4 -0
- data/stylesheets/plugins/tabs/_tabs.scss +146 -0
- data/stylesheets/plugins/talk/_talk.scss +76 -0
- data/stylesheets/plugins/talk/talk.css +20 -0
- data/templates/project/default.scss +19 -0
- data/templates/project/demos/core/grids/grids_all.html +362 -0
- data/templates/project/demos/core/grids/grids_doc.html +225 -0
- data/templates/project/demos/core/module/mod_doc.html +352 -0
- data/templates/project/demos/core/template/template.html +53 -0
- data/templates/project/demos/core/template/template_doc.html +108 -0
- data/templates/project/demos/plugins/breadcrumb/breadcrumb.html +42 -0
- data/templates/project/demos/plugins/tabs/tabs_doc.html +105 -0
- data/templates/project/demos/plugins/talk/talk_doc.html +158 -0
- data/templates/project/manifest.rb +13 -0
- data/templates/project/partials/_base.scss +0 -0
- data/templates/project/partials/core/_content.scss +261 -0
- data/templates/project/partials/core/_mod_skins.scss +405 -0
- data/templates/project/partials/core/content.css +73 -0
- data/templates/project/partials/core/mod_skins.css +113 -0
- data/templates/project/partials/plugins/_talk_skins.scss +54 -0
- data/templates/project/partials/plugins/talk_skins.css +18 -0
- data/templates/project/skin/about.png +0 -0
- data/templates/project/skin/author.png +0 -0
- data/templates/project/skin/even.png +0 -0
- data/templates/project/skin/even_borders.psd +0 -0
- data/templates/project/skin/even_lr.png +0 -0
- data/templates/project/skin/even_tb.png +0 -0
- data/templates/project/skin/excerpt.png +0 -0
- data/templates/project/skin/faq.png +0 -0
- data/templates/project/skin/gc.png +0 -0
- data/templates/project/skin/gc_header.png +0 -0
- data/templates/project/skin/gc_header2.png +0 -0
- data/templates/project/skin/glow.png +0 -0
- data/templates/project/skin/glow_7px.png +0 -0
- data/templates/project/skin/glow_test.png +0 -0
- data/templates/project/skin/glow_thin.png +0 -0
- data/templates/project/skin/grab.png +0 -0
- data/templates/project/skin/header.png +0 -0
- data/templates/project/skin/header_glossy.png +0 -0
- data/templates/project/skin/header_gradient_light.png +0 -0
- data/templates/project/skin/help.png +0 -0
- data/templates/project/skin/highlight.png +0 -0
- data/templates/project/skin/info.png +0 -0
- data/templates/project/skin/kakapo.png +0 -0
- data/templates/project/skin/me.png +0 -0
- data/templates/project/skin/noted.png +0 -0
- data/templates/project/skin/online.png +0 -0
- data/templates/project/skin/photo.png +0 -0
- data/templates/project/skin/round.png +0 -0
- data/templates/project/skin/simple_corners.png +0 -0
- data/templates/project/skin/simple_extended.png +0 -0
- data/templates/project/skin/store.png +0 -0
- data/templates/project/skin/talk.png +0 -0
- data/templates/project/skin/universe.png +0 -0
- data/templates/project/skin/universe_gray.png +0 -0
- data/templates/project/skin/universe_login.png +0 -0
- metadata +147 -0
|
File without changes
|
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
body {
|
|
2
|
+
font-family: $body_fontFamily; }
|
|
3
|
+
|
|
4
|
+
/* **************** CONTENT OBJECTS ***************** */
|
|
5
|
+
/* ====== Default spacing ====== */
|
|
6
|
+
|
|
7
|
+
h1, h2, h3, h4, h5, h6, ul, ol, dl, p, blockquote {
|
|
8
|
+
padding: $default_padding; }
|
|
9
|
+
|
|
10
|
+
h1, h2, h3, h4, h5, h6, img {
|
|
11
|
+
padding-bottom: 0px; }
|
|
12
|
+
|
|
13
|
+
pre {
|
|
14
|
+
margin: $default_padding; }
|
|
15
|
+
|
|
16
|
+
table {
|
|
17
|
+
h1, h2, h3, h4, h5, h6, p, ul, ol, dl {
|
|
18
|
+
padding: 0; } }
|
|
19
|
+
|
|
20
|
+
/* ====== Elements ====== */
|
|
21
|
+
|
|
22
|
+
img {
|
|
23
|
+
display: block; }
|
|
24
|
+
|
|
25
|
+
em {
|
|
26
|
+
font-style: italic; }
|
|
27
|
+
|
|
28
|
+
strong {
|
|
29
|
+
font-weight: bold; }
|
|
30
|
+
|
|
31
|
+
hr {
|
|
32
|
+
border: 5px solid $hr_color;
|
|
33
|
+
border-width: 0 0 5px 0;
|
|
34
|
+
margin: #{$default_padding * 2} $default_padding $default_padding $default_padding; }
|
|
35
|
+
|
|
36
|
+
code {
|
|
37
|
+
color: #0B8C8F; }
|
|
38
|
+
|
|
39
|
+
/* ====== Headings ====== */
|
|
40
|
+
/* .h1-.h6 classes should be used to maintain the semantically appropriate heading levels - NOT for use on non-headings */
|
|
41
|
+
|
|
42
|
+
h1, .h1 {
|
|
43
|
+
font-size: $h1_size;
|
|
44
|
+
font-weight: normal;
|
|
45
|
+
font-style: normal;
|
|
46
|
+
color: #AE0345; }
|
|
47
|
+
|
|
48
|
+
h2, .h2 {
|
|
49
|
+
font-size: 167%;
|
|
50
|
+
font-weight: normal;
|
|
51
|
+
font-style: normal;
|
|
52
|
+
color: #AE0345; }
|
|
53
|
+
|
|
54
|
+
h3, .h3 {
|
|
55
|
+
font-size: 146.5%;
|
|
56
|
+
font-weight: normal;
|
|
57
|
+
font-style: normal;
|
|
58
|
+
color: #DF2B72; }
|
|
59
|
+
|
|
60
|
+
h4, .h4 {
|
|
61
|
+
font-size: 123.1%;
|
|
62
|
+
font-weight: normal;
|
|
63
|
+
font-style: normal;
|
|
64
|
+
color: #333; }
|
|
65
|
+
|
|
66
|
+
h5, .h5 {
|
|
67
|
+
font-size: 108%;
|
|
68
|
+
font-weight: bold;
|
|
69
|
+
font-style: normal;
|
|
70
|
+
color: #AE0345; }
|
|
71
|
+
|
|
72
|
+
h6, .h6 {
|
|
73
|
+
font-size: 108%;
|
|
74
|
+
font-weight: normal;
|
|
75
|
+
font-style: italic;
|
|
76
|
+
color: #333; }
|
|
77
|
+
|
|
78
|
+
/* if additional headings are needed they should be created via additional classes, never via location dependant styling */
|
|
79
|
+
|
|
80
|
+
.category {
|
|
81
|
+
font-size: 108%;
|
|
82
|
+
font-weight: normal;
|
|
83
|
+
font-style: normal;
|
|
84
|
+
text-transform: uppercase;
|
|
85
|
+
color: #333;
|
|
86
|
+
a {
|
|
87
|
+
color: #333; } }
|
|
88
|
+
|
|
89
|
+
.important a {
|
|
90
|
+
font-weight: bold; }
|
|
91
|
+
|
|
92
|
+
/* links */
|
|
93
|
+
|
|
94
|
+
a {
|
|
95
|
+
color: #2c4460;
|
|
96
|
+
text-decoration: none;
|
|
97
|
+
&:focus, &:hover {
|
|
98
|
+
text-decoration: underline; }
|
|
99
|
+
&:focus {
|
|
100
|
+
background-color: #FFFFCC; }
|
|
101
|
+
&:visited {
|
|
102
|
+
color: #005a9c; } }
|
|
103
|
+
|
|
104
|
+
/* ====== Lists ======*/
|
|
105
|
+
/* numbered list */
|
|
106
|
+
|
|
107
|
+
ol.simpleList li {
|
|
108
|
+
list-style-type: decimal;
|
|
109
|
+
margin-left: 40px; }
|
|
110
|
+
|
|
111
|
+
/* standard list */
|
|
112
|
+
|
|
113
|
+
ul.simpleList li {
|
|
114
|
+
list-style-type: disc;
|
|
115
|
+
margin-left: 40px; }
|
|
116
|
+
|
|
117
|
+
/* ====== Tables ====== */
|
|
118
|
+
|
|
119
|
+
.data {
|
|
120
|
+
padding: 20px;
|
|
121
|
+
position: relative;
|
|
122
|
+
zoom: 1;
|
|
123
|
+
vertical-align: top;
|
|
124
|
+
border-right: solid 1px transparent;
|
|
125
|
+
/* border fixes a FF2 bug which causes the data table to overlay its borders*/
|
|
126
|
+
table {
|
|
127
|
+
width: 100%;
|
|
128
|
+
border: 1px solid #AE0345; } }
|
|
129
|
+
|
|
130
|
+
th, td {
|
|
131
|
+
vertical-align: top;
|
|
132
|
+
border: 1px solid #AE0345; }
|
|
133
|
+
|
|
134
|
+
.txtC {
|
|
135
|
+
text-align: center; }
|
|
136
|
+
|
|
137
|
+
.data .txtC {
|
|
138
|
+
td, th {
|
|
139
|
+
text-align: center; } }
|
|
140
|
+
|
|
141
|
+
.txtL {
|
|
142
|
+
text-align: left; }
|
|
143
|
+
|
|
144
|
+
.data .txtL {
|
|
145
|
+
td, th {
|
|
146
|
+
text-align: left; } }
|
|
147
|
+
|
|
148
|
+
.txtR {
|
|
149
|
+
text-align: right; }
|
|
150
|
+
|
|
151
|
+
.data .txtR {
|
|
152
|
+
td, th {
|
|
153
|
+
text-align: right; } }
|
|
154
|
+
|
|
155
|
+
.txtT {
|
|
156
|
+
vertical-align: top; }
|
|
157
|
+
|
|
158
|
+
.data .txtT {
|
|
159
|
+
td, th {
|
|
160
|
+
vertical-align: top; } }
|
|
161
|
+
|
|
162
|
+
.txtB {
|
|
163
|
+
vertical-align: bottom; }
|
|
164
|
+
|
|
165
|
+
.data .txtB {
|
|
166
|
+
td, th {
|
|
167
|
+
vertical-align: bottom; } }
|
|
168
|
+
|
|
169
|
+
.txtM {
|
|
170
|
+
vertical-align: middle; }
|
|
171
|
+
|
|
172
|
+
.data {
|
|
173
|
+
.txtM {
|
|
174
|
+
td, th {
|
|
175
|
+
vertical-align: middle; } }
|
|
176
|
+
th, td {
|
|
177
|
+
padding: 3px 20px; }
|
|
178
|
+
thead tr {
|
|
179
|
+
background-color: #fff0f8; }
|
|
180
|
+
th {
|
|
181
|
+
color: #000;
|
|
182
|
+
font-weight: bold; } }
|
|
183
|
+
|
|
184
|
+
/* specification table - extends data table */
|
|
185
|
+
|
|
186
|
+
.spec {
|
|
187
|
+
padding: 10px;
|
|
188
|
+
table {
|
|
189
|
+
border-top: 1px solid #e2e2e2;
|
|
190
|
+
border-bottom-color: #fff;
|
|
191
|
+
border-left: none;
|
|
192
|
+
border-right: none; }
|
|
193
|
+
th, td {
|
|
194
|
+
border: 1px solid #e2e2e2;
|
|
195
|
+
border-width: 1px 0;
|
|
196
|
+
padding-left: 0; }
|
|
197
|
+
.odd, .even {
|
|
198
|
+
background-color: #fff; } }
|
|
199
|
+
|
|
200
|
+
/* ====== blockquote ====== */
|
|
201
|
+
|
|
202
|
+
cite {
|
|
203
|
+
display: block;
|
|
204
|
+
text-align: right;
|
|
205
|
+
padding-top: 10px; }
|
|
206
|
+
|
|
207
|
+
/* ====== callout ====== */
|
|
208
|
+
|
|
209
|
+
.callout {
|
|
210
|
+
font-size: 189%;
|
|
211
|
+
color: #999999;
|
|
212
|
+
font-style: italic;
|
|
213
|
+
cite {
|
|
214
|
+
display: block;
|
|
215
|
+
text-align: right;
|
|
216
|
+
padding-top: 30px;
|
|
217
|
+
font-size: 69.25%; }
|
|
218
|
+
span {
|
|
219
|
+
&.quot {
|
|
220
|
+
font-size: 500%;
|
|
221
|
+
vertical-align: sub;
|
|
222
|
+
color: #e2e2e2;
|
|
223
|
+
line-height: 25px;
|
|
224
|
+
font-weight: bold; }
|
|
225
|
+
&.quotLast {
|
|
226
|
+
vertical-align: middle; } } }
|
|
227
|
+
|
|
228
|
+
/* ====== image treatments (get more from jason santa maria) ====== */
|
|
229
|
+
|
|
230
|
+
.caption {
|
|
231
|
+
font-size: 13px;
|
|
232
|
+
color: #666666;
|
|
233
|
+
font-style: italic;
|
|
234
|
+
padding-top: 0; }
|
|
235
|
+
|
|
236
|
+
/* will need to either
|
|
237
|
+
1. find a way to capture the width of the caption in the width of the image or flash
|
|
238
|
+
2. Set some default widths, mby use flickr widths?
|
|
239
|
+
*/
|
|
240
|
+
/* ====== media ====== */
|
|
241
|
+
|
|
242
|
+
.media {
|
|
243
|
+
overflow: hidden;
|
|
244
|
+
overflow: visible;
|
|
245
|
+
zoom: 1;
|
|
246
|
+
margin: 10px;
|
|
247
|
+
.img {
|
|
248
|
+
float: left;
|
|
249
|
+
margin-right: 10px;
|
|
250
|
+
img {
|
|
251
|
+
display: block; } }
|
|
252
|
+
.imgExt {
|
|
253
|
+
float: right;
|
|
254
|
+
margin-left: 10px; } }
|
|
255
|
+
|
|
256
|
+
/* ====== special formatting classes ====== */
|
|
257
|
+
|
|
258
|
+
.detail {
|
|
259
|
+
color: #777;
|
|
260
|
+
font-size: 11px;
|
|
261
|
+
display: block; }
|
|
@@ -0,0 +1,405 @@
|
|
|
1
|
+
/* **************** BLOCK SKINS ***************** */
|
|
2
|
+
/* ====== Contour blocks ====== */
|
|
3
|
+
/* remove background-image:" to default to square corners for IE */
|
|
4
|
+
/* ----- simple (extends mod) ----- */
|
|
5
|
+
|
|
6
|
+
.simple {
|
|
7
|
+
.inner {
|
|
8
|
+
border: 1px solid #D7D7D7;
|
|
9
|
+
-moz-border-radius: 7px;
|
|
10
|
+
-webkit-border-radius: 7px;
|
|
11
|
+
border-radius: 7px; }
|
|
12
|
+
b {
|
|
13
|
+
*background-image: url(skin/simple_corners.png); } }
|
|
14
|
+
|
|
15
|
+
/* ----- basic (extends mod) ----- */
|
|
16
|
+
|
|
17
|
+
.basic {
|
|
18
|
+
.inner {
|
|
19
|
+
-moz-border-radius: 7px;
|
|
20
|
+
-webkit-border-radius: 7px;
|
|
21
|
+
border-radius: 7px; }
|
|
22
|
+
b {
|
|
23
|
+
*background-image: url(skin/round.png); } }
|
|
24
|
+
|
|
25
|
+
/* ----- simpleExt (extends mod) ----- */
|
|
26
|
+
|
|
27
|
+
.simpleExt {
|
|
28
|
+
border: 1px solid #c7c7c7;
|
|
29
|
+
-moz-border-radius: 7px;
|
|
30
|
+
-webkit-border-radius: 7px;
|
|
31
|
+
border-radius: 7px;
|
|
32
|
+
.inner {
|
|
33
|
+
border: 1px solid #c7c7c7;
|
|
34
|
+
-moz-border-radius: 7px;
|
|
35
|
+
-webkit-border-radius: 7px;
|
|
36
|
+
border-radius: 7px;
|
|
37
|
+
border-color: #fff;
|
|
38
|
+
border-width: 4px;
|
|
39
|
+
background-color: #e2e2e2; }
|
|
40
|
+
b {
|
|
41
|
+
*background-image: url(skin/simple_extended.png); }
|
|
42
|
+
.tl {
|
|
43
|
+
left: -1px;
|
|
44
|
+
top: -1px;
|
|
45
|
+
height: 12px;
|
|
46
|
+
width: 12px; }
|
|
47
|
+
.tr {
|
|
48
|
+
right: -1px;
|
|
49
|
+
top: -1px;
|
|
50
|
+
height: 12px;
|
|
51
|
+
width: 12px; }
|
|
52
|
+
.bl {
|
|
53
|
+
left: -1px;
|
|
54
|
+
bottom: -1px;
|
|
55
|
+
height: 12px;
|
|
56
|
+
width: 12px;
|
|
57
|
+
margin-top: -12px; }
|
|
58
|
+
.br {
|
|
59
|
+
right: -1px;
|
|
60
|
+
bottom: -1px;
|
|
61
|
+
height: 12px;
|
|
62
|
+
width: 12px;
|
|
63
|
+
margin-top: -12px; } }
|
|
64
|
+
|
|
65
|
+
/* ----- me (extends mod) use for my comments ----- */
|
|
66
|
+
|
|
67
|
+
.me {
|
|
68
|
+
border: 1px solid #909090;
|
|
69
|
+
-moz-border-radius: 5px;
|
|
70
|
+
-webkit-border-radius: 5px;
|
|
71
|
+
border-radius: 5px;
|
|
72
|
+
.inner {
|
|
73
|
+
border: 1px solid #909090;
|
|
74
|
+
-moz-border-radius: 5px;
|
|
75
|
+
-webkit-border-radius: 5px;
|
|
76
|
+
border-radius: 5px;
|
|
77
|
+
border-color: #d76a84; }
|
|
78
|
+
b {
|
|
79
|
+
*background-image: url(skin/me.png); }
|
|
80
|
+
.tl {
|
|
81
|
+
left: -1px;
|
|
82
|
+
top: -1px; }
|
|
83
|
+
.tr {
|
|
84
|
+
right: -1px;
|
|
85
|
+
top: -1px; }
|
|
86
|
+
.bl {
|
|
87
|
+
left: -1px;
|
|
88
|
+
bottom: -1px; }
|
|
89
|
+
.br {
|
|
90
|
+
right: -1px;
|
|
91
|
+
bottom: -1px; } }
|
|
92
|
+
|
|
93
|
+
/* ----- noted (extends mod) ----- */
|
|
94
|
+
|
|
95
|
+
.noted {
|
|
96
|
+
border: 1px solid #c2c2c2;
|
|
97
|
+
-moz-border-radius: 5px;
|
|
98
|
+
-webkit-border-radius: 5px;
|
|
99
|
+
border-radius: 5px;
|
|
100
|
+
.inner {
|
|
101
|
+
border: 1px solid #c2c2c2;
|
|
102
|
+
-moz-border-radius: 5px;
|
|
103
|
+
-webkit-border-radius: 5px;
|
|
104
|
+
border-radius: 5px;
|
|
105
|
+
border-color: #eded68; }
|
|
106
|
+
b {
|
|
107
|
+
*background-image: url(skin/noted.png); }
|
|
108
|
+
.tl {
|
|
109
|
+
left: -1px;
|
|
110
|
+
top: -1px; }
|
|
111
|
+
.tr {
|
|
112
|
+
right: -1px;
|
|
113
|
+
top: -1px; }
|
|
114
|
+
.bl {
|
|
115
|
+
left: -1px;
|
|
116
|
+
bottom: -1px; }
|
|
117
|
+
.br {
|
|
118
|
+
right: -1px;
|
|
119
|
+
bottom: -1px; } }
|
|
120
|
+
|
|
121
|
+
/* ----- grab (extends mod) ----- */
|
|
122
|
+
|
|
123
|
+
.grab {
|
|
124
|
+
.inner {
|
|
125
|
+
border: 3px solid #00477a;
|
|
126
|
+
border-bottom-width: 10px; }
|
|
127
|
+
b {
|
|
128
|
+
background-image: url(skin/grab.png); }
|
|
129
|
+
.bl, .br {
|
|
130
|
+
height: 16px;
|
|
131
|
+
/*if height is set, margin set*/
|
|
132
|
+
margin-top: -16px; } }
|
|
133
|
+
|
|
134
|
+
/* can't be done w border radius */
|
|
135
|
+
|
|
136
|
+
/*.grab .tl, .grab .tr{height:10px; width:10px;}*/
|
|
137
|
+
|
|
138
|
+
/* ----- faq (extends mod) ----- */
|
|
139
|
+
|
|
140
|
+
.faq {
|
|
141
|
+
.inner {
|
|
142
|
+
border: 3px solid #b20029;
|
|
143
|
+
border-bottom-width: 10px; }
|
|
144
|
+
b {
|
|
145
|
+
background-image: url(skin/faq.png); }
|
|
146
|
+
.bl, .br {
|
|
147
|
+
height: 16px;
|
|
148
|
+
/*if height is set, margin set*/
|
|
149
|
+
margin-top: -16px; } }
|
|
150
|
+
|
|
151
|
+
/* can't be done w border radius */
|
|
152
|
+
|
|
153
|
+
/* ----- onlinestore (extends mod) ----- */
|
|
154
|
+
|
|
155
|
+
.onlinestore {
|
|
156
|
+
.inner {
|
|
157
|
+
border: 3px solid #9a9800;
|
|
158
|
+
border-bottom-width: 10px; }
|
|
159
|
+
b {
|
|
160
|
+
background-image: url(skin/store.png); }
|
|
161
|
+
.bl, .br {
|
|
162
|
+
height: 16px;
|
|
163
|
+
/*if height is set, margin set*/
|
|
164
|
+
margin-top: -16px; } }
|
|
165
|
+
|
|
166
|
+
/* can't be done w border radius */
|
|
167
|
+
|
|
168
|
+
/* ----- about (extends mod) ----- */
|
|
169
|
+
|
|
170
|
+
.about {
|
|
171
|
+
.inner {
|
|
172
|
+
border: 3px solid #494949;
|
|
173
|
+
border-bottom-width: 10px; }
|
|
174
|
+
b {
|
|
175
|
+
background-image: url(skin/about.png); }
|
|
176
|
+
.bl, .br {
|
|
177
|
+
height: 16px;
|
|
178
|
+
/*if height is set, margin set*/
|
|
179
|
+
margin-top: -16px; } }
|
|
180
|
+
|
|
181
|
+
/* can't be done w border radius */
|
|
182
|
+
|
|
183
|
+
/* ----- talk (extends mod) ----- */
|
|
184
|
+
|
|
185
|
+
.talk {
|
|
186
|
+
border: 1px solid #c7c7c7;
|
|
187
|
+
-moz-border-radius: 5px;
|
|
188
|
+
-webkit-border-radius: 5px;
|
|
189
|
+
border-radius: 5px;
|
|
190
|
+
.inner {
|
|
191
|
+
border: 1px solid #c7c7c7;
|
|
192
|
+
-moz-border-radius: 5px;
|
|
193
|
+
-webkit-border-radius: 5px;
|
|
194
|
+
border-radius: 5px;
|
|
195
|
+
border-color: #ededed; }
|
|
196
|
+
b {
|
|
197
|
+
*background-image: url(skin/talk.png); }
|
|
198
|
+
.tl {
|
|
199
|
+
left: -1px;
|
|
200
|
+
top: -1px; }
|
|
201
|
+
.tr {
|
|
202
|
+
right: -1px;
|
|
203
|
+
top: -1px; }
|
|
204
|
+
.bl {
|
|
205
|
+
left: -1px;
|
|
206
|
+
bottom: -1px; }
|
|
207
|
+
.br {
|
|
208
|
+
right: -1px;
|
|
209
|
+
bottom: -1px; } }
|
|
210
|
+
|
|
211
|
+
/* ----- photo (extends complex) ----- */
|
|
212
|
+
|
|
213
|
+
.photo {
|
|
214
|
+
.inner {
|
|
215
|
+
border: solid 10px #fff;
|
|
216
|
+
margin: 0 4px; }
|
|
217
|
+
b {
|
|
218
|
+
background-image: url(skin/photo.png); }
|
|
219
|
+
.tr, .tl {
|
|
220
|
+
width: 20px; }
|
|
221
|
+
.top, .bottom {
|
|
222
|
+
height: 4px;
|
|
223
|
+
margin-top: 0px; }
|
|
224
|
+
.bl, .br {
|
|
225
|
+
height: 16px;
|
|
226
|
+
margin-top: -12px; } }
|
|
227
|
+
|
|
228
|
+
/* muck with margins to change how the block will align with other blocks, any value between 0-10px */
|
|
229
|
+
|
|
230
|
+
/* ----- flow (extends complex) ----- */
|
|
231
|
+
|
|
232
|
+
.flow {
|
|
233
|
+
margin: 6px;
|
|
234
|
+
b {
|
|
235
|
+
background-image: url(skin/even.png); }
|
|
236
|
+
.inner {
|
|
237
|
+
padding: 0 4px; }
|
|
238
|
+
.top {
|
|
239
|
+
height: 4px; }
|
|
240
|
+
.bottom {
|
|
241
|
+
height: 4px;
|
|
242
|
+
margin-top: -4px; }
|
|
243
|
+
.br, .bl {
|
|
244
|
+
margin-top: -6px; } }
|
|
245
|
+
|
|
246
|
+
/* margin top = bottom height - corner height */
|
|
247
|
+
/* ----- shadow test (experimental attempt to match "flow" cross browser w no img)----- */
|
|
248
|
+
|
|
249
|
+
.boo {
|
|
250
|
+
-webkit-box-shadow: 0px 0px 1px rgba(0, 0, 0, 33);
|
|
251
|
+
-moz-box-shadow: black 2px 2px 2px 2px;
|
|
252
|
+
/*-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;*/
|
|
253
|
+
border: solid 1px #949494;
|
|
254
|
+
background: #fff; }
|
|
255
|
+
|
|
256
|
+
/* ----- .excerpt (extends complex) ----- */
|
|
257
|
+
|
|
258
|
+
.excerpt {
|
|
259
|
+
b {
|
|
260
|
+
background-image: url(skin/excerpt.png); }
|
|
261
|
+
.top {
|
|
262
|
+
height: 1px; }
|
|
263
|
+
.bottom {
|
|
264
|
+
height: 6px;
|
|
265
|
+
margin-top: -6px; }
|
|
266
|
+
.br, .bl {
|
|
267
|
+
height: 12px;
|
|
268
|
+
margin-top: -6px; } }
|
|
269
|
+
|
|
270
|
+
/* margin top equal to - height of bottom */
|
|
271
|
+
/* margin top = bottom height - corner height */
|
|
272
|
+
/* ----- sommers (extends pop) ----- */
|
|
273
|
+
|
|
274
|
+
.sommers {
|
|
275
|
+
.inner {
|
|
276
|
+
_border: 3px solid #D7D7D7;
|
|
277
|
+
background-image: url(skin/glow_7px.png);
|
|
278
|
+
_background-image: none; }
|
|
279
|
+
background-image: url(skin/glow_7px.png);
|
|
280
|
+
_background-image: none;
|
|
281
|
+
b {
|
|
282
|
+
background-image: url(skin/glow_7px.png);
|
|
283
|
+
_background-image: none; }
|
|
284
|
+
margin: 3px 20px 20px 3px; }
|
|
285
|
+
|
|
286
|
+
/*IE6 backup no alpha transparency */
|
|
287
|
+
|
|
288
|
+
/* ----- gonzalo ----- */
|
|
289
|
+
|
|
290
|
+
.gonzalo {
|
|
291
|
+
background-image: url(skin/gc.png);
|
|
292
|
+
.inner, b {
|
|
293
|
+
background-image: url(skin/gc.png); } }
|
|
294
|
+
|
|
295
|
+
/* ====== Background blocks ====== */
|
|
296
|
+
|
|
297
|
+
.sale .inner {
|
|
298
|
+
background: red none; }
|
|
299
|
+
|
|
300
|
+
.nicole {
|
|
301
|
+
.inner {
|
|
302
|
+
background: #c01c41 none;
|
|
303
|
+
color: #fff; }
|
|
304
|
+
* {
|
|
305
|
+
color: #fff; } }
|
|
306
|
+
|
|
307
|
+
.login * {
|
|
308
|
+
color: #fff; }
|
|
309
|
+
|
|
310
|
+
.highlight .inner {
|
|
311
|
+
background: #e3e36f none; }
|
|
312
|
+
|
|
313
|
+
.universe .inner {
|
|
314
|
+
background: url(skin/universe.png) repeat left top; }
|
|
315
|
+
|
|
316
|
+
.foo .inner {
|
|
317
|
+
background: url(skin/universe_gray.png) repeat left top; }
|
|
318
|
+
|
|
319
|
+
.login .inner {
|
|
320
|
+
background: url(skin/universe_login.png) repeat left top; }
|
|
321
|
+
|
|
322
|
+
.comment .inner {
|
|
323
|
+
background: #e2e2e2 none; }
|
|
324
|
+
|
|
325
|
+
/* ====== Block headers and footers ====== */
|
|
326
|
+
|
|
327
|
+
.hd {
|
|
328
|
+
h1, h2, h3, h4, h5, h6 {
|
|
329
|
+
padding: 5px 10px; } }
|
|
330
|
+
|
|
331
|
+
.section {
|
|
332
|
+
background: #e9e9e9 url(skin/header.png) repeat-x left bottom;
|
|
333
|
+
color: #de2c72;
|
|
334
|
+
font-size: 120%;
|
|
335
|
+
padding: 5px 10px;
|
|
336
|
+
h1, h2, h3, h4, h5, h6 {
|
|
337
|
+
font-size: 100%;
|
|
338
|
+
color: #de2c72;
|
|
339
|
+
padding: 0; } }
|
|
340
|
+
|
|
341
|
+
.act {
|
|
342
|
+
background-color: #e9e9e9; }
|
|
343
|
+
|
|
344
|
+
.topper {
|
|
345
|
+
background: white url(skin/header_gradient_light.png) repeat-x left bottom;
|
|
346
|
+
color: #4D4D4D;
|
|
347
|
+
font-size: 120%;
|
|
348
|
+
padding: 5px 10px;
|
|
349
|
+
h1, h2, h3, h4, h5, h6 {
|
|
350
|
+
font-size: 100%;
|
|
351
|
+
color: #4D4D4D;
|
|
352
|
+
padding: 0; } }
|
|
353
|
+
|
|
354
|
+
.tabPosLeft .topper li, .tabPosRight .topper li {
|
|
355
|
+
background: white url(skin/header_gradient_light.png) repeat-x left bottom;
|
|
356
|
+
/* belongs in topper */ }
|
|
357
|
+
|
|
358
|
+
.tabPosBottom .topper {
|
|
359
|
+
background-image: -webkit-gradient(linear, 0% 0%, 0% 40%, from(#e2e2e2), to(white));
|
|
360
|
+
background-image: -moz-linear-gradient(0% 8% 270deg, #e2e2e2, white, white 77%); }
|
|
361
|
+
|
|
362
|
+
.bam {
|
|
363
|
+
background: #00477a url(skin/header_glossy.png) repeat-x left top;
|
|
364
|
+
color: #fff;
|
|
365
|
+
font-size: 120%;
|
|
366
|
+
padding: 5px 10px;
|
|
367
|
+
h1, h2, h3, h4, h5, h6 {
|
|
368
|
+
font-size: 100%;
|
|
369
|
+
color: #fff;
|
|
370
|
+
padding: 0; } }
|
|
371
|
+
|
|
372
|
+
.gonz {
|
|
373
|
+
background: url(skin/gc_header.png) no-repeat left top; }
|
|
374
|
+
|
|
375
|
+
/* messed up */
|
|
376
|
+
|
|
377
|
+
.online {
|
|
378
|
+
background: #9a9400 url(skin/online.png) repeat-x left top;
|
|
379
|
+
color: #000;
|
|
380
|
+
font-size: 120%;
|
|
381
|
+
padding: 5px 10px;
|
|
382
|
+
h1, h2, h3, h4, h5, h6 {
|
|
383
|
+
font-size: 100%;
|
|
384
|
+
color: #000;
|
|
385
|
+
padding: 0; } }
|
|
386
|
+
|
|
387
|
+
.help {
|
|
388
|
+
background: #b20029 url(skin/help.png) repeat-x left top;
|
|
389
|
+
color: #fff;
|
|
390
|
+
font-size: 120%;
|
|
391
|
+
padding: 5px 10px;
|
|
392
|
+
h1, h2, h3, h4, h5, h6 {
|
|
393
|
+
font-size: 100%;
|
|
394
|
+
color: #fff;
|
|
395
|
+
padding: 0; } }
|
|
396
|
+
|
|
397
|
+
.info {
|
|
398
|
+
background: #636363 url(skin/info.png) repeat-x left top;
|
|
399
|
+
color: #fff;
|
|
400
|
+
font-size: 120%;
|
|
401
|
+
padding: 5px 10px;
|
|
402
|
+
h1, h2, h3, h4, h5, h6 {
|
|
403
|
+
font-size: 100%;
|
|
404
|
+
color: #fff;
|
|
405
|
+
padding: 0; } }
|