endymion-origami 0.1.0

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 (83) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.textile +138 -0
  3. data/Rakefile +39 -0
  4. data/app/helpers/layout_helper.rb +44 -0
  5. data/app/views/layouts/1_column_em.html.erb +110 -0
  6. data/app/views/layouts/1_column_percentage.html.erb +127 -0
  7. data/app/views/layouts/1_column_pixel.html.erb +110 -0
  8. data/app/views/layouts/2_column_left_menu_em.html.erb +209 -0
  9. data/app/views/layouts/2_column_left_menu_percentage.html.erb +181 -0
  10. data/app/views/layouts/2_column_left_menu_pixel.html.erb +216 -0
  11. data/app/views/layouts/2_column_right_menu_em.html.erb +204 -0
  12. data/app/views/layouts/2_column_right_menu_percentage.html.erb +227 -0
  13. data/app/views/layouts/2_column_right_menu_pixel.html.erb +240 -0
  14. data/app/views/layouts/3_column_blog_em.html.erb +257 -0
  15. data/app/views/layouts/3_column_blog_percentage.html.erb +255 -0
  16. data/app/views/layouts/3_column_blog_pixel.html.erb +268 -0
  17. data/app/views/layouts/3_column_holy_grail_em.html.erb +262 -0
  18. data/app/views/layouts/3_column_holy_grail_percentage.html.erb +255 -0
  19. data/app/views/layouts/3_column_holy_grail_pixel.html.erb +262 -0
  20. data/app/views/layouts/_body.html.erb +7 -0
  21. data/app/views/layouts/_column_1.html.erb +5 -0
  22. data/app/views/layouts/_column_2.html.erb +5 -0
  23. data/app/views/layouts/_column_3.html.erb +5 -0
  24. data/app/views/layouts/_flashes.html.erb +15 -0
  25. data/app/views/layouts/_footer.html.erb +5 -0
  26. data/app/views/layouts/_google_analytics_tracker.html.erb +8 -0
  27. data/app/views/layouts/_head.html.erb +23 -0
  28. data/app/views/layouts/_header.html.erb +5 -0
  29. data/app/views/layouts/_image_replacement.html.erb +3 -0
  30. data/app/views/layouts/_javascript_includes.html.erb +1 -0
  31. data/app/views/layouts/_layout_and_theme_stylesheets.html.erb +8 -0
  32. data/app/views/layouts/stacked_columns.html.erb +418 -0
  33. data/assets/bluetrip-css-framework/LICENSE +312 -0
  34. data/assets/bluetrip-css-framework/README.rst +37 -0
  35. data/assets/bluetrip-css-framework/css/ie.css +21 -0
  36. data/assets/bluetrip-css-framework/css/print.css +49 -0
  37. data/assets/bluetrip-css-framework/css/screen.css +409 -0
  38. data/assets/bluetrip-css-framework/css/style.css +7 -0
  39. data/assets/bluetrip-css-framework/examples/grid.html +232 -0
  40. data/assets/bluetrip-css-framework/examples/index.html +263 -0
  41. data/assets/bluetrip-css-framework/examples/test-small.jpg +0 -0
  42. data/assets/bluetrip-css-framework/img/grid.png +0 -0
  43. data/assets/bluetrip-css-framework/img/icons/cross.png +0 -0
  44. data/assets/bluetrip-css-framework/img/icons/doc.png +0 -0
  45. data/assets/bluetrip-css-framework/img/icons/email.png +0 -0
  46. data/assets/bluetrip-css-framework/img/icons/external.png +0 -0
  47. data/assets/bluetrip-css-framework/img/icons/feed.png +0 -0
  48. data/assets/bluetrip-css-framework/img/icons/im.png +0 -0
  49. data/assets/bluetrip-css-framework/img/icons/information.png +0 -0
  50. data/assets/bluetrip-css-framework/img/icons/key.png +0 -0
  51. data/assets/bluetrip-css-framework/img/icons/pdf.png +0 -0
  52. data/assets/bluetrip-css-framework/img/icons/tick.png +0 -0
  53. data/assets/bluetrip-css-framework/img/icons/visited.png +0 -0
  54. data/assets/bluetrip-css-framework/img/icons/xls.png +0 -0
  55. data/init.rb +1 -0
  56. data/install.rb +1 -0
  57. data/lib/chaise.rb +9 -0
  58. data/origami.gemspec +118 -0
  59. data/public/stylesheets/1_column_em.css +117 -0
  60. data/public/stylesheets/1_column_percentage.css +134 -0
  61. data/public/stylesheets/1_column_pixel.css +117 -0
  62. data/public/stylesheets/2_column_left_menu_em.css +149 -0
  63. data/public/stylesheets/2_column_left_menu_percentage.css +142 -0
  64. data/public/stylesheets/2_column_left_menu_pixel.css +149 -0
  65. data/public/stylesheets/2_column_right_menu_em.css +148 -0
  66. data/public/stylesheets/2_column_right_menu_percentage.css +142 -0
  67. data/public/stylesheets/2_column_right_menu_pixel.css +148 -0
  68. data/public/stylesheets/3_column_blog_pixel.css +162 -0
  69. data/rails/init.rb +1 -0
  70. data/rdoc/classes/ApplicationController.html +151 -0
  71. data/rdoc/created.rid +1 -0
  72. data/rdoc/files/README_textile.html +363 -0
  73. data/rdoc/files/lib/chaise_rb.html +101 -0
  74. data/rdoc/fr_class_index.html +27 -0
  75. data/rdoc/fr_file_index.html +28 -0
  76. data/rdoc/fr_method_index.html +27 -0
  77. data/rdoc/index.html +24 -0
  78. data/rdoc/rdoc-style.css +208 -0
  79. data/tasks/chaise_tasks.rake +15 -0
  80. data/test/chaise_test.rb +26 -0
  81. data/test/test_helper.rb +3 -0
  82. data/uninstall.rb +1 -0
  83. metadata +136 -0
@@ -0,0 +1,312 @@
1
+ BlueTrip CSS Framework License
2
+ ----------------------------------------------------------------
3
+
4
+ The BlueTrip CSS Framework is available for use in all personal or
5
+ commercial projects, under both the (modified) MIT and the GPL license. You
6
+ may choose the one that fits your project.
7
+
8
+
9
+ The (modified) MIT License
10
+ ----------------------------------------------------------------
11
+
12
+ Permission is hereby granted, free of charge, to any person obtaining a copy
13
+ of this software and associated documentation files (the "Software"), to deal
14
+ in the Software without restriction, including without limitation the rights
15
+ to use, copy, modify, merge, publish, distribute, sub-license, and/or sell
16
+ copies of the Software, and to permit persons to whom the Software is
17
+ furnished to do so, subject to the following conditions:
18
+
19
+ The above copyright notice, and every other copyright notice found in this
20
+ software, and all the attributions in every file, and this permission notice
21
+ shall be included in all copies or substantial portions of the Software.
22
+
23
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
+ FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
26
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
29
+ THE SOFTWARE.
30
+
31
+
32
+ The GPL License
33
+ ----------------------------------------------------------------
34
+
35
+ GNU GENERAL PUBLIC LICENSE
36
+ Version 2, June 1991
37
+
38
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
39
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
40
+ Everyone is permitted to copy and distribute verbatim copies
41
+ of this license document, but changing it is not allowed.
42
+
43
+ Preamble
44
+
45
+ The licenses for most software are designed to take away your
46
+ freedom to share and change it. By contrast, the GNU General Public
47
+ License is intended to guarantee your freedom to share and change free
48
+ software--to make sure the software is free for all its users. This
49
+ General Public License applies to most of the Free Software
50
+ Foundation's software and to any other program whose authors commit to
51
+ using it. (Some other Free Software Foundation software is covered by
52
+ the GNU Lesser General Public License instead.) You can apply it to
53
+ your programs, too.
54
+
55
+ When we speak of free software, we are referring to freedom, not
56
+ price. Our General Public Licenses are designed to make sure that you
57
+ have the freedom to distribute copies of free software (and charge for
58
+ this service if you wish), that you receive source code or can get it
59
+ if you want it, that you can change the software or use pieces of it
60
+ in new free programs; and that you know you can do these things.
61
+
62
+ To protect your rights, we need to make restrictions that forbid
63
+ anyone to deny you these rights or to ask you to surrender the rights.
64
+ These restrictions translate to certain responsibilities for you if you
65
+ distribute copies of the software, or if you modify it.
66
+
67
+ For example, if you distribute copies of such a program, whether
68
+ gratis or for a fee, you must give the recipients all the rights that
69
+ you have. You must make sure that they, too, receive or can get the
70
+ source code. And you must show them these terms so they know their
71
+ rights.
72
+
73
+ We protect your rights with two steps: (1) copyright the software, and
74
+ (2) offer you this license which gives you legal permission to copy,
75
+ distribute and/or modify the software.
76
+
77
+ Also, for each author's protection and ours, we want to make certain
78
+ that everyone understands that there is no warranty for this free
79
+ software. If the software is modified by someone else and passed on, we
80
+ want its recipients to know that what they have is not the original, so
81
+ that any problems introduced by others will not reflect on the original
82
+ authors' reputations.
83
+
84
+ Finally, any free program is threatened constantly by software
85
+ patents. We wish to avoid the danger that redistributors of a free
86
+ program will individually obtain patent licenses, in effect making the
87
+ program proprietary. To prevent this, we have made it clear that any
88
+ patent must be licensed for everyone's free use or not licensed at all.
89
+
90
+ The precise terms and conditions for copying, distribution and
91
+ modification follow.
92
+
93
+ GNU GENERAL PUBLIC LICENSE
94
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
95
+
96
+ 0. This License applies to any program or other work which contains
97
+ a notice placed by the copyright holder saying it may be distributed
98
+ under the terms of this General Public License. The "Program", below,
99
+ refers to any such program or work, and a "work based on the Program"
100
+ means either the Program or any derivative work under copyright law:
101
+ that is to say, a work containing the Program or a portion of it,
102
+ either verbatim or with modifications and/or translated into another
103
+ language. (Hereinafter, translation is included without limitation in
104
+ the term "modification".) Each licensee is addressed as "you".
105
+
106
+ Activities other than copying, distribution and modification are not
107
+ covered by this License; they are outside its scope. The act of
108
+ running the Program is not restricted, and the output from the Program
109
+ is covered only if its contents constitute a work based on the
110
+ Program (independent of having been made by running the Program).
111
+ Whether that is true depends on what the Program does.
112
+
113
+ 1. You may copy and distribute verbatim copies of the Program's
114
+ source code as you receive it, in any medium, provided that you
115
+ conspicuously and appropriately publish on each copy an appropriate
116
+ copyright notice and disclaimer of warranty; keep intact all the
117
+ notices that refer to this License and to the absence of any warranty;
118
+ and give any other recipients of the Program a copy of this License
119
+ along with the Program.
120
+
121
+ You may charge a fee for the physical act of transferring a copy, and
122
+ you may at your option offer warranty protection in exchange for a fee.
123
+
124
+ 2. You may modify your copy or copies of the Program or any portion
125
+ of it, thus forming a work based on the Program, and copy and
126
+ distribute such modifications or work under the terms of Section 1
127
+ above, provided that you also meet all of these conditions:
128
+
129
+ a) You must cause the modified files to carry prominent notices
130
+ stating that you changed the files and the date of any change.
131
+
132
+ b) You must cause any work that you distribute or publish, that in
133
+ whole or in part contains or is derived from the Program or any
134
+ part thereof, to be licensed as a whole at no charge to all third
135
+ parties under the terms of this License.
136
+
137
+ c) If the modified program normally reads commands interactively
138
+ when run, you must cause it, when started running for such
139
+ interactive use in the most ordinary way, to print or display an
140
+ announcement including an appropriate copyright notice and a
141
+ notice that there is no warranty (or else, saying that you provide
142
+ a warranty) and that users may redistribute the program under
143
+ these conditions, and telling the user how to view a copy of this
144
+ License. (Exception: if the Program itself is interactive but
145
+ does not normally print such an announcement, your work based on
146
+ the Program is not required to print an announcement.)
147
+
148
+ These requirements apply to the modified work as a whole. If
149
+ identifiable sections of that work are not derived from the Program,
150
+ and can be reasonably considered independent and separate works in
151
+ themselves, then this License, and its terms, do not apply to those
152
+ sections when you distribute them as separate works. But when you
153
+ distribute the same sections as part of a whole which is a work based
154
+ on the Program, the distribution of the whole must be on the terms of
155
+ this License, whose permissions for other licensees extend to the
156
+ entire whole, and thus to each and every part regardless of who wrote it.
157
+
158
+ Thus, it is not the intent of this section to claim rights or contest
159
+ your rights to work written entirely by you; rather, the intent is to
160
+ exercise the right to control the distribution of derivative or
161
+ collective works based on the Program.
162
+
163
+ In addition, mere aggregation of another work not based on the Program
164
+ with the Program (or with a work based on the Program) on a volume of
165
+ a storage or distribution medium does not bring the other work under
166
+ the scope of this License.
167
+
168
+ 3. You may copy and distribute the Program (or a work based on it,
169
+ under Section 2) in object code or executable form under the terms of
170
+ Sections 1 and 2 above provided that you also do one of the following:
171
+
172
+ a) Accompany it with the complete corresponding machine-readable
173
+ source code, which must be distributed under the terms of Sections
174
+ 1 and 2 above on a medium customarily used for software interchange; or,
175
+
176
+ b) Accompany it with a written offer, valid for at least three
177
+ years, to give any third party, for a charge no more than your
178
+ cost of physically performing source distribution, a complete
179
+ machine-readable copy of the corresponding source code, to be
180
+ distributed under the terms of Sections 1 and 2 above on a medium
181
+ customarily used for software interchange; or,
182
+
183
+ c) Accompany it with the information you received as to the offer
184
+ to distribute corresponding source code. (This alternative is
185
+ allowed only for noncommercial distribution and only if you
186
+ received the program in object code or executable form with such
187
+ an offer, in accord with Subsection b above.)
188
+
189
+ The source code for a work means the preferred form of the work for
190
+ making modifications to it. For an executable work, complete source
191
+ code means all the source code for all modules it contains, plus any
192
+ associated interface definition files, plus the scripts used to
193
+ control compilation and installation of the executable. However, as a
194
+ special exception, the source code distributed need not include
195
+ anything that is normally distributed (in either source or binary
196
+ form) with the major components (compiler, kernel, and so on) of the
197
+ operating system on which the executable runs, unless that component
198
+ itself accompanies the executable.
199
+
200
+ If distribution of executable or object code is made by offering
201
+ access to copy from a designated place, then offering equivalent
202
+ access to copy the source code from the same place counts as
203
+ distribution of the source code, even though third parties are not
204
+ compelled to copy the source along with the object code.
205
+
206
+ 4. You may not copy, modify, sublicense, or distribute the Program
207
+ except as expressly provided under this License. Any attempt
208
+ otherwise to copy, modify, sublicense or distribute the Program is
209
+ void, and will automatically terminate your rights under this License.
210
+ However, parties who have received copies, or rights, from you under
211
+ this License will not have their licenses terminated so long as such
212
+ parties remain in full compliance.
213
+
214
+ 5. You are not required to accept this License, since you have not
215
+ signed it. However, nothing else grants you permission to modify or
216
+ distribute the Program or its derivative works. These actions are
217
+ prohibited by law if you do not accept this License. Therefore, by
218
+ modifying or distributing the Program (or any work based on the
219
+ Program), you indicate your acceptance of this License to do so, and
220
+ all its terms and conditions for copying, distributing or modifying
221
+ the Program or works based on it.
222
+
223
+ 6. Each time you redistribute the Program (or any work based on the
224
+ Program), the recipient automatically receives a license from the
225
+ original licensor to copy, distribute or modify the Program subject to
226
+ these terms and conditions. You may not impose any further
227
+ restrictions on the recipients' exercise of the rights granted herein.
228
+ You are not responsible for enforcing compliance by third parties to
229
+ this License.
230
+
231
+ 7. If, as a consequence of a court judgment or allegation of patent
232
+ infringement or for any other reason (not limited to patent issues),
233
+ conditions are imposed on you (whether by court order, agreement or
234
+ otherwise) that contradict the conditions of this License, they do not
235
+ excuse you from the conditions of this License. If you cannot
236
+ distribute so as to satisfy simultaneously your obligations under this
237
+ License and any other pertinent obligations, then as a consequence you
238
+ may not distribute the Program at all. For example, if a patent
239
+ license would not permit royalty-free redistribution of the Program by
240
+ all those who receive copies directly or indirectly through you, then
241
+ the only way you could satisfy both it and this License would be to
242
+ refrain entirely from distribution of the Program.
243
+
244
+ If any portion of this section is held invalid or unenforceable under
245
+ any particular circumstance, the balance of the section is intended to
246
+ apply and the section as a whole is intended to apply in other
247
+ circumstances.
248
+
249
+ It is not the purpose of this section to induce you to infringe any
250
+ patents or other property right claims or to contest validity of any
251
+ such claims; this section has the sole purpose of protecting the
252
+ integrity of the free software distribution system, which is
253
+ implemented by public license practices. Many people have made
254
+ generous contributions to the wide range of software distributed
255
+ through that system in reliance on consistent application of that
256
+ system; it is up to the author/donor to decide if he or she is willing
257
+ to distribute software through any other system and a licensee cannot
258
+ impose that choice.
259
+
260
+ This section is intended to make thoroughly clear what is believed to
261
+ be a consequence of the rest of this License.
262
+
263
+ 8. If the distribution and/or use of the Program is restricted in
264
+ certain countries either by patents or by copyrighted interfaces, the
265
+ original copyright holder who places the Program under this License
266
+ may add an explicit geographical distribution limitation excluding
267
+ those countries, so that distribution is permitted only in or among
268
+ countries not thus excluded. In such case, this License incorporates
269
+ the limitation as if written in the body of this License.
270
+
271
+ 9. The Free Software Foundation may publish revised and/or new versions
272
+ of the General Public License from time to time. Such new versions will
273
+ be similar in spirit to the present version, but may differ in detail to
274
+ address new problems or concerns.
275
+
276
+ Each version is given a distinguishing version number. If the Program
277
+ specifies a version number of this License which applies to it and "any
278
+ later version", you have the option of following the terms and conditions
279
+ either of that version or of any later version published by the Free
280
+ Software Foundation. If the Program does not specify a version number of
281
+ this License, you may choose any version ever published by the Free Software
282
+ Foundation.
283
+
284
+ 10. If you wish to incorporate parts of the Program into other free
285
+ programs whose distribution conditions are different, write to the author
286
+ to ask for permission. For software which is copyrighted by the Free
287
+ Software Foundation, write to the Free Software Foundation; we sometimes
288
+ make exceptions for this. Our decision will be guided by the two goals
289
+ of preserving the free status of all derivatives of our free software and
290
+ of promoting the sharing and reuse of software generally.
291
+
292
+ NO WARRANTY
293
+
294
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
295
+ FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
296
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
297
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
298
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
299
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
300
+ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
301
+ PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
302
+ REPAIR OR CORRECTION.
303
+
304
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
305
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
306
+ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
307
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
308
+ OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
309
+ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
310
+ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
311
+ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
312
+ POSSIBILITY OF SUCH DAMAGES.
@@ -0,0 +1,37 @@
1
+ ===========
2
+ BlueTripCSS
3
+ ===========
4
+ -----------------------------------------------
5
+ A CSS Framework Fusion of Blueprint and Tripoli
6
+ -----------------------------------------------
7
+
8
+ USAGE
9
+ =====
10
+
11
+ Add the following four links to the <head> of your page::
12
+
13
+ <link rel="stylesheet" href="../css/screen.css" type="text/css" media="screen, projection">
14
+ <link rel="stylesheet" href="../css/print.css" type="text/css" media="print">
15
+ <!--[if IE]>
16
+ <link rel="stylesheet" href="../css/ie.css" type="text/css" media="screen, projection">
17
+ <![endif]-->
18
+ <link rel="stylesheet" href="../css/style.css" type="text/css" media="screen, projection">
19
+
20
+ Make sure you have the stylesheet links correct. Then edit "screen.css" to change
21
+ a[href^="http://yourwebsite.com"] by putting your url in place of yourwebsite.com.
22
+ This ensures that internal links will not show the external link icon.
23
+
24
+ Now get designing!
25
+
26
+ INFORMATION
27
+ ===========
28
+
29
+ Visit bluetrip.org_ and read the blog_ for more detailed information and instructions.
30
+
31
+ .. _bluetrip.org: http://bluetrip.org/
32
+ .. _blog: http://capsizedesigns.com/blog/2008/04/bluetripcss-a-fusion-of-blueprint-and-tripoli
33
+
34
+ LICENSE
35
+ =======
36
+
37
+ See the LICENSE file.
@@ -0,0 +1,21 @@
1
+ /* ie.css */
2
+ body {text-align:center;}
3
+ .container {text-align:left;}
4
+ * html .column {overflow-x:hidden;}
5
+ * html legend {margin:-18px -8px 16px 0;padding:0;}
6
+ ol {margin-left:2em;}
7
+ sup {vertical-align:text-top;}
8
+ sub {vertical-align:text-bottom;}
9
+ html>body p code {*white-space:normal;}
10
+ hr {margin:-8px auto 11px;}
11
+ ul { list-style: disc outside; margin-left: 2em; } /* IE can't handle :before and :after */
12
+ ul li { text-indent: 0; margin-left: 0; }
13
+ legend { margin-bottom: 1.6em; } /* IE form margin bug */
14
+ sup, sub { font-size: 100%; } /* IE superscript & subscript bug */
15
+ blockquote p, blockquote ul, blockquote ol, blockquote dl, blockquote pre, blockquote address,
16
+ blockquote table, blockquote form, blockquote h1, blockquote h2, blockquote h3, blockquote h4, blockquote h5, blockquote h6 { margin-top: .8em; margin-bottom: .8em; } /* IE can't handle :first-child */
17
+ * html textarea, * html input { padding: 0; } /* IE < 7 form fix */
18
+ input[type='submit'], input[type='button'] { padding: 0; } /* IE 7 button fix */
19
+ legend+* { margin-top: 0; } /* we already added legend margin */
20
+ a abbr, a acronym { text-decoration: underline; } /* IE 7 bug */
21
+ fieldset legend { margin: 0; } /* IE 6 disappearing legend bug */
@@ -0,0 +1,49 @@
1
+ /* --------------------------------------------------------------
2
+
3
+ * print.css - BlueTrip CSS Framework
4
+ * Thanks to Hartija Print Framework
5
+
6
+ -------------------------------------------------------------- */
7
+
8
+ body {
9
+ width:100% !important;
10
+ margin:0 !important;
11
+ padding:0 !important;
12
+ line-height: 1.4;
13
+ word-spacing:1.1pt;
14
+ letter-spacing:0.2pt; font-family: Garamond,"Times New Roman", serif; color: #000; background: none; font-size: 12pt; }
15
+
16
+ /*Headings */
17
+ h1,h2,h3,h4,h5,h6 { font-family: Helvetica, Arial, sans-serif; }
18
+ h1{font-size:19pt;}
19
+ h2{font-size:17pt;}
20
+ h3{font-size:15pt;}
21
+ h4,h5,h6{font-size:12pt;}
22
+
23
+ code { font: 10pt Courier, monospace; }
24
+ blockquote { margin: 1.3em; padding: 1em; font-size: 10pt; }
25
+ hr { background-color: #ccc; }
26
+
27
+ /* Images */
28
+ img { float: left; margin: 1em 1.5em 1.5em 0; }
29
+ a img { border: none; }
30
+
31
+ /* Links */
32
+ a:link, a:visited { background: transparent; font-weight: 700; text-decoration: underline;color:#333; }
33
+ a:link[href^="http://"]:after, a[href^="http://"]:visited:after { content: " (" attr(href) ") "; font-size: 90%; }
34
+ a[href^="http://"] {color:#000; }
35
+
36
+ /* Table */
37
+ table { margin: 1px; text-align:left; }
38
+ th { border-bottom: 1px solid #333; font-weight: bold; }
39
+ td { border-bottom: 1px solid #333; }
40
+ th,td { padding: 4px 10px 4px 0; }
41
+ tfoot { font-style: italic; }
42
+ caption { background: #fff; margin-bottom:2em; text-align:left; }
43
+ thead {display: table-header-group;}
44
+ tr {page-break-inside: avoid;}
45
+
46
+ /*add sections here to hide various parts from the site*/
47
+
48
+ #header, #footer, #navigation, #sidebar, button, a.button
49
+ {display:none;}
@@ -0,0 +1,409 @@
1
+ /* -----------------------------------------------------------------------
2
+
3
+ BlueTrip CSS Framework
4
+
5
+ Mike Crittenden
6
+ mike@capsizedesigns.com
7
+ Copyright 2008 Mike Crittenden
8
+
9
+ License - MIT or GPL (whichever suits you better)
10
+
11
+ ----------------------------------------------------------------------- */
12
+
13
+ /* MEYER RESET v1.0*/
14
+
15
+ html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}:focus{outline:0}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}
16
+
17
+ /* BASIC TYPOGRAPHY */
18
+
19
+ html { font-size: 62.5%; font-family: "Liberation Sans", Helvetica, Arial, sans-serif; }
20
+ strong, th, thead td, h1, h2, h3, h4, h5, h6 { font-weight: bold; }
21
+ cite, em, dfn { font-style: italic; }
22
+ code, kbd, samp, pre, tt, var, input[type='text'], input[type='password'], textarea { font-size: 92%; font-family: monaco, "Lucida Console", courier, monospace; }
23
+ del { text-decoration: line-through; color: #666; }
24
+ ins, dfn { border-bottom: 1px solid #ccc; }
25
+ small, sup, sub { font-size: 85%; }
26
+ abbr, acronym { text-transform: uppercase; font-size: 85%; letter-spacing: .1em; }
27
+ a abbr, a acronym { border: none; }
28
+ abbr[title], acronym[title], dfn[title] { cursor: help; border-bottom: 1px solid #ccc; }
29
+ sup { vertical-align: super; }
30
+ sub { vertical-align: sub; }
31
+
32
+ /* QUOTES */
33
+
34
+ blockquote { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; color: #666; }
35
+ blockquote *:first-child:before { content: "\201C"; }
36
+ blockquote *:first-child:after { content: "\201D"; }
37
+
38
+ /* FORMS */
39
+
40
+ fieldset { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
41
+ legend { font-weight: bold; font-size:1.2em; }
42
+ label { font-weight: bold; }
43
+ textarea, input[type='text'], input[type='password'], select { border: 1px solid #ccc; background: #fff; }
44
+ textarea:hover, input[type='text']:hover, input[type='password']:hover, select:hover { border-color: #aaa; }
45
+ textarea:focus, input[type='text']:focus, input[type='password']:focus, select:focus { border-color: #888; outline: 2px solid #ffffaa; }
46
+ input, select { cursor: pointer; }
47
+ input[type='text'],input[type='password'] { cursor: text; }
48
+
49
+ /* BASE SIZES */
50
+
51
+ .container { font-size: 1.2em; line-height: 1.6em; }
52
+ h1 { font-size: 1.9em; }
53
+ h2 { font-size: 1.7em; }
54
+ h3 { font-size: 1.5em; }
55
+ h4 { font-size: 1.3em; }
56
+ h5 { font-size: 1.2em; }
57
+ h6 { font-size: 1em; }
58
+
59
+ /* LISTS */
60
+
61
+ ul li { margin-left: .85em; }
62
+ ul { list-style-type: disc; }
63
+ ul ul { list-style-type: square; }
64
+ ul ul ul { list-style-type: circle; }
65
+ ol { list-style-position: outside; list-style-type: decimal; }
66
+ dt { font-weight: bold; }
67
+
68
+ /* TABLES */
69
+
70
+ table { border-top: 1px solid #ccc; border-left: 1px solid #ccc; }
71
+ th, td { border-bottom: 1px solid #ddd; border-right: 1px solid #ccc; }
72
+
73
+ /* MARGINS & PADDINGS */
74
+
75
+ blockquote *:first-child { margin: .8em 0; }
76
+ hr, p, ul, ol, dl, pre, blockquote, address, table, form { margin-bottom: 1.6em; }
77
+ /* NOTE: Calulate header margins: TOP: 1.6em/size, BOTTOM: 1.6em/size/2 */
78
+ h1 { margin: 1em 0 .5em; }
79
+ h2 { margin: 1.07em 0 .535em; }
80
+ h3 { margin: 1.14em 0 .57em; }
81
+ h4 { margin: 1.23em 0 .615em; }
82
+ h5 { margin: 1.33em 0 .67em; }
83
+ h6 { margin: 1.6em 0 .8em; }
84
+ th, td { padding: .8em; }
85
+ caption { padding-bottom: .8em; } /* padding instead of margin for IE */
86
+ blockquote { padding: 0 1em; margin: 1.6em 0; }
87
+ fieldset { padding: 0 1em 1em 1em; margin: 1.6em 0; } /* padding-top is margin-top for fieldsets in Opera */
88
+ legend { padding-left: .8em; padding-right: .8em; }
89
+ legend+* { margin-top: 1em; } /* compensates for the opera margin bug */
90
+ textarea, input { padding: .3em .4em .15em .4em; }
91
+ select { padding: .1em .2em 0 .2em; }
92
+ option { padding: 0 .4em; }
93
+ a { position: relative; padding: 0.3em 0 .1em 0; } /* for larger click-area */
94
+ dt { margin-top: .8em; margin-bottom: .4em; }
95
+ ul { margin-left: 1.5em; }
96
+ ol { margin-left: 2.35em; }
97
+ ol ol, ul ol { margin-left: 2.5em; }
98
+ form div { margin-bottom: .8em; }
99
+
100
+ /* COLORS */
101
+
102
+ a:link { text-decoration: underline; color: #36c; }
103
+ a:visited { text-decoration: underline; color: #99c; }
104
+ a:hover { text-decoration: underline; color: #c33; }
105
+ a:active, a:focus { text-decoration: underline; color: #000; }
106
+ code, pre { color: #c33; } /* very optional, but still useful. W3C uses about the same colors for codes */
107
+
108
+ /* 24 COLUMN GRID */
109
+
110
+ .container {width:950px;margin:0 auto;}
111
+ .showgrid {background:url(/images/bluetrip/grid.png);}
112
+ body {margin:1.5em 0;}
113
+ div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, div.span-21, div.span-22, div.span-23 {float:left;margin-right:10px;}
114
+ div.span-24 {float:left;}
115
+ div.last {margin-right:0;}
116
+ .span-1 {width:30px;}
117
+ .span-2 {width:70px;}
118
+ .span-3 {width:110px;}
119
+ .span-4 {width:150px;}
120
+ .span-5 {width:190px;}
121
+ .span-6 {width:230px;}
122
+ .span-7 {width:270px;}
123
+ .span-8 {width:310px;}
124
+ .span-9 {width:350px;}
125
+ .span-10 {width:390px;}
126
+ .span-11 {width:430px;}
127
+ .span-12 {width:470px;}
128
+ .span-13 {width:510px;}
129
+ .span-14 {width:550px;}
130
+ .span-15 {width:590px;}
131
+ .span-16 {width:630px;}
132
+ .span-17 {width:670px;}
133
+ .span-18 {width:710px;}
134
+ .span-19 {width:750px;}
135
+ .span-20 {width:790px;}
136
+ .span-21 {width:830px;}
137
+ .span-22 {width:870px;}
138
+ .span-23 {width:910px;}
139
+ .span-24, div.span-24 {width:950px;}
140
+ .suffix-1 {padding-right:40px;}
141
+ .suffix-2 {padding-right:80px;}
142
+ .suffix-3 {padding-right:120px;}
143
+ .suffix-4 {padding-right:160px;}
144
+ .suffix-5 {padding-right:200px;}
145
+ .suffix-6 {padding-right:240px;}
146
+ .suffix-7 {padding-right:280px;}
147
+ .suffix-8 {padding-right:320px;}
148
+ .suffix-9 {padding-right:360px;}
149
+ .suffix-10 {padding-right:400px;}
150
+ .suffix-11 {padding-right:440px;}
151
+ .suffix-12 {padding-right:480px;}
152
+ .suffix-13 {padding-right:520px;}
153
+ .suffix-14 {padding-right:560px;}
154
+ .suffix-15 {padding-right:600px;}
155
+ .suffix-16 {padding-right:640px;}
156
+ .suffix-17 {padding-right:680px;}
157
+ .suffix-18 {padding-right:720px;}
158
+ .suffix-19 {padding-right:760px;}
159
+ .suffix-20 {padding-right:800px;}
160
+ .suffix-21 {padding-right:840px;}
161
+ .suffix-22 {padding-right:880px;}
162
+ .suffix-23 {padding-right:920px;}
163
+ .prefix-1 {padding-left:40px;}
164
+ .prefix-2 {padding-left:80px;}
165
+ .prefix-3 {padding-left:120px;}
166
+ .prefix-4 {padding-left:160px;}
167
+ .prefix-5 {padding-left:200px;}
168
+ .prefix-6 {padding-left:240px;}
169
+ .prefix-7 {padding-left:280px;}
170
+ .prefix-8 {padding-left:320px;}
171
+ .prefix-9 {padding-left:360px;}
172
+ .prefix-10 {padding-left:400px;}
173
+ .prefix-11 {padding-left:440px;}
174
+ .prefix-12 {padding-left:480px;}
175
+ .prefix-13 {padding-left:520px;}
176
+ .prefix-14 {padding-left:560px;}
177
+ .prefix-15 {padding-left:600px;}
178
+ .prefix-16 {padding-left:640px;}
179
+ .prefix-17 {padding-left:680px;}
180
+ .prefix-18 {padding-left:720px;}
181
+ .prefix-19 {padding-left:760px;}
182
+ .prefix-20 {padding-left:800px;}
183
+ .prefix-21 {padding-left:840px;}
184
+ .prefix-22 {padding-left:880px;}
185
+ .prefix-23 {padding-left:920px;}
186
+ div.border {padding-right:4px;margin-right:5px;border-right:1px solid #eee;}
187
+ div.colborder {padding-right:24px;margin-right:25px;border-right:1px solid #eee;}
188
+ .pull-1 {margin-left:-40px;}
189
+ .pull-2 {margin-left:-80px;}
190
+ .pull-3 {margin-left:-120px;}
191
+ .pull-4 {margin-left:-160px;}
192
+ .pull-5 {margin-left:-200px;}
193
+ .pull-6 {margin-left:-240px;}
194
+ .pull-7 {margin-left:-280px;}
195
+ .pull-8 {margin-left:-320px;}
196
+ .pull-9 {margin-left:-360px;}
197
+ .pull-10 {margin-left:-400px;}
198
+ .pull-11 {margin-left:-440px;}
199
+ .pull-12 {margin-left:-480px;}
200
+ .pull-13 {margin-left:-520px;}
201
+ .pull-14 {margin-left:-560px;}
202
+ .pull-15 {margin-left:-600px;}
203
+ .pull-16 {margin-left:-640px;}
204
+ .pull-17 {margin-left:-680px;}
205
+ .pull-18 {margin-left:-720px;}
206
+ .pull-19 {margin-left:-760px;}
207
+ .pull-20 {margin-left:-800px;}
208
+ .pull-21 {margin-left:-840px;}
209
+ .pull-22 {margin-left:-880px;}
210
+ .pull-23 {margin-left:-920px;}
211
+ .pull-24 {margin-left:-960px;}
212
+ .pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9, .pull-10, .pull-11, .pull-12, .pull-13, .pull-14, .pull-15, .pull-16, .pull-17, .pull-18, .pull-19, .pull-20, .pull-21, .pull-22, .pull-23, .pull-24 {float:left;position:relative;}
213
+ .push-1 {margin:0 -40px 1.5em 40px;}
214
+ .push-2 {margin:0 -80px 1.5em 80px;}
215
+ .push-3 {margin:0 -120px 1.5em 120px;}
216
+ .push-4 {margin:0 -160px 1.5em 160px;}
217
+ .push-5 {margin:0 -200px 1.5em 200px;}
218
+ .push-6 {margin:0 -240px 1.5em 240px;}
219
+ .push-7 {margin:0 -280px 1.5em 280px;}
220
+ .push-8 {margin:0 -320px 1.5em 320px;}
221
+ .push-9 {margin:0 -360px 1.5em 360px;}
222
+ .push-10 {margin:0 -400px 1.5em 400px;}
223
+ .push-11 {margin:0 -440px 1.5em 440px;}
224
+ .push-12 {margin:0 -480px 1.5em 480px;}
225
+ .push-13 {margin:0 -520px 1.5em 520px;}
226
+ .push-14 {margin:0 -560px 1.5em 560px;}
227
+ .push-15 {margin:0 -600px 1.5em 600px;}
228
+ .push-16 {margin:0 -640px 1.5em 640px;}
229
+ .push-17 {margin:0 -680px 1.5em 680px;}
230
+ .push-18 {margin:0 -720px 1.5em 720px;}
231
+ .push-19 {margin:0 -760px 1.5em 760px;}
232
+ .push-20 {margin:0 -800px 1.5em 800px;}
233
+ .push-21 {margin:0 -840px 1.5em 840px;}
234
+ .push-22 {margin:0 -880px 1.5em 880px;}
235
+ .push-23 {margin:0 -920px 1.5em 920px;}
236
+ .push-24 {margin:0 -960px 1.5em 960px;}
237
+ .push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21, .push-22, .push-23, .push-24 {float:right;position:relative;}
238
+ hr {background:#ddd;color:#ddd;clear:both;float:none;width:100%;height:.1em;margin:0 0 1.45em;border:none;}
239
+ hr.space {background:#fff;color:#fff;}
240
+ .clearfix:after, .container:after {content:".";display:block;height:0;clear:both;visibility:hidden;max-height:0;}
241
+ .clearfix, .container {display:inline-block;}
242
+ * html .clearfix, * html .container {height:1%;}
243
+ .clearfix, .container {display:block;}
244
+ .clear {clear:both;}
245
+
246
+ /* to create serif italic dramatic text, use this class */
247
+ .fancy {
248
+ color: #666;
249
+ font-family: "Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua", Georgia, serif;
250
+ font-style: italic;
251
+ font-weight: normal;
252
+ }
253
+
254
+ /* creates small caps */
255
+ .caps {
256
+ font-variant: small-caps;
257
+ letter-spacing: 1px;
258
+ text-transform: lowercase;
259
+ font-size:1.2em;
260
+ font-weight:bold;
261
+ padding:0 2px;
262
+ }
263
+
264
+ /* Use this class if a link gets an icon when it shouldn't. */
265
+ body a.noicon { background:none !important; padding:0 !important; margin:0 !important; }
266
+
267
+ /* Make sure the icons are not cut */
268
+ a[href^="http:"], a[href^="mailto:"], a[href^="http:"]:visited,
269
+ a[href$=".pdf"], a[href$=".doc"], a[href$=".xls"], a[href$=".rss"],
270
+ a[href$=".rdf"], a[href^="aim:"] {
271
+ padding:2px 22px 2px 0;
272
+ margin:-2px 0;
273
+ background-repeat: no-repeat;
274
+ background-position: right center;
275
+ }
276
+
277
+ /* External links */
278
+ a[href^="http:"] { background-image: url(/images/bluetrip/icons/external.png); padding-right: 14px; }
279
+ a[href^="mailto:"] { background-image: url(/images/bluetrip/icons/email.png); }
280
+ a[href^="http:"]:visited { background-image: url(/images/bluetrip/icons/visited.png); }
281
+
282
+ /* Files */
283
+ a[href$=".pdf"] { background-image: url(/images/bluetrip/icons/pdf.png); }
284
+ a[href$=".doc"] { background-image: url(/images/bluetrip/icons/doc.png); }
285
+ a[href$=".xls"] { background-image: url(/images/bluetrip/icons/xls.png); }
286
+
287
+ /* Misc */
288
+ a[href$=".rss"],
289
+ a[href$=".rdf"] { background-image: url(/images/bluetrip/icons/feed.png); }
290
+ a[href^="aim:"] { background-image: url(/images/bluetrip/icons/im.png); }
291
+ a[href^="http://yourwebsite.com"] { background:none; padding:0; margin:0; }
292
+
293
+ /* TEXT CLASSES */
294
+
295
+ .small {font-size:.8em;margin-bottom:1.875em;line-height:1.875em;}
296
+ .large {font-size:1.2em;line-height:2.5em;margin-bottom:1.25em;}
297
+ .hide {display:none;}
298
+ .quiet {color:#666;}
299
+ .loud {color:#000;}
300
+ .highlight {background:#ff0;}
301
+ .top {margin-top:0;padding-top:0;}
302
+ .bottom {margin-bottom:0;padding-bottom:0;}
303
+ .thin {font-weight: lighter;}
304
+ .error, .notice, .success {padding:.8em;margin-bottom:1.6em;border:2px solid #ddd;}
305
+ .error {background:#FBE3E4;color:#8a1f11;border-color:#FBC2C4;}
306
+ .notice {background:#FFF6BF;color:#514721;border-color:#FFD324;}
307
+ .success {background:#E6EFC2;color:#264409;border-color:#C6D880;}
308
+ .error a {color:#8a1f11; background:none; padding:0; margin:0; }
309
+ .notice a {color:#514721; background:none; padding:0; margin:0; }
310
+ .success a {color:#264409; background:none; padding:0; margin:0; }
311
+ .center {text-align: center;}
312
+
313
+ /*---------STYLES FOR BUTTONS----------*/
314
+ /* Demo: particletree.com/features/rediscovering-the-button-element */
315
+ /*
316
+ <button type="submit" class="button positive">
317
+ <img src="css/blueprint/plugins/buttons/icons/tick.png" alt=""/> Save
318
+ </button>
319
+
320
+ <a class="button" href="/password/reset/">
321
+ <img src="css/blueprint/plugins/buttons/icons/key.png" alt=""/> Change Password
322
+ </a>
323
+
324
+ <a href="#" class="button negative">
325
+ <img src="css/blueprint/plugins/buttons/icons/cross.png" alt=""/> Cancel
326
+ </a>
327
+ */
328
+
329
+ a.button, button {
330
+ display: inline-block;
331
+ float: left;
332
+ margin:0 0.583em 0.667em 0;
333
+ padding:5px 10px 5px 7px; /* Links */
334
+ border:1px solid #dedede;
335
+ border-top:1px solid #eee;
336
+ border-left:1px solid #eee;
337
+ background-color:#f5f5f5;
338
+ font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
339
+ font-size:100%;
340
+ line-height:130%;
341
+ text-decoration:none;
342
+ font-weight:bold;
343
+ color:#565656;
344
+ cursor:pointer;
345
+ }
346
+ button {
347
+ width:auto;
348
+ overflow:visible;
349
+ padding:4px 10px 3px 7px; /* IE6 */
350
+ }
351
+ button[type] {
352
+ padding:4px 10px 4px 7px; /* Firefox */
353
+ line-height:17px; /* Safari */
354
+ }
355
+
356
+ *:first-child+html .container button[type] {
357
+ padding:4px 10px 3px 7px; /* IE7 */
358
+ }
359
+
360
+ button img, a.button img{
361
+ margin:0 3px -3px 0 !important;
362
+ padding:0;
363
+ border:none;
364
+ width:16px;
365
+ height:16px;
366
+ float:none;
367
+ }
368
+
369
+ /* Standard Buttons */
370
+ button:hover, a.button:hover{
371
+ background-color:#dff4ff;
372
+ border:1px solid #c2e1ef;
373
+ color:#336699;
374
+ }
375
+ a.button:active, button:active{
376
+ background-color:#6299c5;
377
+ border:1px solid #6299c5;
378
+ color:#fff;
379
+ }
380
+
381
+ /* Positive */
382
+ body .positive {
383
+ color:#529214;
384
+ }
385
+ a.positive:hover, button.positive:hover {
386
+ background-color:#E6EFC2;
387
+ border:1px solid #C6D880;
388
+ color:#529214;
389
+ }
390
+ a.positive:active, button.positive:active {
391
+ background-color:#529214;
392
+ border:1px solid #529214;
393
+ color:#fff;
394
+ }
395
+
396
+ /* Negative */
397
+ body .negative {
398
+ color:#d12f19;
399
+ }
400
+ a.negative:hover, button.negative:hover {
401
+ background:#fbe3e4;
402
+ border:1px solid #fbc2c4;
403
+ color:#d12f19;
404
+ }
405
+ a.negative:active, button.negative:active {
406
+ background-color:#d12f19;
407
+ border:1px solid #d12f19;
408
+ color:#fff;
409
+ }