pixarea-compass-themes 0.1.0 → 0.1.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.
Files changed (47) hide show
  1. data/lib/pixarea-compass-themes/version.rb +1 -1
  2. data/sass/pixarea/_lib.sass +9 -0
  3. data/sass/pixarea/_modules.sass +4 -0
  4. data/sass/pixarea/_themes.sass +2 -0
  5. data/sass/{home.sass → pixarea/home.sass} +0 -0
  6. data/sass/{lib → pixarea/lib}/_font-stacks.scss +0 -0
  7. data/sass/{lib → pixarea/lib}/_formatting.sass +0 -0
  8. data/sass/{lib → pixarea/lib}/_palettes.sass +0 -0
  9. data/sass/{lib → pixarea/lib}/_pie.sass +0 -0
  10. data/sass/{lib → pixarea/lib}/_structure.sass +0 -0
  11. data/sass/{lib → pixarea/lib}/_tones.sass +0 -0
  12. data/sass/{lib → pixarea/lib}/_typo.sass +0 -0
  13. data/sass/pixarea/modules/_forms.sass +1 -0
  14. data/sass/pixarea/modules/_menus.sass +1 -0
  15. data/sass/{modules → pixarea/modules}/forms/_basic.sass +0 -0
  16. data/sass/{modules → pixarea/modules}/menus/_inline-blocks.sass +0 -0
  17. data/sass/{theme.sass → pixarea/theme.sass} +1 -1
  18. data/sass/{themes → pixarea/themes}/_minipane.sass +7 -7
  19. data/sass/{themes → pixarea/themes}/_shapy.sass +7 -7
  20. data/sass/{themes → pixarea/themes}/minipane/_formatting.sass +0 -0
  21. data/sass/{themes → pixarea/themes}/minipane/_shadows.sass +0 -0
  22. data/sass/{themes → pixarea/themes}/minipane/_shapes.sass +0 -0
  23. data/sass/{themes → pixarea/themes}/minipane/_structure.sass +0 -0
  24. data/sass/{themes → pixarea/themes}/minipane/_tones.sass +6 -6
  25. data/sass/{themes → pixarea/themes}/minipane/tones/_burma.sass +0 -0
  26. data/sass/{themes → pixarea/themes}/minipane/tones/_dark.sass +0 -0
  27. data/sass/{themes → pixarea/themes}/shapy/_formatting.sass +0 -0
  28. data/sass/{themes → pixarea/themes}/shapy/_shadows.sass +0 -0
  29. data/sass/{themes → pixarea/themes}/shapy/_shapes.sass +0 -0
  30. data/sass/{themes → pixarea/themes}/shapy/_structure.sass +0 -0
  31. data/sass/{themes → pixarea/themes}/shapy/_tones.sass +6 -6
  32. data/sass/{themes → pixarea/themes}/shapy/tones/_burma.sass +0 -0
  33. data/sass/{themes → pixarea/themes}/shapy/tones/_circus.sass +0 -0
  34. data/sass/{themes → pixarea/themes}/shapy/tones/_dark.sass +0 -0
  35. data/sass/{themes → pixarea/themes}/shapy/tones/_firen.sass +0 -0
  36. data/sass/{themes → pixarea/themes}/shapy/tones/_rusty.sass +0 -0
  37. data/{stylesheets → templates/project/stylesheets}/PIE.htc +0 -0
  38. data/templates/project/theme.sass +1 -1
  39. metadata +38 -41
  40. data/sass/_lib.sass +0 -8
  41. data/sass/_modules.sass +0 -4
  42. data/sass/_themes.sass +0 -2
  43. data/sass/modules/_forms.sass +0 -1
  44. data/sass/modules/_menus.sass +0 -1
  45. data/stylesheets/home.css +0 -0
  46. data/stylesheets/theme.css +0 -413
  47. data/stylesheets/themes/shapy.css +0 -62
@@ -1,7 +1,7 @@
1
1
  module Pixarea
2
2
  module Compass
3
3
  module Themes
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
6
6
  end
7
7
  end
@@ -0,0 +1,9 @@
1
+ @import pixarea/lib/font-stacks
2
+ @import pixarea/lib/formatting
3
+ @import pixarea/lib/palettes
4
+
5
+ @import pixarea/lib/pie
6
+ @import pixarea/lib/structure
7
+ @import pixarea/lib/tones
8
+ @import pixarea/lib/typo
9
+
@@ -0,0 +1,4 @@
1
+ @import pixarea/modules/menus
2
+ @import pixarea/modules/forms
3
+
4
+
@@ -0,0 +1,2 @@
1
+ @import pixarea/themes/shapy
2
+ @import pixarea/themes/minipane
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1 @@
1
+ @import pixarea/modules/forms/basic
@@ -0,0 +1 @@
1
+ @import pixarea/modules/menus/inline-blocks
File without changes
@@ -1,5 +1,5 @@
1
1
 
2
- @import themes
2
+ @import pixarea/themes
3
3
 
4
4
  +theme-minipane(dark)
5
5
  //+theme-shapy(burma)
@@ -7,14 +7,14 @@
7
7
  @import compass/css3/pie
8
8
  $pie-behavior: stylesheet-url("../theme/stylesheets/PIE.htc")
9
9
 
10
- @import lib
11
- @import modules
10
+ @import pixarea/lib
11
+ @import pixarea/modules
12
12
 
13
- @import themes/minipane/formatting
14
- @import themes/minipane/structure
15
- @import themes/minipane/tones
16
- @import themes/minipane/shapes
17
- @import themes/minipane/shadows
13
+ @import pixarea/themes/minipane/formatting
14
+ @import pixarea/themes/minipane/structure
15
+ @import pixarea/themes/minipane/tones
16
+ @import pixarea/themes/minipane/shapes
17
+ @import pixarea/themes/minipane/shadows
18
18
 
19
19
  =theme-minipane($tones: burma)
20
20
  /* RESET ---------------------------------------------------------------------*/
@@ -7,14 +7,14 @@
7
7
  @import compass/css3/pie
8
8
  $pie-behavior: stylesheet-url("../theme/stylesheets/PIE.htc")
9
9
 
10
- @import lib
11
- @import modules
10
+ @import pixarea/lib
11
+ @import pixarea/modules
12
12
 
13
- @import themes/shapy/formatting
14
- @import themes/shapy/structure
15
- @import themes/shapy/tones
16
- @import themes/shapy/shapes
17
- @import themes/shapy/shadows
13
+ @import pixarea/themes/shapy/formatting
14
+ @import pixarea/themes/shapy/structure
15
+ @import pixarea/themes/shapy/tones
16
+ @import pixarea/themes/shapy/shapes
17
+ @import pixarea/themes/shapy/shadows
18
18
 
19
19
  =theme-shapy($tones: rusty)
20
20
  /* RESET ---------------------------------------------------------------------*/
@@ -35,13 +35,13 @@
35
35
  // $blueprint_table_header_color: #c3d9ff !default
36
36
  // $blueprint_table_stripe_color: #e5ecf9 !default
37
37
 
38
- @import lib
38
+ @import pixarea/lib
39
39
 
40
- //@import themes/minipane/tones/circus
41
- @import themes/minipane/tones/burma
42
- @import themes/minipane/tones/dark
43
- //@import themes/minipane/tones/firen
44
- //@import themes/minipane/tones/rusty
40
+ //@import pixarea/themes/minipane/tones/circus
41
+ @import pixarea/themes/minipane/tones/burma
42
+ @import pixarea/themes/minipane/tones/dark
43
+ //@import pixarea/themes/minipane/tones/firen
44
+ //@import pixarea/themes/minipane/tones/rusty
45
45
 
46
46
  =minipane-tones($tones: burma)
47
47
  @if $tones == circus
File without changes
File without changes
@@ -35,13 +35,13 @@
35
35
  // $blueprint_table_header_color: #c3d9ff !default
36
36
  // $blueprint_table_stripe_color: #e5ecf9 !default
37
37
 
38
- @import lib
38
+ @import pixarea/lib
39
39
 
40
- @import themes/shapy/tones/circus
41
- @import themes/shapy/tones/burma
42
- @import themes/shapy/tones/dark
43
- @import themes/shapy/tones/firen
44
- @import themes/shapy/tones/rusty
40
+ @import pixarea/themes/shapy/tones/circus
41
+ @import pixarea/themes/shapy/tones/burma
42
+ @import pixarea/themes/shapy/tones/dark
43
+ @import pixarea/themes/shapy/tones/firen
44
+ @import pixarea/themes/shapy/tones/rusty
45
45
 
46
46
  =shapy-tones($tones: dark)
47
47
  @if $tones == circus
@@ -1,5 +1,5 @@
1
1
 
2
- @import themes
2
+ @import pixarea/themes
3
3
 
4
4
  +theme-minipane(dark)
5
5
  //+theme-shapy(burma)
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: pixarea-compass-themes
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.1.0
5
+ version: 0.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Daniel Reszka
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-04-01 00:00:00 +02:00
13
+ date: 2011-04-04 00:00:00 +02:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
@@ -43,46 +43,43 @@ files:
43
43
  - lib/pixarea-compass-themes.rb
44
44
  - lib/pixarea-compass-themes/version.rb
45
45
  - pixarea-compass-themes.gemspec
46
- - sass/_lib.sass
47
- - sass/_modules.sass
48
- - sass/_themes.sass
49
- - sass/home.sass
50
- - sass/lib/_font-stacks.scss
51
- - sass/lib/_formatting.sass
52
- - sass/lib/_palettes.sass
53
- - sass/lib/_pie.sass
54
- - sass/lib/_structure.sass
55
- - sass/lib/_tones.sass
56
- - sass/lib/_typo.sass
57
- - sass/modules/_forms.sass
58
- - sass/modules/_menus.sass
59
- - sass/modules/forms/_basic.sass
60
- - sass/modules/menus/_inline-blocks.sass
61
- - sass/theme.sass
62
- - sass/themes/_minipane.sass
63
- - sass/themes/_shapy.sass
64
- - sass/themes/minipane/_formatting.sass
65
- - sass/themes/minipane/_shadows.sass
66
- - sass/themes/minipane/_shapes.sass
67
- - sass/themes/minipane/_structure.sass
68
- - sass/themes/minipane/_tones.sass
69
- - sass/themes/minipane/tones/_burma.sass
70
- - sass/themes/minipane/tones/_dark.sass
71
- - sass/themes/shapy/_formatting.sass
72
- - sass/themes/shapy/_shadows.sass
73
- - sass/themes/shapy/_shapes.sass
74
- - sass/themes/shapy/_structure.sass
75
- - sass/themes/shapy/_tones.sass
76
- - sass/themes/shapy/tones/_burma.sass
77
- - sass/themes/shapy/tones/_circus.sass
78
- - sass/themes/shapy/tones/_dark.sass
79
- - sass/themes/shapy/tones/_firen.sass
80
- - sass/themes/shapy/tones/_rusty.sass
81
- - stylesheets/PIE.htc
82
- - stylesheets/home.css
83
- - stylesheets/theme.css
84
- - stylesheets/themes/shapy.css
46
+ - sass/pixarea/_lib.sass
47
+ - sass/pixarea/_modules.sass
48
+ - sass/pixarea/_themes.sass
49
+ - sass/pixarea/home.sass
50
+ - sass/pixarea/lib/_font-stacks.scss
51
+ - sass/pixarea/lib/_formatting.sass
52
+ - sass/pixarea/lib/_palettes.sass
53
+ - sass/pixarea/lib/_pie.sass
54
+ - sass/pixarea/lib/_structure.sass
55
+ - sass/pixarea/lib/_tones.sass
56
+ - sass/pixarea/lib/_typo.sass
57
+ - sass/pixarea/modules/_forms.sass
58
+ - sass/pixarea/modules/_menus.sass
59
+ - sass/pixarea/modules/forms/_basic.sass
60
+ - sass/pixarea/modules/menus/_inline-blocks.sass
61
+ - sass/pixarea/theme.sass
62
+ - sass/pixarea/themes/_minipane.sass
63
+ - sass/pixarea/themes/_shapy.sass
64
+ - sass/pixarea/themes/minipane/_formatting.sass
65
+ - sass/pixarea/themes/minipane/_shadows.sass
66
+ - sass/pixarea/themes/minipane/_shapes.sass
67
+ - sass/pixarea/themes/minipane/_structure.sass
68
+ - sass/pixarea/themes/minipane/_tones.sass
69
+ - sass/pixarea/themes/minipane/tones/_burma.sass
70
+ - sass/pixarea/themes/minipane/tones/_dark.sass
71
+ - sass/pixarea/themes/shapy/_formatting.sass
72
+ - sass/pixarea/themes/shapy/_shadows.sass
73
+ - sass/pixarea/themes/shapy/_shapes.sass
74
+ - sass/pixarea/themes/shapy/_structure.sass
75
+ - sass/pixarea/themes/shapy/_tones.sass
76
+ - sass/pixarea/themes/shapy/tones/_burma.sass
77
+ - sass/pixarea/themes/shapy/tones/_circus.sass
78
+ - sass/pixarea/themes/shapy/tones/_dark.sass
79
+ - sass/pixarea/themes/shapy/tones/_firen.sass
80
+ - sass/pixarea/themes/shapy/tones/_rusty.sass
85
81
  - templates/project/manifest.rb
82
+ - templates/project/stylesheets/PIE.htc
86
83
  - templates/project/theme.sass
87
84
  - views/layouts/application.html.erb
88
85
  has_rdoc: true
data/sass/_lib.sass DELETED
@@ -1,8 +0,0 @@
1
- @import lib/font-stacks
2
- @import lib/formatting
3
- @import lib/palettes
4
- @import lib/pie
5
- @import lib/structure
6
- @import lib/tones
7
- @import lib/typo
8
-
data/sass/_modules.sass DELETED
@@ -1,4 +0,0 @@
1
- @import modules/menus
2
- @import modules/forms
3
-
4
-
data/sass/_themes.sass DELETED
@@ -1,2 +0,0 @@
1
- @import themes/shapy
2
- @import themes/minipane
@@ -1 +0,0 @@
1
- @import modules/forms/basic
@@ -1 +0,0 @@
1
- @import modules/menus/inline-blocks
data/stylesheets/home.css DELETED
File without changes
@@ -1,413 +0,0 @@
1
- /* RESET --------------------------------------------------------------------- */
2
- html {
3
- margin: 0;
4
- padding: 0;
5
- border: 0; }
6
-
7
- .bp-reset-element, body, h1, h2, h3, h4, h5, h6, article, aside, dialog, figure, footer, header, hgroup, nav, section, blockquote, q, th, td, caption, table,
8
- div, span, object, iframe, p,
9
- pre, a, abbr, acronym, address,
10
- code, del, dfn, em, img,
11
- dl, dt, dd, ol, ul, li, fieldset,
12
- form, label, legend,
13
- caption, tbody, tfoot, thead, tr {
14
- margin: 0;
15
- padding: 0;
16
- border: 0;
17
- font-weight: inherit;
18
- font-style: inherit;
19
- font-size: 100%;
20
- font-family: inherit;
21
- vertical-align: baseline; }
22
-
23
- article, aside, dialog, figure, footer, header, hgroup, nav, section {
24
- display: block; }
25
-
26
- blockquote, q {
27
- quotes: "" ""; }
28
- blockquote:before, blockquote:after, q:before, q:after {
29
- content: ""; }
30
-
31
- th, td, caption {
32
- float: none !important;
33
- text-align: left;
34
- font-weight: normal;
35
- vertical-align: middle; }
36
-
37
- table {
38
- border-collapse: separate;
39
- border-spacing: 0;
40
- vertical-align: middle; }
41
-
42
- a img {
43
- border: none; }
44
-
45
- /* STRUCTURE ----------------------------------------------------------------- */
46
- #body_content_title {
47
- visibility: hidden;
48
- position: absolute; }
49
-
50
- .inner {
51
- padding: 20px;
52
- margin-bottom: 20px; }
53
-
54
- #page_container {
55
- width: 950px;
56
- margin: 0 auto;
57
- overflow: hidden;
58
- *zoom: 1;
59
- overflow: visible;
60
- *zoom: 1; }
61
- #page_container:after {
62
- content: "\0020";
63
- display: block;
64
- height: 0;
65
- clear: both;
66
- overflow: hidden;
67
- visibility: hidden; }
68
-
69
- #header {
70
- padding-top: 20px;
71
- margin-bottom: 5px; }
72
-
73
- #footer {
74
- margin-top: 10px;
75
- padding-left: 20px; }
76
-
77
- #body_content {
78
- overflow: hidden;
79
- *zoom: 1;
80
- position: relative; }
81
-
82
- #body_content_left {
83
- display: inline;
84
- float: left;
85
- margin-right: 10px;
86
- width: 630px; }
87
- * html #body_content_left {
88
- overflow-x: hidden; }
89
- .no_body_content_right #body_content_left {
90
- display: inline;
91
- float: left;
92
- margin-right: 10px;
93
- width: 870px; }
94
- * html .no_body_content_right #body_content_left {
95
- overflow-x: hidden; }
96
-
97
- #body_content_right {
98
- display: inline;
99
- float: left;
100
- margin-right: 10px;
101
- width: 310px;
102
- margin-right: 0;
103
- position: absolute;
104
- top: 0;
105
- bottom: 0;
106
- right: 0; }
107
- * html #body_content_right {
108
- overflow-x: hidden; }
109
-
110
- #menu ul {
111
- margin: 0;
112
- padding: 0;
113
- border: 0;
114
- overflow: hidden;
115
- *zoom: 1; }
116
- #menu ul li {
117
- list-style-image: none;
118
- list-style-type: none;
119
- margin-left: 0px;
120
- display: -moz-inline-box;
121
- -moz-box-orient: vertical;
122
- display: inline-block;
123
- vertical-align: middle;
124
- *vertical-align: auto;
125
- white-space: nowrap; }
126
- #menu ul li {
127
- *display: inline; }
128
- #menu ul li {
129
- margin-bottom: 10px;
130
- display: inline;
131
- float: left;
132
- margin-right: 10px;
133
- width: 150px; }
134
- * html #menu ul li {
135
- overflow-x: hidden; }
136
- #menu ul li a {
137
- padding: 5px;
138
- display: block;
139
- text-align: center; }
140
- #menu ul li.selected > a {
141
- font-weight: bold; }
142
- #menu ul li.last {
143
- margin-right: 0; }
144
-
145
- /* FORMS ------------------------------ */
146
- .inquiries form label {
147
- width: 150px;
148
- margin-right: 10px;
149
- float: left;
150
- text-align: left; }
151
- .inquiries form input[type=text] {
152
- width: 300px;
153
- padding: 5px;
154
- border-width: 0; }
155
- .inquiries form input[type=submit] {
156
- width: 190px;
157
- padding: 5px 0;
158
- border-width: 0; }
159
- .inquiries form textarea {
160
- width: 460px;
161
- padding: 5px;
162
- border-width: 0; }
163
- .inquiries form .field {
164
- margin: 12px 0px; }
165
- .inquiries form .actions {
166
- margin-left: 160px; }
167
-
168
- /* FORMATTING----------------------------------------------------------------- */
169
- body {
170
- line-height: 1.5;
171
- font-family: Verdana, Geneva, sans-serif;
172
- color: #333333;
173
- font-size: 87.5%; }
174
-
175
- h1, h2, h3, h4, h5, h6 {
176
- font-weight: normal;
177
- color: #222222; }
178
- h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
179
- margin: 0; }
180
-
181
- h1 {
182
- font-size: 3em;
183
- line-height: 1;
184
- margin-bottom: 0.50em; }
185
-
186
- h2 {
187
- font-size: 2em;
188
- margin-bottom: 0.75em; }
189
-
190
- h3 {
191
- font-size: 1.5em;
192
- line-height: 1;
193
- margin-bottom: 1.00em; }
194
-
195
- h4 {
196
- font-size: 1.2em;
197
- line-height: 1.25;
198
- margin-bottom: 1.25em; }
199
-
200
- h5 {
201
- font-size: 1em;
202
- font-weight: bold;
203
- margin-bottom: 1.50em; }
204
-
205
- h6 {
206
- font-size: 1em;
207
- font-weight: bold; }
208
-
209
- p {
210
- margin: 0 0 1.5em; }
211
- p .left {
212
- display: inline;
213
- float: left;
214
- margin: 1.5em 1.5em 1.5em 0;
215
- padding: 0; }
216
- p .right {
217
- display: inline;
218
- float: right;
219
- margin: 1.5em 0 1.5em 1.5em;
220
- padding: 0; }
221
-
222
- a {
223
- text-decoration: underline;
224
- color: #0066cc; }
225
- a:visited {
226
- color: #004c99; }
227
- a:focus {
228
- color: #0099ff; }
229
- a:hover {
230
- color: #0099ff; }
231
- a:active {
232
- color: #bf00ff; }
233
-
234
- blockquote {
235
- margin: 1.5em;
236
- color: #666666;
237
- font-style: italic; }
238
-
239
- strong, dfn {
240
- font-weight: bold; }
241
-
242
- em, dfn {
243
- font-style: italic; }
244
-
245
- sup, sub {
246
- line-height: 0; }
247
-
248
- abbr, acronym {
249
- border-bottom: 1px dotted #666666; }
250
-
251
- address {
252
- margin: 0 0 1.5em;
253
- font-style: italic; }
254
-
255
- del {
256
- color: #666666; }
257
-
258
- pre {
259
- margin: 1.5em 0;
260
- white-space: pre; }
261
-
262
- pre, code, tt {
263
- font: 1em "andale mono", "lucida console", monospace;
264
- line-height: 1.5; }
265
-
266
- li ul, li ol {
267
- margin: 0; }
268
-
269
- ul, ol {
270
- margin: 0 1.5em 1.5em 0;
271
- padding-left: 1.5em; }
272
-
273
- ul {
274
- list-style-type: disc; }
275
-
276
- ol {
277
- list-style-type: decimal; }
278
-
279
- dl {
280
- margin: 0 0 1.5em 0; }
281
- dl dt {
282
- font-weight: bold; }
283
-
284
- dd {
285
- margin-left: 1.5em; }
286
-
287
- table {
288
- margin-bottom: 1.4em;
289
- width: 100%; }
290
-
291
- th {
292
- font-weight: bold; }
293
-
294
- thead th {
295
- background: #c3d9ff; }
296
-
297
- th, td, caption {
298
- padding: 4px 10px 4px 5px; }
299
-
300
- table.striped tr:nth-child(even) td,
301
- table tr.even td {
302
- background: #e5ecf9; }
303
-
304
- tfoot {
305
- font-style: italic; }
306
-
307
- caption {
308
- background: #eeeeee; }
309
-
310
- .quiet {
311
- color: #666666; }
312
-
313
- .loud {
314
- color: #111111; }
315
-
316
- #header h1 {
317
- font-size: 2em;
318
- margin-bottom: 1em; }
319
-
320
- h1 {
321
- font-size: 1.8em;
322
- margin-bottom: 1em; }
323
-
324
- h2 {
325
- font-size: 1.6em; }
326
-
327
- h3 {
328
- font-size: 1.4em; }
329
-
330
- h4 {
331
- font-size: 1.2em; }
332
-
333
- body {
334
- line-height: 1.8; }
335
-
336
- /* TONES --------------------------------------------------------------------- */
337
- body {
338
- background: #18181c;
339
- color: #c6c6e2; }
340
-
341
- a {
342
- color: white;
343
- text-decoration: none; }
344
- a:visited {
345
- color: white; }
346
- a:focus {
347
- color: white; }
348
- a:hover {
349
- color: white; }
350
- a:active {
351
- color: white; }
352
- a:hover {
353
- text-decoration: underline; }
354
-
355
- #header h1 {
356
- color: #c6c6e2; }
357
-
358
- #menu li a {
359
- color: inherit;
360
- text-decoration: none;
361
- background: #2c2c30; }
362
- #menu li a:hover {
363
- color: inherit; }
364
- #menu li.selected a,
365
- #menu li a:hover {
366
- background: #36363a;
367
- color: white; }
368
-
369
- #footer {
370
- color: #5b5b68; }
371
-
372
- #body_content_left {
373
- background: #36363a; }
374
-
375
- #body_content_right {
376
- background: #222226;
377
- color: #9494b0; }
378
-
379
- h1, h2, h3, h4, h5, h6 {
380
- color: #d7d7d7; }
381
-
382
- input[type=text],
383
- input[type=submit],
384
- textarea {
385
- background: #2c2c30; }
386
- input[type=text]:focus,
387
- input[type=submit]:focus,
388
- textarea:focus {
389
- background: #545458;
390
- border: none;
391
- outline: none; }
392
-
393
- input[type=submit] {
394
- color: #c6c6e2;
395
- font-weight: bold;
396
- cursor: pointer; }
397
- input[type=submit]:hover {
398
- background: #545458;
399
- color: white; }
400
-
401
- /* SHAPES -------------------------------------------------------------------- */
402
- #menu a,
403
- #body_content_left,
404
- #body_content_right {
405
- behavior: url(/htc/PIE.htc);
406
- -moz-border-radius: 5px;
407
- -webkit-border-radius: 5px;
408
- -o-border-radius: 5px;
409
- -ms-border-radius: 5px;
410
- -khtml-border-radius: 5px;
411
- border-radius: 5px; }
412
-
413
- /* SHADOWS ------------------------------------------------------------------- */
@@ -1,62 +0,0 @@
1
- /* RESET --------------------------------------------------------------------- */
2
- html { margin: 0; padding: 0; border: 0; }
3
-
4
- .bp-reset-element, body, h1, h2, h3, h4, h5, h6, article, aside, dialog, figure, footer, header, hgroup, nav, section, blockquote, q, th, td, caption, table, div, span, object, iframe, p, pre, a, abbr, acronym, address, code, del, dfn, em, img, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, tr { margin: 0; padding: 0; border: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; }
5
-
6
- article, aside, dialog, figure, footer, header, hgroup, nav, section { display: block; }
7
-
8
- blockquote, q { quotes: "" ""; }
9
- blockquote:before, blockquote:after, q:before, q:after { content: ""; }
10
-
11
- th, td, caption { float: none !important; text-align: left; font-weight: normal; vertical-align: middle; }
12
-
13
- table { border-collapse: separate; border-spacing: 0; vertical-align: middle; }
14
-
15
- a img { border: none; }
16
-
17
- /* STRUCTURE ----------------------------------------------------------------- */
18
- #body_content_title { visibility: hidden; position: absolute; }
19
-
20
- .inner { padding: 20px; margin-bottom: 20px; }
21
-
22
- #page #header { width: 950px; margin: 0 auto; overflow: hidden; *zoom: 1; overflow: visible; *zoom: 1; padding-top: 20px; }
23
- #page #header:after { content: "\0020"; display: block; height: 0; clear: both; overflow: hidden; visibility: hidden; }
24
- #page #body { width: 950px; margin: 0 auto; overflow: hidden; *zoom: 1; overflow: visible; *zoom: 1; }
25
- #page #body:after { content: "\0020"; display: block; height: 0; clear: both; overflow: hidden; visibility: hidden; }
26
- #page #body #body_content_left { display: inline; float: left; margin-right: 10px; width: 670px; }
27
- * html #page #body #body_content_left { overflow-x: hidden; }
28
- #page #body #body_content_left .inner { padding-right: 100px; }
29
- #page #body .no_body_content_right #body_content_left { display: inline; float: left; margin-right: 10px; width: 870px; }
30
- * html #page #body .no_body_content_right #body_content_left { overflow-x: hidden; }
31
- #page #body #body_content_right { display: inline; float: left; margin-right: 10px; width: 310px; margin-right: 0; display: inline; float: left; position: relative; margin-left: -60px; margin-top: 40px; }
32
- * html #page #body #body_content_right { overflow-x: hidden; }
33
-
34
- #menu { padding-left: 10px; }
35
- #menu ul { margin: 0; padding: 0; border: 0; overflow: hidden; *zoom: 1; }
36
- #menu ul li { list-style-image: none; list-style-type: none; margin-left: 0px; display: -moz-inline-box; -moz-box-orient: vertical; display: inline-block; vertical-align: middle; *vertical-align: auto; white-space: nowrap; }
37
- #menu ul li { *display: inline; }
38
- #menu ul li { margin-right: 20px; display: inline; float: left; margin-right: 10px; width: 130px; }
39
- * html #menu ul li { overflow-x: hidden; }
40
- #menu ul li a { padding: 5px; display: block; text-align: center; }
41
- #menu ul li.selected > a { font-weight: bold; }
42
-
43
- #header h1 { padding: 20px 10px; }
44
- #header h1 a { color: inherit; text-decoration: inherit; cursor: inherit; display: -moz-inline-box; -moz-box-orient: vertical; display: inline-block; vertical-align: middle; *vertical-align: auto; padding: 20px 30px; position: relative; margin-left: -40px; }
45
- #header h1 a:active, #header h1 a:focus { outline: none; }
46
- #header h1 a { *display: inline; }
47
-
48
- #footer { width: 950px; margin: 0 auto; overflow: hidden; *zoom: 1; overflow: visible; *zoom: 1; padding-top: 10px; padding-left: 40px; }
49
- #footer:after { content: "\0020"; display: block; height: 0; clear: both; overflow: hidden; visibility: hidden; }
50
-
51
- /* FORMS ------------------------------ */
52
- .inquiries form label { width: 150px; margin-right: 10px; float: left; text-align: left; }
53
- .inquiries form input[type=text] { width: 300px; padding: 5px; border-width: 0; }
54
- .inquiries form input[type=submit] { width: 190px; padding: 5px 0; border-width: 0; }
55
- .inquiries form textarea { width: 460px; padding: 5px; border-width: 0; }
56
- .inquiries form .field { margin: 12px 0px; }
57
- .inquiries form .actions { margin-left: 160px; }
58
-
59
- /* FORMATTING----------------------------------------------------------------- */
60
- /* TONES --------------------------------------------------------------------- */
61
- /* SHAPES -------------------------------------------------------------------- */
62
- /* SHADOWS ------------------------------------------------------------------- */