gunnertechnology 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/Gemfile +4 -0
- data/README +0 -0
- data/Rakefile +2 -0
- data/gunnertechnology.gemspec +28 -0
- data/lib/generators/project/USAGE +8 -0
- data/lib/generators/project/project_generator.rb +61 -0
- data/lib/generators/project/templates/app/controllers/authentications_controller.rb +85 -0
- data/lib/generators/project/templates/app/models/authentication.rb +17 -0
- data/lib/generators/project/templates/app/views/layouts/application.html.erb +77 -0
- data/lib/generators/project/templates/app/views/shared/_facebook_init.html.erb +12 -0
- data/lib/generators/project/templates/app/views/shared/_flash_messages.html.erb +7 -0
- data/lib/generators/project/templates/app/views/shared/_footer.html.erb +15 -0
- data/lib/generators/project/templates/app/views/shared/_google_analytics.html.erb +11 -0
- data/lib/generators/project/templates/app/views/shared/_header.html.erb +23 -0
- data/lib/generators/project/templates/config/facebook_config.yml +29 -0
- data/lib/generators/project/templates/config/google_analytics_config.yml +8 -0
- data/lib/generators/project/templates/config/initializers/load_facebook_config.rb +2 -0
- data/lib/generators/project/templates/config/initializers/load_google_analytics_config.rb +2 -0
- data/lib/generators/project/templates/config/initializers/load_seo_config.rb +2 -0
- data/lib/generators/project/templates/config/initializers/omniauth.rb +91 -0
- data/lib/generators/project/templates/config/providers.yml +27 -0
- data/lib/generators/project/templates/config/seo_config.yml +8 -0
- data/lib/generators/project/templates/db/create_authentications.rb +21 -0
- data/lib/generators/project/templates/public/javascripts/libs/PIE.htc +73 -0
- data/lib/generators/project/templates/public/javascripts/libs/colorpicker.js +484 -0
- data/lib/generators/project/templates/public/javascripts/libs/dd_belatedpng.js +13 -0
- data/lib/generators/project/templates/public/javascripts/libs/eye.js +34 -0
- data/lib/generators/project/templates/public/javascripts/libs/head.js +8 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-en.js +130 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-es.js +124 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-fr.js +119 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-it.js +103 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-pt.js +125 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine-ro.js +126 -0
- data/lib/generators/project/templates/public/javascripts/libs/jquery.validationEngine.js +1137 -0
- data/lib/generators/project/templates/public/javascripts/libs/layout.js +67 -0
- data/lib/generators/project/templates/public/javascripts/libs/modernizr-1.6.min.js +30 -0
- data/lib/generators/project/templates/public/javascripts/libs/utils.js +252 -0
- data/lib/generators/project/templates/public/javascripts/mylibs/.gitignore +3 -0
- data/lib/generators/project/templates/public/javascripts/plugins.js +38 -0
- data/lib/generators/project/templates/public/javascripts/profiling/config.js +59 -0
- data/lib/generators/project/templates/public/javascripts/profiling/yahoo-profiling.min.js +39 -0
- data/lib/generators/project/templates/public/javascripts/script.js +46 -0
- data/lib/generators/project/templates/public/stylesheets/grids/1008_24_10_10.css +201 -0
- data/lib/generators/project/templates/public/stylesheets/grids/fluid.css +320 -0
- data/lib/generators/project/templates/public/stylesheets/handheld.css +8 -0
- data/lib/generators/project/templates/public/stylesheets/profiling/yahoo-profiling.css +7 -0
- data/lib/generators/project/templates/public/stylesheets/reset.css +53 -0
- data/lib/generators/project/templates/public/stylesheets/text.css +84 -0
- data/lib/generators/project/templates/public/stylesheets/validationEngine.jquery.css +142 -0
- data/lib/generators/project/templates/public/swfs/charts.swf +0 -0
- data/lib/gunnertechnology/version.rb +3 -0
- data/lib/gunnertechnology.rb +47 -0
- metadata +206 -0
@@ -0,0 +1,320 @@
|
|
1
|
+
/*
|
2
|
+
* Fluid24 Grid System
|
3
|
+
* http://fluid24.org/
|
4
|
+
*
|
5
|
+
* Inspiration, modifications and fixes made from:
|
6
|
+
* http://960.gs
|
7
|
+
*/
|
8
|
+
|
9
|
+
.fluid .container_24,
|
10
|
+
.fluid.container_24 {
|
11
|
+
width: 100%;
|
12
|
+
}
|
13
|
+
|
14
|
+
/* fluid 24 99% */
|
15
|
+
.fluid .grid_1,
|
16
|
+
.fluid .grid_2,
|
17
|
+
.fluid .grid_3,
|
18
|
+
.fluid .grid_4,
|
19
|
+
.fluid .grid_5,
|
20
|
+
.fluid .grid_6,
|
21
|
+
.fluid .grid_7,
|
22
|
+
.fluid .grid_8,
|
23
|
+
.fluid .grid_9,
|
24
|
+
.fluid .grid_10,
|
25
|
+
.fluid .grid_11,
|
26
|
+
.fluid .grid_12,
|
27
|
+
.fluid .grid_13,
|
28
|
+
.fluid .grid_14,
|
29
|
+
.fluid .grid_15,
|
30
|
+
.fluid .grid_16,
|
31
|
+
.fluid .grid_17,
|
32
|
+
.fluid .grid_18,
|
33
|
+
.fluid .grid_19,
|
34
|
+
.fluid .grid_20,
|
35
|
+
.fluid .grid_21,
|
36
|
+
.fluid .grid_22,
|
37
|
+
.fluid .grid_23,
|
38
|
+
.fluid .grid_24 {
|
39
|
+
display: inline;
|
40
|
+
float: left;
|
41
|
+
margin-left: 0.5%;
|
42
|
+
margin-right: 0.5%;
|
43
|
+
}
|
44
|
+
|
45
|
+
.fluid .grid_5.fixed {
|
46
|
+
margin-left: 10px;
|
47
|
+
margin-right: 10px;
|
48
|
+
}
|
49
|
+
|
50
|
+
.push_1, .pull_1,
|
51
|
+
.push_2, .pull_2,
|
52
|
+
.push_3, .pull_3,
|
53
|
+
.push_4, .pull_4,
|
54
|
+
.push_5, .pull_5,
|
55
|
+
.push_6, .pull_6,
|
56
|
+
.push_7, .pull_7,
|
57
|
+
.push_8, .pull_8,
|
58
|
+
.push_9, .pull_9,
|
59
|
+
.push_10, .pull_10,
|
60
|
+
.push_11, .pull_11,
|
61
|
+
.push_12, .pull_12,
|
62
|
+
.push_13, .pull_13,
|
63
|
+
.push_14, .pull_14,
|
64
|
+
.push_15, .pull_15,
|
65
|
+
.push_16, .pull_16,
|
66
|
+
.push_17, .pull_17,
|
67
|
+
.push_18, .pull_18,
|
68
|
+
.push_19, .pull_19,
|
69
|
+
.push_20, .pull_20,
|
70
|
+
.push_21, .pull_21,
|
71
|
+
.push_22, .pull_22,
|
72
|
+
.push_23, .pull_23 {
|
73
|
+
position: relative;
|
74
|
+
}
|
75
|
+
|
76
|
+
/* (Alpha ~ First, Omega ~ Last) */
|
77
|
+
.alpha {
|
78
|
+
margin-left: 0;
|
79
|
+
}
|
80
|
+
|
81
|
+
.omega {
|
82
|
+
margin-right: 0;
|
83
|
+
}
|
84
|
+
|
85
|
+
.fluid .alpha.fixed {
|
86
|
+
margin-left: 0;
|
87
|
+
}
|
88
|
+
|
89
|
+
.fluid .omega.fixed {
|
90
|
+
margin-right: 0;
|
91
|
+
}
|
92
|
+
|
93
|
+
/* fgrid 24 Columns 100/24 -1 */
|
94
|
+
.fluid .container_24 .grid_1 { width: 3.167% ;}
|
95
|
+
.fluid .container_24 .grid_2 { width: 7.333% ;}
|
96
|
+
.fluid .container_24 .grid_3 { width: 11.5% ;}
|
97
|
+
.fluid .container_24 .grid_4 { width: 15.667% ;}
|
98
|
+
.fluid .container_24 .grid_5 { width: 19.833% ;}
|
99
|
+
.fluid .container_24 .grid_5.fixed { width: 190px;}
|
100
|
+
.fluid .container_24 .grid_6 { width: 24% ;}
|
101
|
+
.fluid .container_24 .grid_7 { width: 28.167% ;}
|
102
|
+
.fluid .container_24 .grid_8 { width: 32.333% ;}
|
103
|
+
.fluid .container_24 .grid_8.fixed {width: 316px;}
|
104
|
+
.fluid .container_24 .grid_9 { width: 36.5% ;}
|
105
|
+
.fluid .container_24 .grid_10 { width: 40.667% ;}
|
106
|
+
.fluid .container_24 .grid_10.fixed { width: 400px; }
|
107
|
+
.fluid .container_24 .grid_11 { width: 44.833% ;}
|
108
|
+
.fluid .container_24 .grid_12 { width: 49% ;}
|
109
|
+
.fluid .container_24 .grid_13 { width: 53.167% ;}
|
110
|
+
.fluid .container_24 .grid_13.fixed { width: 526px;}
|
111
|
+
.fluid .container_24 .grid_14 { width: 57.333% ;}
|
112
|
+
.fluid .container_24 .grid_15 { width: 61.5% ;}
|
113
|
+
.fluid .container_24 .grid_15.fixed { width: 610px;}
|
114
|
+
.fluid .container_24 .grid_16 { width: 65.667% ;}
|
115
|
+
.fluid .container_24 .grid_17 { width: 69.833% ;}
|
116
|
+
.fluid .container_24 .grid_18 { width: 74% ;}
|
117
|
+
.fluid .container_24 .grid_18.fixed {width: 736px;}
|
118
|
+
.fluid .container_24 .grid_19 { width: 78.167% ;}
|
119
|
+
.fluid .container_24 .grid_20 { width: 82.333% ;}
|
120
|
+
.fluid .container_24 .grid_21 { width: 86.5% ;}
|
121
|
+
.fluid .container_24 .grid_22 { width: 90.667% ;}
|
122
|
+
.fluid .container_24 .grid_23 { width: 94.833% ;}
|
123
|
+
.fluid .container_24 .grid_24 { width: 99% ;}
|
124
|
+
|
125
|
+
/* Prefix Extra 100/24 */
|
126
|
+
.fluid .container_24 .prefix_1 { padding-left: 4.167% ;}
|
127
|
+
.fluid .container_24 .prefix_2 { padding-left: 8.333% ;}
|
128
|
+
.fluid .container_24 .prefix_3 { padding-left: 12.5% ;}
|
129
|
+
.fluid .container_24 .prefix_4 { padding-left: 16.667% ;}
|
130
|
+
.fluid .container_24 .prefix_5 { padding-left: 20.833% ;}
|
131
|
+
.fluid .container_24 .prefix_6 { padding-left: 25% ;}
|
132
|
+
.fluid .container_24 .prefix_7 { padding-left: 29.167% ;}
|
133
|
+
.fluid .container_24 .prefix_8 { padding-left: 33.333% ;}
|
134
|
+
.fluid .container_24 .prefix_9 { padding-left: 37.5% ;}
|
135
|
+
.fluid .container_24 .prefix_10 { padding-left: 41.667% ;}
|
136
|
+
.fluid .container_24 .prefix_11 { padding-left: 45.833% ;}
|
137
|
+
.fluid .container_24 .prefix_12 { padding-left: 50% ;}
|
138
|
+
.fluid .container_24 .prefix_13 { padding-left: 54.167% ;}
|
139
|
+
.fluid .container_24 .prefix_14 { padding-left: 58.333% ;}
|
140
|
+
.fluid .container_24 .prefix_15 { padding-left: 62.5% ;}
|
141
|
+
.fluid .container_24 .prefix_16 { padding-left: 66.667% ;}
|
142
|
+
.fluid .container_24 .prefix_17 { padding-left: 70.833% ;}
|
143
|
+
.fluid .container_24 .prefix_18 { padding-left: 75% ;}
|
144
|
+
.fluid .container_24 .prefix_19 { padding-left: 79.167% ;}
|
145
|
+
.fluid .container_24 .prefix_20 { padding-left: 83.333% ;}
|
146
|
+
.fluid .container_24 .prefix_21 { padding-left: 87.5% ;}
|
147
|
+
.fluid .container_24 .prefix_22 { padding-left: 91.667% ;}
|
148
|
+
.fluid .container_24 .prefix_23 { padding-left: 95.833% ;}
|
149
|
+
.fluid .container_24 .prefix_24 { padding-left: 100% ;}
|
150
|
+
|
151
|
+
/* Suffix Extra Space 100/24 */
|
152
|
+
.fluid .container_24 .suffix_1 { padding-right: 4.167% ;}
|
153
|
+
.fluid .container_24 .suffix_2 { padding-right: 8.333% ;}
|
154
|
+
.fluid .container_24 .suffix_3 { padding-right: 12.5% ;}
|
155
|
+
.fluid .container_24 .suffix_4 { padding-right: 16.667% ;}
|
156
|
+
.fluid .container_24 .suffix_5 { padding-right: 20.833% ;}
|
157
|
+
.fluid .container_24 .suffix_6 { padding-right: 25% ;}
|
158
|
+
.fluid .container_24 .suffix_7 { padding-right: 29.167% ;}
|
159
|
+
.fluid .container_24 .suffix_8 { padding-right: 33.333% ;}
|
160
|
+
.fluid .container_24 .suffix_9 { padding-right: 37.5% ;}
|
161
|
+
.fluid .container_24 .suffix_10 { padding-right: 41.667% ;}
|
162
|
+
.fluid .container_24 .suffix_11 { padding-right: 45.833% ;}
|
163
|
+
.fluid .container_24 .suffix_12 { padding-right: 50% ;}
|
164
|
+
.fluid .container_24 .suffix_13 { padding-right: 54.167% ;}
|
165
|
+
.fluid .container_24 .suffix_14 { padding-right: 58.333% ;}
|
166
|
+
.fluid .container_24 .suffix_15 { padding-right: 62.5% ;}
|
167
|
+
.fluid .container_24 .suffix_16 { padding-right: 66.667% ;}
|
168
|
+
.fluid .container_24 .suffix_17 { padding-right: 70.833% ;}
|
169
|
+
.fluid .container_24 .suffix_18 { padding-right: 75% ;}
|
170
|
+
.fluid .container_24 .suffix_19 { padding-right: 79.167% ;}
|
171
|
+
.fluid .container_24 .suffix_20 { padding-right: 83.333% ;}
|
172
|
+
.fluid .container_24 .suffix_21 { padding-right: 87.5% ;}
|
173
|
+
.fluid .container_24 .suffix_22 { padding-right: 91.667% ;}
|
174
|
+
.fluid .container_24 .suffix_23 { padding-right: 95.833% ;}
|
175
|
+
.fluid .container_24 .suffix_24 { padding-right: 100% ;}
|
176
|
+
|
177
|
+
/* sub fluid 24 100% */
|
178
|
+
.grid_sub_1,
|
179
|
+
.grid_sub_2,
|
180
|
+
.grid_sub_3,
|
181
|
+
.grid_sub_4,
|
182
|
+
.grid_sub_5,
|
183
|
+
.grid_sub_6,
|
184
|
+
.grid_sub_7,
|
185
|
+
.grid_sub_8,
|
186
|
+
.grid_sub_9,
|
187
|
+
.grid_sub_10,
|
188
|
+
.grid_sub_11,
|
189
|
+
.grid_sub_12,
|
190
|
+
.grid_sub_13,
|
191
|
+
.grid_sub_14,
|
192
|
+
.grid_sub_15,
|
193
|
+
.grid_sub_16,
|
194
|
+
.grid_sub_17,
|
195
|
+
.grid_sub_18,
|
196
|
+
.grid_sub_19,
|
197
|
+
.grid_sub_20,
|
198
|
+
.grid_sub_21,
|
199
|
+
.grid_sub_22,
|
200
|
+
.grid_sub_23,
|
201
|
+
.grid_sub_24{
|
202
|
+
display: inline;
|
203
|
+
float: left;
|
204
|
+
margin-left: 0;
|
205
|
+
margin-right: 0;
|
206
|
+
}
|
207
|
+
|
208
|
+
/* sub fluid 24 grids 100% */
|
209
|
+
.fluid .container_24 .grid_sub_1 { width:2.25% ;}
|
210
|
+
.fluid .container_24 .grid_sub_2 { width:6.5% ;}
|
211
|
+
.fluid .container_24 .grid_sub_3 { width:10.75% ;}
|
212
|
+
.fluid .container_24 .grid_sub_4 { width:15% ;}
|
213
|
+
.fluid .container_24 .grid_sub_5 { width:19.25% ;}
|
214
|
+
.fluid .container_24 .grid_sub_6 { width:23.5% ;}
|
215
|
+
.fluid .container_24 .grid_sub_7 { width:27.75% ;}
|
216
|
+
.fluid .container_24 .grid_sub_8 { width:32% ;}
|
217
|
+
.fluid .container_24 .grid_sub_9 { width:36.25% ;}
|
218
|
+
.fluid .container_24 .grid_sub_10 { width:40.5% ;}
|
219
|
+
.fluid .container_24 .grid_sub_11 { width:44.75% ;}
|
220
|
+
.fluid .container_24 .grid_sub_12 { width:49% ;}
|
221
|
+
.fluid .container_24 .grid_sub_13 { width:53.25% ;}
|
222
|
+
.fluid .container_24 .grid_sub_14 { width:57.5% ;}
|
223
|
+
.fluid .container_24 .grid_sub_15 { width:61.75% ;}
|
224
|
+
.fluid .container_24 .grid_sub_16 { width:66% ;}
|
225
|
+
.fluid .container_24 .grid_sub_17 { width:70.25% ;}
|
226
|
+
.fluid .container_24 .grid_sub_18 { width:74.5% ;}
|
227
|
+
.fluid .container_24 .grid_sub_19 { width:78.75% ;}
|
228
|
+
.fluid .container_24 .grid_sub_20 { width:83% ;}
|
229
|
+
.fluid .container_24 .grid_sub_21 { width:87.25% ;}
|
230
|
+
.fluid .container_24 .grid_sub_22 { width:91.5% ;}
|
231
|
+
.fluid .container_24 .grid_sub_23 { width:95.75% ;}
|
232
|
+
.fluid .container_24 .grid_sub_24 { width:100% ;}
|
233
|
+
|
234
|
+
.sub_alpha {
|
235
|
+
margin-right: 1%;
|
236
|
+
}
|
237
|
+
|
238
|
+
.sub_omega {
|
239
|
+
margin-left: 1%;
|
240
|
+
}
|
241
|
+
|
242
|
+
.sub_middle {
|
243
|
+
margin-left: 1%;
|
244
|
+
margin-right: 1%;
|
245
|
+
}
|
246
|
+
|
247
|
+
/* Push Space */
|
248
|
+
.fluid .container_24 .push_1 { left: 4.167% ;}
|
249
|
+
.fluid .container_24 .push_2 { left: 8.333% ;}
|
250
|
+
.fluid .container_24 .push_3 { left: 12.5% ;}
|
251
|
+
.fluid .container_24 .push_4 { left: 16.667% ;}
|
252
|
+
.fluid .container_24 .push_5 { left: 20.833% ;}
|
253
|
+
.fluid .container_24 .push_6 { left: 25% ;}
|
254
|
+
.fluid .container_24 .push_7 { left: 29.167% ;}
|
255
|
+
.fluid .container_24 .push_8 { left: 33.333% ;}
|
256
|
+
.fluid .container_24 .push_9 { left: 37.5% ;}
|
257
|
+
.fluid .container_24 .push_10 { left: 41.667% ;}
|
258
|
+
.fluid .container_24 .push_11 { left: 45.833% ;}
|
259
|
+
.fluid .container_24 .push_12 { left: 50% ;}
|
260
|
+
.fluid .container_24 .push_13 { left: 54.167% ;}
|
261
|
+
.fluid .container_24 .push_14 { left: 58.333% ;}
|
262
|
+
.fluid .container_24 .push_15 { left: 62.5% ;}
|
263
|
+
.fluid .container_24 .push_16 { left: 66.667% ;}
|
264
|
+
.fluid .container_24 .push_17 { left: 70.833% ;}
|
265
|
+
.fluid .container_24 .push_18 { left: 75% ;}
|
266
|
+
.fluid .container_24 .push_19 { left: 79.167% ;}
|
267
|
+
.fluid .container_24 .push_20 { left: 83.333% ;}
|
268
|
+
.fluid .container_24 .push_21 { left: 87.5% ;}
|
269
|
+
.fluid .container_24 .push_22 { left: 91.667% ;}
|
270
|
+
.fluid .container_24 .push_23 { left: 95.833% ;}
|
271
|
+
.fluid .container_24 .push_24 { left: 100% ;}
|
272
|
+
|
273
|
+
/* Pull Space */
|
274
|
+
.fluid .container_24 .pull_1 { left: -4.167% ;}
|
275
|
+
.fluid .container_24 .pull_2 { left: -8.333% ;}
|
276
|
+
.fluid .container_24 .pull_3 { left: -12.5% ;}
|
277
|
+
.fluid .container_24 .pull_4 { left: -16.667% ;}
|
278
|
+
.fluid .container_24 .pull_5 { left: -20.833% ;}
|
279
|
+
.fluid .container_24 .pull_6 { left: -25% ;}
|
280
|
+
.fluid .container_24 .pull_7 { left: -29.167% ;}
|
281
|
+
.fluid .container_24 .pull_8 { left: -33.333% ;}
|
282
|
+
.fluid .container_24 .pull_9 { left: -37.5% ;}
|
283
|
+
.fluid .container_24 .pull_10 { left: -41.667% ;}
|
284
|
+
.fluid .container_24 .pull_11 { left: -45.833% ;}
|
285
|
+
.fluid .container_24 .pull_12 { left: -50% ;}
|
286
|
+
.fluid .container_24 .pull_13 { left: -54.167% ;}
|
287
|
+
.fluid .container_24 .pull_14 { left: -58.333% ;}
|
288
|
+
.fluid .container_24 .pull_15 { left: -62.5% ;}
|
289
|
+
.fluid .container_24 .pull_16 { left: -66.667% ;}
|
290
|
+
.fluid .container_24 .pull_17 { left: -70.833% ;}
|
291
|
+
.fluid .container_24 .pull_18 { left: -75% ;}
|
292
|
+
.fluid .container_24 .pull_19 { left: -79.167% ;}
|
293
|
+
.fluid .container_24 .pull_20 { left: -83.333% ;}
|
294
|
+
.fluid .container_24 .pull_21 { left: -87.5% ;}
|
295
|
+
.fluid .container_24 .pull_22 { left: -91.667% ;}
|
296
|
+
.fluid .container_24 .pull_23 { left: -95.833% ;}
|
297
|
+
.fluid .container_24 .pull_24 { left: -100% ;}
|
298
|
+
|
299
|
+
/* Clear Floated Elements */
|
300
|
+
/* http://sonspring.com/journal/clearing-floats */
|
301
|
+
.clear {
|
302
|
+
clear: both;
|
303
|
+
display: block;
|
304
|
+
overflow: hidden;
|
305
|
+
visibility: hidden;
|
306
|
+
width: 0;
|
307
|
+
height: 0;
|
308
|
+
}
|
309
|
+
|
310
|
+
/* http://perishablepress.com/press/2009/12/06/new-clearfix-hack */
|
311
|
+
.clearfix:after {
|
312
|
+
visibility: hidden;
|
313
|
+
display: block;
|
314
|
+
font-size: 0;
|
315
|
+
content: " ";
|
316
|
+
clear: both;
|
317
|
+
height: 0;
|
318
|
+
}
|
319
|
+
* html .clearfix { zoom: 1; } /* IE6 */
|
320
|
+
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
|
@@ -0,0 +1,7 @@
|
|
1
|
+
/*
|
2
|
+
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
|
3
|
+
Code licensed under the BSD License:
|
4
|
+
http://developer.yahoo.net/yui/license.txt
|
5
|
+
version: 2.7.0
|
6
|
+
*/
|
7
|
+
.yui-skin-sam .yui-pv{background-color:#4a4a4a;font:arial;position:relative;width:99%;z-index:1000;margin-bottom:1em;overflow:hidden;}.yui-skin-sam .yui-pv .hd{background:url(http://yui.yahooapis.com/2.7.0/build/profilerviewer/assets/skins/sam/header_background.png) repeat-x;min-height:30px;overflow:hidden;zoom:1;padding:2px 0;}.yui-skin-sam .yui-pv .hd h4{padding:8px 10px;margin:0;font:bold 14px arial;color:#fff;}.yui-skin-sam .yui-pv .hd a{background:#3f6bc3;font:bold 11px arial;color:#fff;padding:4px;margin:3px 10px 0 0;border:1px solid #3f567d;cursor:pointer;display:block;float:right;}.yui-skin-sam .yui-pv .hd span{display:none;}.yui-skin-sam .yui-pv .hd span.yui-pv-busy{height:18px;width:18px;background:url(http://yui.yahooapis.com/2.7.0/build/profilerviewer/assets/skins/sam/wait.gif) no-repeat;overflow:hidden;display:block;float:right;margin:4px 10px 0 0;}.yui-skin-sam .yui-pv .hd:after,.yui-pv .bd:after,.yui-skin-sam .yui-pv-chartlegend dl:after{content:'.';visibility:hidden;clear:left;height:0;display:block;}.yui-skin-sam .yui-pv .bd{position:relative;zoom:1;overflow-x:auto;overflow-y:hidden;}.yui-skin-sam .yui-pv .yui-pv-table{padding:0 10px;margin:5px 0 10px 0;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-bd td{color:#eeee5c;font:12px arial;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-odd{background:#929292;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-even{background:#58637a;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-even td.yui-dt-asc,.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-even td.yui-dt-desc{background:#384970;}.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-odd td.yui-dt-asc,.yui-skin-sam .yui-pv .yui-pv-table tr.yui-dt-odd td.yui-dt-desc{background:#6F6E6E;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th{background-image:none;background:#2E2D2D;}.yui-skin-sam .yui-pv th.yui-dt-asc .yui-dt-liner{background:transparent url(http://yui.yahooapis.com/2.7.0/build/profilerviewer/assets/skins/sam/asc.gif) no-repeat scroll right center;}.yui-skin-sam .yui-pv th.yui-dt-desc .yui-dt-liner{background:transparent url(http://yui.yahooapis.com/2.7.0/build/profilerviewer/assets/skins/sam/desc.gif) no-repeat scroll right center;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th a{color:#fff;font:bold 12px arial;}.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th.yui-dt-asc,.yui-skin-sam .yui-pv .yui-pv-table .yui-dt-hd th.yui-dt-desc{background:#333;}.yui-skin-sam .yui-pv-chartcontainer{padding:0 10px;}.yui-skin-sam .yui-pv-chart{height:250px;clear:right;margin:5px 0 0 0;color:#fff;}.yui-skin-sam .yui-pv-chartlegend div{float:right;margin:0 0 0 10px;_width:250px;}.yui-skin-sam .yui-pv-chartlegend dl{border:1px solid #999;padding:.2em 0 .2em .5em;zoom:1;margin:5px 0;}.yui-skin-sam .yui-pv-chartlegend dt{float:left;display:block;height:.7em;width:.7em;padding:0;}.yui-skin-sam .yui-pv-chartlegend dd{float:left;display:block;color:#fff;margin:0 1em 0 .5em;padding:0;font:11px arial;}.yui-skin-sam .yui-pv-minimized{height:35px;}.yui-skin-sam .yui-pv-minimized .bd{top:-3000px;}.yui-skin-sam .yui-pv-minimized .hd a.yui-pv-refresh{display:none;}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
/* http://meyerweb.com/eric/tools/css/reset/ */
|
2
|
+
/* v1.0 | 20080212 */
|
3
|
+
|
4
|
+
html, body, div, span, applet, object, iframe,
|
5
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
6
|
+
a, abbr, acronym, address, big, cite, code,
|
7
|
+
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
8
|
+
small, strike, strong, sub, sup, tt, var,
|
9
|
+
b, u, i, center,
|
10
|
+
dl, dt, dd, ol, ul, li,
|
11
|
+
fieldset, form, label, legend,
|
12
|
+
table, caption, tbody, tfoot, thead, tr, th, td {
|
13
|
+
margin: 0;
|
14
|
+
padding: 0;
|
15
|
+
border: 0;
|
16
|
+
outline: 0;
|
17
|
+
font-size: 100%;
|
18
|
+
vertical-align: baseline;
|
19
|
+
background: transparent;
|
20
|
+
}
|
21
|
+
body {
|
22
|
+
line-height: 1;
|
23
|
+
}
|
24
|
+
ol, ul {
|
25
|
+
list-style: none;
|
26
|
+
}
|
27
|
+
blockquote, q {
|
28
|
+
quotes: none;
|
29
|
+
}
|
30
|
+
blockquote:before, blockquote:after,
|
31
|
+
q:before, q:after {
|
32
|
+
content: '';
|
33
|
+
content: none;
|
34
|
+
}
|
35
|
+
|
36
|
+
/* remember to define focus styles! */
|
37
|
+
:focus {
|
38
|
+
outline: 0;
|
39
|
+
}
|
40
|
+
|
41
|
+
/* remember to highlight inserts somehow! */
|
42
|
+
ins {
|
43
|
+
text-decoration: none;
|
44
|
+
}
|
45
|
+
del {
|
46
|
+
text-decoration: line-through;
|
47
|
+
}
|
48
|
+
|
49
|
+
/* tables still need 'cellspacing="0"' in the markup */
|
50
|
+
table {
|
51
|
+
border-collapse: collapse;
|
52
|
+
border-spacing: 0;
|
53
|
+
}
|
@@ -0,0 +1,84 @@
|
|
1
|
+
/*
|
2
|
+
960 Grid System ~ Text CSS.
|
3
|
+
Learn more ~ http://960.gs/
|
4
|
+
|
5
|
+
Licensed under GPL and MIT.
|
6
|
+
*/
|
7
|
+
|
8
|
+
/* `Basic HTML
|
9
|
+
----------------------------------------------------------------------------------------------------*/
|
10
|
+
|
11
|
+
body {
|
12
|
+
font: 13px/1.5 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif;
|
13
|
+
}
|
14
|
+
|
15
|
+
a:focus {
|
16
|
+
outline: 1px dotted;
|
17
|
+
}
|
18
|
+
|
19
|
+
hr {
|
20
|
+
border: 0 #ccc solid;
|
21
|
+
border-top-width: 1px;
|
22
|
+
clear: both;
|
23
|
+
height: 0;
|
24
|
+
}
|
25
|
+
|
26
|
+
/* `Headings
|
27
|
+
----------------------------------------------------------------------------------------------------*/
|
28
|
+
|
29
|
+
h1 {
|
30
|
+
font-size: 25px;
|
31
|
+
}
|
32
|
+
|
33
|
+
h2 {
|
34
|
+
font-size: 23px;
|
35
|
+
}
|
36
|
+
|
37
|
+
h3 {
|
38
|
+
font-size: 21px;
|
39
|
+
}
|
40
|
+
|
41
|
+
h4 {
|
42
|
+
font-size: 19px;
|
43
|
+
}
|
44
|
+
|
45
|
+
h5 {
|
46
|
+
font-size: 17px;
|
47
|
+
}
|
48
|
+
|
49
|
+
h6 {
|
50
|
+
font-size: 15px;
|
51
|
+
}
|
52
|
+
|
53
|
+
/* `Spacing
|
54
|
+
----------------------------------------------------------------------------------------------------*/
|
55
|
+
|
56
|
+
ol {
|
57
|
+
list-style: decimal;
|
58
|
+
}
|
59
|
+
|
60
|
+
ul {
|
61
|
+
list-style: disc;
|
62
|
+
}
|
63
|
+
|
64
|
+
li {
|
65
|
+
margin-left: 30px;
|
66
|
+
}
|
67
|
+
|
68
|
+
p,
|
69
|
+
dl,
|
70
|
+
hr,
|
71
|
+
h1,
|
72
|
+
h2,
|
73
|
+
h3,
|
74
|
+
h4,
|
75
|
+
h5,
|
76
|
+
h6,
|
77
|
+
ol,
|
78
|
+
ul,
|
79
|
+
pre,
|
80
|
+
table,
|
81
|
+
address,
|
82
|
+
fieldset {
|
83
|
+
margin-bottom: 20px;
|
84
|
+
}
|
@@ -0,0 +1,142 @@
|
|
1
|
+
.inputContainer {
|
2
|
+
position: relative;
|
3
|
+
float: left;
|
4
|
+
}
|
5
|
+
|
6
|
+
.formError {
|
7
|
+
position: absolute;
|
8
|
+
top: 300px;
|
9
|
+
left: 300px;
|
10
|
+
display: block;
|
11
|
+
z-index: 5000;
|
12
|
+
cursor: pointer;
|
13
|
+
}
|
14
|
+
|
15
|
+
.ajaxSubmit {
|
16
|
+
padding: 20px;
|
17
|
+
background: #55ea55;
|
18
|
+
border: 1px solid #999;
|
19
|
+
display: none
|
20
|
+
}
|
21
|
+
|
22
|
+
.formError .formErrorContent {
|
23
|
+
width: 100%;
|
24
|
+
background: #ee0101;
|
25
|
+
position:relative;
|
26
|
+
z-index:5001;
|
27
|
+
color: #fff;
|
28
|
+
width: 150px;
|
29
|
+
font-family: tahoma;
|
30
|
+
font-size: 11px;
|
31
|
+
border: 2px solid #ddd;
|
32
|
+
box-shadow: 0 0 6px #000;
|
33
|
+
-moz-box-shadow: 0 0 6px #000;
|
34
|
+
-webkit-box-shadow: 0 0 6px #000;
|
35
|
+
padding: 4px 10px 4px 10px;
|
36
|
+
border-radius: 6px;
|
37
|
+
-moz-border-radius: 6px;
|
38
|
+
-webkit-border-radius: 6px;
|
39
|
+
}
|
40
|
+
|
41
|
+
.greenPopup .formErrorContent {
|
42
|
+
background: #33be40;
|
43
|
+
}
|
44
|
+
|
45
|
+
.blackPopup .formErrorContent {
|
46
|
+
background: #393939;
|
47
|
+
color: #FFF;
|
48
|
+
}
|
49
|
+
|
50
|
+
.formError .formErrorArrow {
|
51
|
+
width: 15px;
|
52
|
+
margin: -2px 0 0 13px;
|
53
|
+
position:relative;
|
54
|
+
z-index: 5006;
|
55
|
+
}
|
56
|
+
|
57
|
+
.formError .formErrorArrowBottom {
|
58
|
+
box-shadow: none;
|
59
|
+
-moz-box-shadow: none;
|
60
|
+
-webkit-box-shadow: none;
|
61
|
+
margin: 0px 0 0 12px;
|
62
|
+
top:2px;
|
63
|
+
}
|
64
|
+
|
65
|
+
.formError .formErrorArrow div {
|
66
|
+
border-left: 2px solid #ddd;
|
67
|
+
border-right: 2px solid #ddd;
|
68
|
+
box-shadow: 0 2px 3px #444;
|
69
|
+
-moz-box-shadow: 0 2px 3px #444;
|
70
|
+
-webkit-box-shadow: 0 2px 3px #444;
|
71
|
+
font-size: 0px;
|
72
|
+
height: 1px;
|
73
|
+
background: #ee0101;
|
74
|
+
margin: 0 auto;
|
75
|
+
line-height: 0;
|
76
|
+
font-size: 0;
|
77
|
+
display: block;
|
78
|
+
}
|
79
|
+
|
80
|
+
.formError .formErrorArrowBottom div {
|
81
|
+
box-shadow: none;
|
82
|
+
-moz-box-shadow: none;
|
83
|
+
-webkit-box-shadow: none;
|
84
|
+
}
|
85
|
+
|
86
|
+
.greenPopup .formErrorArrow div {
|
87
|
+
background: #33be40;
|
88
|
+
}
|
89
|
+
|
90
|
+
.blackPopup .formErrorArrow div {
|
91
|
+
background: #393939;
|
92
|
+
color: #FFF;
|
93
|
+
}
|
94
|
+
|
95
|
+
.formError .formErrorArrow .line10 {
|
96
|
+
width: 15px;
|
97
|
+
border: none;
|
98
|
+
}
|
99
|
+
|
100
|
+
.formError .formErrorArrow .line9 {
|
101
|
+
width: 13px;
|
102
|
+
border: none;
|
103
|
+
}
|
104
|
+
|
105
|
+
.formError .formErrorArrow .line8 {
|
106
|
+
width: 11px;
|
107
|
+
}
|
108
|
+
|
109
|
+
.formError .formErrorArrow .line7 {
|
110
|
+
width: 9px;
|
111
|
+
}
|
112
|
+
|
113
|
+
.formError .formErrorArrow .line6 {
|
114
|
+
width: 7px;
|
115
|
+
}
|
116
|
+
|
117
|
+
.formError .formErrorArrow .line5 {
|
118
|
+
width: 5px;
|
119
|
+
}
|
120
|
+
|
121
|
+
.formError .formErrorArrow .line4 {
|
122
|
+
width: 3px;
|
123
|
+
}
|
124
|
+
|
125
|
+
.formError .formErrorArrow .line3 {
|
126
|
+
width: 1px;
|
127
|
+
border-left: 2px solid #ddd;
|
128
|
+
border-right: 2px solid #ddd;
|
129
|
+
border-bottom: 0 solid #ddd;
|
130
|
+
}
|
131
|
+
|
132
|
+
.formError .formErrorArrow .line2 {
|
133
|
+
width: 3px;
|
134
|
+
border: none;
|
135
|
+
background: #ddd;
|
136
|
+
}
|
137
|
+
|
138
|
+
.formError .formErrorArrow .line1 {
|
139
|
+
width: 1px;
|
140
|
+
border: none;
|
141
|
+
background: #ddd;
|
142
|
+
}
|
Binary file
|
@@ -0,0 +1,47 @@
|
|
1
|
+
module Gunnertechnology
|
2
|
+
module Rails
|
3
|
+
class Railtie < ::Rails::Railtie
|
4
|
+
console do
|
5
|
+
|
6
|
+
end
|
7
|
+
|
8
|
+
rake_tasks do
|
9
|
+
|
10
|
+
end
|
11
|
+
|
12
|
+
initializer do
|
13
|
+
|
14
|
+
end
|
15
|
+
|
16
|
+
generators do
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
config.generators do |g|
|
21
|
+
|
22
|
+
end
|
23
|
+
|
24
|
+
config.after_initialize
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
config.app_middleware do |m|
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
cnofig.before_configuration
|
33
|
+
|
34
|
+
end
|
35
|
+
|
36
|
+
config.before_eager_load do
|
37
|
+
end
|
38
|
+
|
39
|
+
config.before_initialize do
|
40
|
+
end
|
41
|
+
|
42
|
+
config.to_prepare do
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|