sooner 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +1 -1
- data/README.rdoc +0 -0
- data/Rakefile +28 -32
- data/app/assets/javascripts/sooner/admin/application.js +8 -0
- data/app/assets/javascripts/sooner/application.js +2 -0
- data/app/assets/javascripts/sooner/jquery.tablesorter.min.js +4 -0
- data/app/assets/javascripts/sooner/subscribers.js +2 -0
- data/app/assets/stylesheets/sooner/admin/application.css +37 -0
- data/app/assets/stylesheets/sooner/application.css +3 -0
- data/app/assets/stylesheets/sooner/subscribers.css +0 -0
- data/app/controllers/sooner/admin/subscribers_controller.rb +89 -0
- data/app/controllers/sooner/application_controller.rb +4 -0
- data/app/controllers/sooner/subscribers_controller.rb +20 -16
- data/app/helpers/sooner/admin/subscribers_helper.rb +4 -0
- data/app/helpers/sooner/application_helper.rb +4 -0
- data/app/helpers/sooner/subscribers_helper.rb +4 -0
- data/app/mailers/sooner/subscribers_mailer.rb +16 -0
- data/app/models/sooner/admin/subscriber.rb +3 -0
- data/app/models/sooner/subscriber.rb +19 -12
- data/app/views/layouts/sooner/admin.html.erb +21 -0
- data/app/views/layouts/sooner/application.html.erb +14 -0
- data/app/views/sooner/admin/subscribers/_form.html.erb +19 -0
- data/app/views/sooner/admin/subscribers/edit.html.erb +6 -0
- data/app/views/sooner/admin/subscribers/index.html.erb +22 -0
- data/app/views/sooner/admin/subscribers/new.html.erb +8 -0
- data/app/views/sooner/admin/subscribers/show.html.erb +5 -0
- data/app/views/sooner/subscribers/_message.html.erb +1 -0
- data/app/views/sooner/subscribers/create.js.erb +5 -0
- data/app/views/sooner/subscribers/new.html.erb +17 -10
- data/app/views/sooner/subscribers_mailer/subscribed.text.erb +3 -0
- data/config/routes.rb +8 -3
- data/lib/generators/sooner/install/install_generator.rb +33 -32
- data/lib/generators/sooner/install/templates/README +3 -13
- data/lib/generators/sooner/views/views_generator.rb +49 -47
- data/lib/sooner/engine.rb +5 -0
- data/lib/sooner/version.rb +2 -2
- data/lib/sooner/version.rb~ +3 -0
- data/lib/sooner.rb +21 -12
- data/lib/tasks/sooner_tasks.rake +4 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +9 -0
- data/test/dummy/app/assets/stylesheets/application.css +7 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +45 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +33 -0
- data/test/dummy/config/environments/production.rb +60 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/mongoid.yml +20 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +13370 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +26 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/subscribers.csv +1 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/C30/8B0/sprockets%2F6853748309a0fdd864824f56536d8023 +9062 -0
- data/test/dummy/tmp/cache/assets/C3F/0E0/sprockets%2F0e1cbc926773103d03774752e9108a00 +335 -0
- data/test/dummy/tmp/cache/assets/C66/FB0/sprockets%2F98a6552e0c72949d717178b5902e6f36 +71 -0
- data/test/dummy/tmp/cache/assets/C6D/F80/sprockets%2F44533615dbef3e810253094110825dac +62 -0
- data/test/dummy/tmp/cache/assets/C7A/910/sprockets%2F856f6b120c31d4622c49b3630219de68 +9069 -0
- data/test/dummy/tmp/cache/assets/C92/6A0/sprockets%2Fc5438348d868c777420d2e63fce56245 +98 -0
- data/test/dummy/tmp/cache/assets/C9C/A60/sprockets%2Fc6c3395667d18857f7f12369e53fa727 +350 -0
- data/test/dummy/tmp/cache/assets/CA7/430/sprockets%2F202cbe6f48604eb00549854f3053b58a +25 -0
- data/test/dummy/tmp/cache/assets/CB4/610/sprockets%2Ffeb1a7838d426857f0530993e420b60e +115 -0
- data/test/dummy/tmp/cache/assets/CE4/0D0/sprockets%2F439a9e8509403ac14ca356e5f2e9348b +7 -0
- data/test/dummy/tmp/cache/assets/CEB/DC0/sprockets%2F38536533e8e59a3fe0be483209c6d5c6 +352 -0
- data/test/dummy/tmp/cache/assets/CF6/900/sprockets%2F94575569edeb05737ebeaa60898940b6 +26 -0
- data/test/dummy/tmp/cache/assets/D07/4F0/sprockets%2Fe6091698b531dd271d5ac325b8b84ba0 +10 -0
- data/test/dummy/tmp/cache/assets/D19/BD0/sprockets%2F88636a6d051daca6365de6bd82096f48 +2445 -0
- data/test/dummy/tmp/cache/assets/D2B/3B0/sprockets%2F7de3b697dd206aa6eb292e301b140b60 +88 -0
- data/test/dummy/tmp/cache/assets/D39/410/sprockets%2Fa93af35d175ac7db006e63e91a0889b0 +42 -0
- data/test/dummy/tmp/cache/assets/D53/160/sprockets%2F8970dd07264d6eae78dd182d79df13c8 +303 -0
- data/test/dummy/tmp/cache/assets/D60/CE0/sprockets%2F06310f19d92bb4f40da80a37750ebdee +9 -0
- data/test/dummy/tmp/cache/assets/D65/620/sprockets%2F631e2801093d7a12aa6766bccaadfe88 +422 -0
- data/test/dummy/tmp/cache/assets/D7E/D20/sprockets%2Ff491cba4ec5176a691d9e5d7fc70892c +9052 -0
- data/test/dummy/tmp/cache/assets/D88/580/sprockets%2Ffef9b1c3b3b1b0316917a509cb1afb42 +439 -0
- data/test/dummy/tmp/cache/assets/D8E/B60/sprockets%2F1bc4810ecfe6a7b05c934eb3b0c2963a +9064 -0
- data/test/dummy/tmp/cache/assets/D99/D60/sprockets%2F29025313ddeaa1ff18cade1ed728949a +41 -0
- data/test/dummy/tmp/cache/assets/D9E/FD0/sprockets%2Ff8c955f36a2caa4039a66afc4c376e3a +0 -0
- data/test/dummy/tmp/cache/assets/DA5/1C0/sprockets%2Fec8cd61eddd7205e7c9c647f59413ac0 +371 -0
- data/test/dummy/tmp/cache/assets/DAF/6E0/sprockets%2F1b832fdf9fb97a8a7bcd2c907e652f47 +2386 -0
- data/test/dummy/tmp/cache/assets/DBC/650/sprockets%2Fd6da39f6f3f4a37c0db10cbc34ab0681 +67 -0
- data/test/dummy/tmp/cache/assets/DC2/150/sprockets%2F5cd685a35e3b593acade42a3b01def72 +8 -0
- data/test/dummy/tmp/cache/assets/DC7/530/sprockets%2Fea29d9af8aad9da0803062d3d7c06ac8 +373 -0
- data/test/dummy/tmp/cache/assets/DC9/2C0/sprockets%2Fbe1b3f07eb2f550c47c493a6f9a0de7b +333 -0
- data/test/dummy/tmp/cache/assets/DD6/820/sprockets%2Fb453f0fef899e0c6fe08aba14b94d09e +45 -0
- data/test/dummy/tmp/cache/assets/DD7/130/sprockets%2F6af271c6eec0698bc95224abf1ebf9f6 +390 -0
- data/test/dummy/tmp/cache/assets/E03/200/sprockets%2F8bd487cf65caa9fe453abd16be83e0a7 +70 -0
- data/test/dummy/tmp/cache/assets/E1D/680/sprockets%2Fc5c6b0ea20de8ef4d2f1eed00a35c93c +25 -0
- data/test/dummy/tmp/cache/assets/E49/440/sprockets%2Fbb92f156efb75bdda7bbacc04acb1425 +27 -0
- data/test/dummy/tmp/cache/assets/E59/430/sprockets%2Fb3073d96f7bcefcbdd3cdabe09a45a74 +286 -0
- data/test/dummy/tmp/cache/assets/E84/430/sprockets%2F61ffc0ed6338cebfdac2f1d3eaf0ae47 +9420 -0
- data/test/fixtures/sooner/admin/subscribers.yml +11 -0
- data/test/fixtures/sooner/subscribers.yml +7 -0
- data/test/functional/sooner/admin/subscribers_controller_test.rb +51 -0
- data/test/functional/sooner/subscribers_controller_test.rb +51 -0
- data/test/functional/sooner/subscribers_mailer_test.rb +14 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/sooner_test.rb +7 -0
- data/test/test_helper.rb +10 -0
- data/test/unit/helpers/sooner/admin/subscribers_helper_test.rb +6 -0
- data/test/unit/helpers/sooner/subscribers_helper_test.rb +6 -0
- data/test/unit/sooner/admin/subscriber_test.rb +9 -0
- data/test/unit/sooner/subscriber_test.rb +9 -0
- metadata +252 -53
- data/Gemfile +0 -4
- data/lib/sooner/email_format_validator.rb +0 -9
- data/lib/sooner/rails.rb +0 -5
@@ -0,0 +1,98 @@
|
|
1
|
+
o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1320233018.3104863:@value{ I"length:EFi� I"digest;
|
2
|
+
F"%973ee4de24feb57ba5c570c1d921a257I"source;
|
3
|
+
FI"� /*
|
4
|
+
* Skeleton V1.1
|
5
|
+
* Copyright 2011, Dave Gamache
|
6
|
+
* www.getskeleton.com
|
7
|
+
* Free to use under the MIT license.
|
8
|
+
* http://www.opensource.org/licenses/mit-license.php
|
9
|
+
* 8/17/2011
|
10
|
+
*/
|
11
|
+
/* Table of Content
|
12
|
+
==================================================
|
13
|
+
#Site Styles
|
14
|
+
#Page Styles
|
15
|
+
#Media Queries
|
16
|
+
#Font-Face */
|
17
|
+
/* #Site Styles
|
18
|
+
================================================== */
|
19
|
+
/* #Page Styles
|
20
|
+
================================================== */
|
21
|
+
/* #Media Queries
|
22
|
+
================================================== */
|
23
|
+
/* Smaller than standard 960 (devices and browsers) */
|
24
|
+
|
25
|
+
@media only screen and(max-width:959px) {
|
26
|
+
body {
|
27
|
+
width:896px;
|
28
|
+
padding:72px 48px 84px;
|
29
|
+
background-color:rgb(232,232,232);
|
30
|
+
margin-left:auto;
|
31
|
+
margin-right:auto;
|
32
|
+
color:rgb(60,60,60);
|
33
|
+
-webkit-text-size-adjust:100%;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
/* Tablet Portrait size to standard 960 (devices and browsers) */
|
37
|
+
@media only screen and(min-width:768px)and(max-width:959px) {
|
38
|
+
body {
|
39
|
+
padding:72px 48px 84px;
|
40
|
+
background-color:rgb(232,232,232);
|
41
|
+
margin-left:auto;
|
42
|
+
margin-right:auto;
|
43
|
+
color:rgb(60,60,60);
|
44
|
+
-webkit-text-size-adjust:100%;
|
45
|
+
}
|
46
|
+
}
|
47
|
+
/* All Mobile Sizes (devices and browser) */
|
48
|
+
@media only screen and(max-width:767px) {
|
49
|
+
body {
|
50
|
+
padding:72px 48px 84px;
|
51
|
+
background-color:rgb(232,232,232);
|
52
|
+
margin-left:auto;
|
53
|
+
margin-right:auto;
|
54
|
+
color:rgb(60,60,60);
|
55
|
+
-webkit-text-size-adjust:100%;
|
56
|
+
}
|
57
|
+
}
|
58
|
+
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
|
59
|
+
@media only screen and(min-width:480px)and(max-width:767px) {
|
60
|
+
body {
|
61
|
+
padding:72px 48px 84px;
|
62
|
+
background-color:rgb(232,232,232);
|
63
|
+
margin-left:auto;
|
64
|
+
margin-right:auto;
|
65
|
+
color:rgb(60,60,60);
|
66
|
+
-webkit-text-size-adjust:100%;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
|
70
|
+
@media only screen and(max-width:479px) {
|
71
|
+
body {
|
72
|
+
padding:72px 48px 84px;
|
73
|
+
background-color:rgb(232,232,232);
|
74
|
+
margin-left:auto;
|
75
|
+
margin-right:auto;
|
76
|
+
color:rgb(60,60,60);
|
77
|
+
-webkit-text-size-adjust:100%;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
/* #Font-Face
|
81
|
+
================================================== */
|
82
|
+
/* This is the proper syntax for an @font-face file
|
83
|
+
Just create a "fonts" folder at the root,
|
84
|
+
copy your FontName into code below and remove
|
85
|
+
comment brackets */
|
86
|
+
/* @font-face {
|
87
|
+
font-family: 'FontName';
|
88
|
+
src: url('../fonts/FontName.eot');
|
89
|
+
src: url('../fonts/FontName.eot?iefix') format('eot'),
|
90
|
+
url('../fonts/FontName.woff') format('woff'),
|
91
|
+
url('../fonts/FontName.ttf') format('truetype'),
|
92
|
+
url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
|
93
|
+
font-weight: normal;
|
94
|
+
font-style: normal; }
|
95
|
+
*/
|
96
|
+
;
|
97
|
+
FI"
|
98
|
+
F"%a4518aa63ed594c88728bf13b647501c
|
@@ -0,0 +1,350 @@
|
|
1
|
+
o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1320232877.9815195:@value{I"
|
2
|
+
class:EFI"BundledAsset;
|
3
|
+
FI"id;
|
4
|
+
F"%d3c9e243a3c6551f261e09aa23cbd6caI"logical_path;
|
5
|
+
F"sooner/skeleton.cssI"
|
6
|
+
F"N/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/skeleton.cssI"content_type;
|
7
|
+
FI"
|
8
|
+
FI"
|
9
|
+
mtime;
|
10
|
+
FI"2011-11-02T13:19:06+02:00;
|
11
|
+
FI" body;
|
12
|
+
FI"/*
|
13
|
+
* Skeleton V1.1
|
14
|
+
* Copyright 2011, Dave Gamache
|
15
|
+
* www.getskeleton.com
|
16
|
+
* Free to use under the MIT license.
|
17
|
+
* http://www.opensource.org/licenses/mit-license.php
|
18
|
+
* 8/17/2011
|
19
|
+
*/
|
20
|
+
/* Table of Contents
|
21
|
+
==================================================
|
22
|
+
#Base 960 Grid
|
23
|
+
#Tablet (Portrait)
|
24
|
+
#Mobile (Portrait)
|
25
|
+
#Mobile (Landscape)
|
26
|
+
#Clearing */
|
27
|
+
/* #Base 960 Grid
|
28
|
+
================================================== */
|
29
|
+
|
30
|
+
.container {
|
31
|
+
position:relative;
|
32
|
+
width:960px;
|
33
|
+
margin:0 auto;
|
34
|
+
padding:0;
|
35
|
+
}
|
36
|
+
.column, .columns {
|
37
|
+
float:left;
|
38
|
+
display:inline;
|
39
|
+
margin-left:10px;
|
40
|
+
margin-right:10px;
|
41
|
+
}
|
42
|
+
.row {
|
43
|
+
margin-bottom:20px;
|
44
|
+
}
|
45
|
+
/* Nested Column Classes */
|
46
|
+
.column.alpha, .columns.alpha {
|
47
|
+
margin-left:0;
|
48
|
+
}
|
49
|
+
.column.omega, .columns.omega {
|
50
|
+
margin-right:0;
|
51
|
+
}
|
52
|
+
/* Base Grid */
|
53
|
+
.container .one.column {
|
54
|
+
width:40px;
|
55
|
+
}
|
56
|
+
.container .two.columns {
|
57
|
+
width:100px;
|
58
|
+
}
|
59
|
+
.container .three.columns {
|
60
|
+
width:160px;
|
61
|
+
}
|
62
|
+
.container .four.columns {
|
63
|
+
width:220px;
|
64
|
+
}
|
65
|
+
.container .five.columns {
|
66
|
+
width:280px;
|
67
|
+
}
|
68
|
+
.container .six.columns {
|
69
|
+
width:340px;
|
70
|
+
}
|
71
|
+
.container .seven.columns {
|
72
|
+
width:400px;
|
73
|
+
}
|
74
|
+
.container .eight.columns {
|
75
|
+
width:460px;
|
76
|
+
}
|
77
|
+
.container .nine.columns {
|
78
|
+
width:520px;
|
79
|
+
}
|
80
|
+
.container .ten.columns {
|
81
|
+
width:580px;
|
82
|
+
}
|
83
|
+
.container .eleven.columns {
|
84
|
+
width:640px;
|
85
|
+
}
|
86
|
+
.container .twelve.columns {
|
87
|
+
width:700px;
|
88
|
+
}
|
89
|
+
.container .thirteen.columns {
|
90
|
+
width:760px;
|
91
|
+
}
|
92
|
+
.container .fourteen.columns {
|
93
|
+
width:820px;
|
94
|
+
}
|
95
|
+
.container .fifteen.columns {
|
96
|
+
width:880px;
|
97
|
+
}
|
98
|
+
.container .sixteen.columns {
|
99
|
+
width:940px;
|
100
|
+
}
|
101
|
+
.container .one-third.column {
|
102
|
+
width:300px;
|
103
|
+
}
|
104
|
+
.container .two-thirds.column {
|
105
|
+
width:620px;
|
106
|
+
}
|
107
|
+
/* Offsets */
|
108
|
+
.container .offset-by-one {
|
109
|
+
padding-left:60px;
|
110
|
+
}
|
111
|
+
.container .offset-by-two {
|
112
|
+
padding-left:120px;
|
113
|
+
}
|
114
|
+
.container .offset-by-three {
|
115
|
+
padding-left:180px;
|
116
|
+
}
|
117
|
+
.container .offset-by-four {
|
118
|
+
padding-left:240px;
|
119
|
+
}
|
120
|
+
.container .offset-by-five {
|
121
|
+
padding-left:300px;
|
122
|
+
}
|
123
|
+
.container .offset-by-six {
|
124
|
+
padding-left:360px;
|
125
|
+
}
|
126
|
+
.container .offset-by-seven {
|
127
|
+
padding-left:420px;
|
128
|
+
}
|
129
|
+
.container .offset-by-eight {
|
130
|
+
padding-left:480px;
|
131
|
+
}
|
132
|
+
.container .offset-by-nine {
|
133
|
+
padding-left:540px;
|
134
|
+
}
|
135
|
+
.container .offset-by-ten {
|
136
|
+
padding-left:600px;
|
137
|
+
}
|
138
|
+
.container .offset-by-eleven {
|
139
|
+
padding-left:660px;
|
140
|
+
}
|
141
|
+
.container .offset-by-twelve {
|
142
|
+
padding-left:720px;
|
143
|
+
}
|
144
|
+
.container .offset-by-thirteen {
|
145
|
+
padding-left:780px;
|
146
|
+
}
|
147
|
+
.container .offset-by-fourteen {
|
148
|
+
padding-left:840px;
|
149
|
+
}
|
150
|
+
.container .offset-by-fifteen {
|
151
|
+
padding-left:900px;
|
152
|
+
}
|
153
|
+
/* #Tablet (Portrait)
|
154
|
+
================================================== */
|
155
|
+
/* Note: Design for a width of 768px */
|
156
|
+
@media only screen and(min-width:768px)and(max-width:959px) {
|
157
|
+
.container {
|
158
|
+
width:768px;
|
159
|
+
}
|
160
|
+
.container .column, .container .columns {
|
161
|
+
margin-left:10px;
|
162
|
+
margin-right:10px;
|
163
|
+
}
|
164
|
+
.column.alpha, .columns.alpha {
|
165
|
+
margin-left:0;
|
166
|
+
margin-right:10px;
|
167
|
+
}
|
168
|
+
.column.omega, .columns.omega {
|
169
|
+
margin-right:0;
|
170
|
+
margin-left:10px;
|
171
|
+
}
|
172
|
+
.container .one.column {
|
173
|
+
width:28px;
|
174
|
+
}
|
175
|
+
.container .two.columns {
|
176
|
+
width:76px;
|
177
|
+
}
|
178
|
+
.container .three.columns {
|
179
|
+
width:124px;
|
180
|
+
}
|
181
|
+
.container .four.columns {
|
182
|
+
width:172px;
|
183
|
+
}
|
184
|
+
.container .five.columns {
|
185
|
+
width:220px;
|
186
|
+
}
|
187
|
+
.container .six.columns {
|
188
|
+
width:268px;
|
189
|
+
}
|
190
|
+
.container .seven.columns {
|
191
|
+
width:316px;
|
192
|
+
}
|
193
|
+
.container .eight.columns {
|
194
|
+
width:364px;
|
195
|
+
}
|
196
|
+
.container .nine.columns {
|
197
|
+
width:412px;
|
198
|
+
}
|
199
|
+
.container .ten.columns {
|
200
|
+
width:460px;
|
201
|
+
}
|
202
|
+
.container .eleven.columns {
|
203
|
+
width:508px;
|
204
|
+
}
|
205
|
+
.container .twelve.columns {
|
206
|
+
width:556px;
|
207
|
+
}
|
208
|
+
.container .thirteen.columns {
|
209
|
+
width:604px;
|
210
|
+
}
|
211
|
+
.container .fourteen.columns {
|
212
|
+
width:652px;
|
213
|
+
}
|
214
|
+
.container .fifteen.columns {
|
215
|
+
width:700px;
|
216
|
+
}
|
217
|
+
.container .sixteen.columns {
|
218
|
+
width:748px;
|
219
|
+
}
|
220
|
+
.container .one-third.column {
|
221
|
+
width:236px;
|
222
|
+
}
|
223
|
+
.container .two-thirds.column {
|
224
|
+
width:492px;
|
225
|
+
}
|
226
|
+
/* Offsets */
|
227
|
+
.container .offset-by-one {
|
228
|
+
padding-left:48px;
|
229
|
+
}
|
230
|
+
.container .offset-by-two {
|
231
|
+
padding-left:96px;
|
232
|
+
}
|
233
|
+
.container .offset-by-three {
|
234
|
+
padding-left:144px;
|
235
|
+
}
|
236
|
+
.container .offset-by-four {
|
237
|
+
padding-left:192px;
|
238
|
+
}
|
239
|
+
.container .offset-by-five {
|
240
|
+
padding-left:240px;
|
241
|
+
}
|
242
|
+
.container .offset-by-six {
|
243
|
+
padding-left:288px;
|
244
|
+
}
|
245
|
+
.container .offset-by-seven {
|
246
|
+
padding-left:336px;
|
247
|
+
}
|
248
|
+
.container .offset-by-eight {
|
249
|
+
padding-left:348px;
|
250
|
+
}
|
251
|
+
.container .offset-by-nine {
|
252
|
+
padding-left:432px;
|
253
|
+
}
|
254
|
+
.container .offset-by-ten {
|
255
|
+
padding-left:480px;
|
256
|
+
}
|
257
|
+
.container .offset-by-eleven {
|
258
|
+
padding-left:528px;
|
259
|
+
}
|
260
|
+
.container .offset-by-twelve {
|
261
|
+
padding-left:576px;
|
262
|
+
}
|
263
|
+
.container .offset-by-thirteen {
|
264
|
+
padding-left:624px;
|
265
|
+
}
|
266
|
+
.container .offset-by-fourteen {
|
267
|
+
padding-left:672px;
|
268
|
+
}
|
269
|
+
.container .offset-by-fifteen {
|
270
|
+
padding-left:720px;
|
271
|
+
}
|
272
|
+
}
|
273
|
+
/* #Mobile (Portrait)
|
274
|
+
================================================== */
|
275
|
+
/* Note: Design for a width of 320px */
|
276
|
+
@media only screen and(max-width:767px) {
|
277
|
+
.container {
|
278
|
+
width:300px;
|
279
|
+
}
|
280
|
+
.columns, .column {
|
281
|
+
margin:0;
|
282
|
+
}
|
283
|
+
.container .one.column, .container .two.columns, .container .three.columns, .container .four.columns, .container .five.columns, .container .six.columns, .container .seven.columns, .container .eight.columns, .container .nine.columns, .container .ten.columns, .container .eleven.columns, .container .twelve.columns, .container .thirteen.columns, .container .fourteen.columns, .container .fifteen.columns, .container .sixteen.columns, .container .one-third.column, .container .two-thirds.column {
|
284
|
+
width:300px;
|
285
|
+
}
|
286
|
+
/* Offsets */
|
287
|
+
.container .offset-by-one, .container .offset-by-two, .container .offset-by-three, .container .offset-by-four, .container .offset-by-five, .container .offset-by-six, .container .offset-by-seven, .container .offset-by-eight, .container .offset-by-nine, .container .offset-by-ten, .container .offset-by-eleven, .container .offset-by-twelve, .container .offset-by-thirteen, .container .offset-by-fourteen, .container .offset-by-fifteen {
|
288
|
+
padding-left:0;
|
289
|
+
}
|
290
|
+
}
|
291
|
+
/* #Mobile (Landscape)
|
292
|
+
================================================== */
|
293
|
+
/* Note: Design for a width of 480px */
|
294
|
+
@media only screen and(min-width:480px)and(max-width:767px) {
|
295
|
+
.container {
|
296
|
+
width:420px;
|
297
|
+
}
|
298
|
+
.columns, .column {
|
299
|
+
margin:0;
|
300
|
+
}
|
301
|
+
.container .one.column, .container .two.columns, .container .three.columns, .container .four.columns, .container .five.columns, .container .six.columns, .container .seven.columns, .container .eight.columns, .container .nine.columns, .container .ten.columns, .container .eleven.columns, .container .twelve.columns, .container .thirteen.columns, .container .fourteen.columns, .container .fifteen.columns, .container .sixteen.columns, .container .one-third.column, .container .two-thirds.column {
|
302
|
+
width:420px;
|
303
|
+
}
|
304
|
+
}
|
305
|
+
/* #Clearing
|
306
|
+
================================================== */
|
307
|
+
/* Self Clearing Goodness */
|
308
|
+
.container:after {
|
309
|
+
content:"\0020";
|
310
|
+
display:block;
|
311
|
+
height:0;
|
312
|
+
clear:both;
|
313
|
+
visibility:hidden;
|
314
|
+
}
|
315
|
+
/* Use clearfix class on parent to clear nested columns,
|
316
|
+
or wrap each row of columns in a <div class="row"> */
|
317
|
+
.clearfix:before, .clearfix:after, .row:before, .row:after {
|
318
|
+
content:'\0020';
|
319
|
+
display:block;
|
320
|
+
overflow:hidden;
|
321
|
+
visibility:hidden;
|
322
|
+
width:0;
|
323
|
+
height:0;
|
324
|
+
}
|
325
|
+
.row:after, .clearfix:after {
|
326
|
+
clear:both;
|
327
|
+
}
|
328
|
+
.row, .clearfix {
|
329
|
+
zoom:1;
|
330
|
+
}
|
331
|
+
/* You can also use a <br class="clear" /> to clear columns */
|
332
|
+
.clear {
|
333
|
+
clear:both;
|
334
|
+
display:block;
|
335
|
+
overflow:hidden;
|
336
|
+
visibility:hidden;
|
337
|
+
width:0;
|
338
|
+
height:0;
|
339
|
+
}
|
340
|
+
;
|
341
|
+
FI"asset_paths;
|
342
|
+
F["N/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/skeleton.cssI"dependency_paths;
|
343
|
+
F[{I" path;
|
344
|
+
F"N/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/skeleton.cssI"
|
345
|
+
mtime;
|
346
|
+
FIu: Time
|
347
|
+
:@_zoneI"EET;
|
348
|
+
T:
|
349
|
+
F"%ed4b188a929b5ba64065e363c06b7b6dI"
|
350
|
+
F"%46dde6621c301f4928e3b34efee9e3b5
|
@@ -0,0 +1,25 @@
|
|
1
|
+
o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1320234755.224721:@value{I"
|
2
|
+
class:EFI"BundledAsset;
|
3
|
+
FI"id;
|
4
|
+
F"%3e097119337b56d72c2b0a7f4e9cbe16I"logical_path;
|
5
|
+
FI"sooner/application.css;
|
6
|
+
TI"
|
7
|
+
F"Q/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/application.cssI"content_type;
|
8
|
+
FI"
|
9
|
+
FI"
|
10
|
+
mtime;
|
11
|
+
FI"2011-11-02T13:51:39+02:00;
|
12
|
+
FI" body;
|
13
|
+
FI"/*
|
14
|
+
*/
|
15
|
+
;
|
16
|
+
FI"asset_paths;
|
17
|
+
F["Q/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/application.cssI"dependency_paths;
|
18
|
+
F[{I" path;
|
19
|
+
F"Q/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/application.cssI"
|
20
|
+
mtime;
|
21
|
+
FIu: Time
|
22
|
+
:@_zoneI"EET;
|
23
|
+
T:
|
24
|
+
F"%7f1986a294cd386b8076d12afe8e15e8I"
|
25
|
+
F"%46dde6621c301f4928e3b34efee9e3b5
|
@@ -0,0 +1,115 @@
|
|
1
|
+
o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1320233018.3018904:@value{I"
|
2
|
+
class:EFI"BundledAsset;
|
3
|
+
FI"id;
|
4
|
+
F"%a4518aa63ed594c88728bf13b647501cI"logical_path;
|
5
|
+
F"sooner/layout.cssI"
|
6
|
+
F"L/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/layout.cssI"content_type;
|
7
|
+
FI"
|
8
|
+
FI"
|
9
|
+
mtime;
|
10
|
+
FI"2011-11-02T13:23:35+02:00;
|
11
|
+
FI" body;
|
12
|
+
FI"� /*
|
13
|
+
* Skeleton V1.1
|
14
|
+
* Copyright 2011, Dave Gamache
|
15
|
+
* www.getskeleton.com
|
16
|
+
* Free to use under the MIT license.
|
17
|
+
* http://www.opensource.org/licenses/mit-license.php
|
18
|
+
* 8/17/2011
|
19
|
+
*/
|
20
|
+
/* Table of Content
|
21
|
+
==================================================
|
22
|
+
#Site Styles
|
23
|
+
#Page Styles
|
24
|
+
#Media Queries
|
25
|
+
#Font-Face */
|
26
|
+
/* #Site Styles
|
27
|
+
================================================== */
|
28
|
+
/* #Page Styles
|
29
|
+
================================================== */
|
30
|
+
/* #Media Queries
|
31
|
+
================================================== */
|
32
|
+
/* Smaller than standard 960 (devices and browsers) */
|
33
|
+
|
34
|
+
@media only screen and(max-width:959px) {
|
35
|
+
body {
|
36
|
+
width:896px;
|
37
|
+
padding:72px 48px 84px;
|
38
|
+
background-color:rgb(232,232,232);
|
39
|
+
margin-left:auto;
|
40
|
+
margin-right:auto;
|
41
|
+
color:rgb(60,60,60);
|
42
|
+
-webkit-text-size-adjust:100%;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
/* Tablet Portrait size to standard 960 (devices and browsers) */
|
46
|
+
@media only screen and(min-width:768px)and(max-width:959px) {
|
47
|
+
body {
|
48
|
+
padding:72px 48px 84px;
|
49
|
+
background-color:rgb(232,232,232);
|
50
|
+
margin-left:auto;
|
51
|
+
margin-right:auto;
|
52
|
+
color:rgb(60,60,60);
|
53
|
+
-webkit-text-size-adjust:100%;
|
54
|
+
}
|
55
|
+
}
|
56
|
+
/* All Mobile Sizes (devices and browser) */
|
57
|
+
@media only screen and(max-width:767px) {
|
58
|
+
body {
|
59
|
+
padding:72px 48px 84px;
|
60
|
+
background-color:rgb(232,232,232);
|
61
|
+
margin-left:auto;
|
62
|
+
margin-right:auto;
|
63
|
+
color:rgb(60,60,60);
|
64
|
+
-webkit-text-size-adjust:100%;
|
65
|
+
}
|
66
|
+
}
|
67
|
+
/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
|
68
|
+
@media only screen and(min-width:480px)and(max-width:767px) {
|
69
|
+
body {
|
70
|
+
padding:72px 48px 84px;
|
71
|
+
background-color:rgb(232,232,232);
|
72
|
+
margin-left:auto;
|
73
|
+
margin-right:auto;
|
74
|
+
color:rgb(60,60,60);
|
75
|
+
-webkit-text-size-adjust:100%;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
|
79
|
+
@media only screen and(max-width:479px) {
|
80
|
+
body {
|
81
|
+
padding:72px 48px 84px;
|
82
|
+
background-color:rgb(232,232,232);
|
83
|
+
margin-left:auto;
|
84
|
+
margin-right:auto;
|
85
|
+
color:rgb(60,60,60);
|
86
|
+
-webkit-text-size-adjust:100%;
|
87
|
+
}
|
88
|
+
}
|
89
|
+
/* #Font-Face
|
90
|
+
================================================== */
|
91
|
+
/* This is the proper syntax for an @font-face file
|
92
|
+
Just create a "fonts" folder at the root,
|
93
|
+
copy your FontName into code below and remove
|
94
|
+
comment brackets */
|
95
|
+
/* @font-face {
|
96
|
+
font-family: 'FontName';
|
97
|
+
src: url('../fonts/FontName.eot');
|
98
|
+
src: url('../fonts/FontName.eot?iefix') format('eot'),
|
99
|
+
url('../fonts/FontName.woff') format('woff'),
|
100
|
+
url('../fonts/FontName.ttf') format('truetype'),
|
101
|
+
url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
|
102
|
+
font-weight: normal;
|
103
|
+
font-style: normal; }
|
104
|
+
*/
|
105
|
+
;
|
106
|
+
FI"asset_paths;
|
107
|
+
F["L/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/layout.cssI"dependency_paths;
|
108
|
+
F[{I" path;
|
109
|
+
F"L/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/layout.cssI"
|
110
|
+
mtime;
|
111
|
+
FIu: Time
|
112
|
+
:@_zoneI"EET;
|
113
|
+
T:
|
114
|
+
F"%141c31c8776edbb3f8df1fb05a5c27f3I"
|
115
|
+
F"%46dde6621c301f4928e3b34efee9e3b5
|