pondasee 1.0.rc.2
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +2 -0
- data/README.mkdn +2 -0
- data/VERSION +1 -0
- data/lib/pondasee.rb +1 -0
- data/stylesheets/_pondasee.scss +12 -0
- data/stylesheets/pondasee/_mixins.scss +63 -0
- data/stylesheets/pondasee/_settings.scss +3 -0
- data/stylesheets/pondasee/_variable.scss +97 -0
- data/stylesheets/pondasee/base.scss +24 -0
- data/stylesheets/pondasee/font-awesome.scss +295 -0
- data/stylesheets/pondasee/forms.scss +345 -0
- data/stylesheets/pondasee/grid.scss +37 -0
- data/stylesheets/pondasee/images.scss +168 -0
- data/stylesheets/pondasee/media-queries.scss +56 -0
- data/stylesheets/pondasee/mixins/_basic-buttons.scss +158 -0
- data/stylesheets/pondasee/mixins/_fonts.scss +31 -0
- data/stylesheets/pondasee/mixins/_helper.scss +56 -0
- data/stylesheets/pondasee/mixins/_simple-responsive-grid.scss +66 -0
- data/stylesheets/pondasee/mixins/_zurb-button.scss +105 -0
- data/stylesheets/pondasee/reset.scss +72 -0
- data/stylesheets/pondasee/table.scss +40 -0
- data/stylesheets/pondasee/typography.scss +217 -0
- data/stylesheets/pondasee/utilities.scss +181 -0
- data/templates/project/config.rb +46 -0
- data/templates/project/fonts/fontawesome-webfont.eot +0 -0
- data/templates/project/fonts/fontawesome-webfont.svg +255 -0
- data/templates/project/fonts/fontawesome-webfont.ttf +0 -0
- data/templates/project/fonts/fontawesome-webfont.woff +0 -0
- data/templates/project/humans.txt +42 -0
- data/templates/project/img/button.png +0 -0
- data/templates/project/img/overlay-button.png +0 -0
- data/templates/project/img/select_arrow.gif +0 -0
- data/templates/project/index.html +67 -0
- data/templates/project/js/methods.js +3 -0
- data/templates/project/js/plugins.js +21 -0
- data/templates/project/js/vendor/jquery-1.7.2.min.js +4 -0
- data/templates/project/js/vendor/modernizr-2.5.3.min.js +4 -0
- data/templates/project/js/vendor/nwmatcher-1.2.5-min.js +7 -0
- data/templates/project/js/vendor/selectivizr-min.js +5 -0
- data/templates/project/manifest.rb +52 -0
- data/templates/project/sass/partials/_base.scss +5 -0
- data/templates/project/sass/partials/_font-awesome.scss +5 -0
- data/templates/project/sass/partials/_forms.scss +5 -0
- data/templates/project/sass/partials/_grid.scss +6 -0
- data/templates/project/sass/partials/_ie.scss +7 -0
- data/templates/project/sass/partials/_images.scss +5 -0
- data/templates/project/sass/partials/_main.scss +12 -0
- data/templates/project/sass/partials/_media-queries.scss +6 -0
- data/templates/project/sass/partials/_mixins.scss +7 -0
- data/templates/project/sass/partials/_plugins.scss +4 -0
- data/templates/project/sass/partials/_reset.scss +5 -0
- data/templates/project/sass/partials/_table.scss +5 -0
- data/templates/project/sass/partials/_typography.scss +5 -0
- data/templates/project/sass/partials/_utilities.scss +5 -0
- data/templates/project/sass/partials/main/_footer.scss +10 -0
- data/templates/project/sass/partials/main/_header.scss +10 -0
- data/templates/project/sass/partials/main/_menus.scss +12 -0
- data/templates/project/sass/skins/default.scss +11 -0
- data/templates/project/sass/style.scss +120 -0
- data/templates/project/skins/default.css +3 -0
- data/templates/project/style.css +0 -0
- metadata +137 -0
@@ -0,0 +1,217 @@
|
|
1
|
+
/* HEADING
|
2
|
+
----------------- */
|
3
|
+
#{headings(all)} {
|
4
|
+
@include ff-heading;
|
5
|
+
font-weight: bold;
|
6
|
+
}
|
7
|
+
|
8
|
+
h1 {
|
9
|
+
font-size: 36px;
|
10
|
+
line-height: 1.3em;
|
11
|
+
}
|
12
|
+
|
13
|
+
h2 {
|
14
|
+
font-size: 24px;
|
15
|
+
line-height: 1.3em;
|
16
|
+
}
|
17
|
+
|
18
|
+
h3 {
|
19
|
+
font-size: 18px;
|
20
|
+
line-height: 1.5em;
|
21
|
+
}
|
22
|
+
|
23
|
+
h4 {
|
24
|
+
font-size: 16px;
|
25
|
+
line-height: 1.5em;
|
26
|
+
}
|
27
|
+
|
28
|
+
h5 {
|
29
|
+
font-size: 14px;
|
30
|
+
line-height: 1.5em;
|
31
|
+
}
|
32
|
+
|
33
|
+
h6 {
|
34
|
+
font-size: 14px;
|
35
|
+
line-height: 1.5em;
|
36
|
+
}
|
37
|
+
|
38
|
+
/* TEXT ELEMENT
|
39
|
+
----------------- */
|
40
|
+
p {
|
41
|
+
margin: 0 0 rhythm() // output 1.5em;
|
42
|
+
}
|
43
|
+
|
44
|
+
em {
|
45
|
+
font-style: italic;
|
46
|
+
}
|
47
|
+
|
48
|
+
b,
|
49
|
+
strong {
|
50
|
+
font-weight: bold;
|
51
|
+
}
|
52
|
+
|
53
|
+
small {
|
54
|
+
font-size: 85%;
|
55
|
+
}
|
56
|
+
|
57
|
+
cite {
|
58
|
+
font-style: normal;
|
59
|
+
}
|
60
|
+
|
61
|
+
dfn {
|
62
|
+
font-style: italic;
|
63
|
+
font-weight: bold;
|
64
|
+
}
|
65
|
+
|
66
|
+
sub,
|
67
|
+
sup {
|
68
|
+
font-size: 75%;
|
69
|
+
line-height: 0;
|
70
|
+
position: relative;
|
71
|
+
}
|
72
|
+
|
73
|
+
sup {
|
74
|
+
top: -0.5em;
|
75
|
+
vertical-align: sub;
|
76
|
+
}
|
77
|
+
|
78
|
+
sub {
|
79
|
+
bottom: -0.25em;
|
80
|
+
vertical-align: super;
|
81
|
+
}
|
82
|
+
|
83
|
+
abbr,
|
84
|
+
acronym {
|
85
|
+
font-size: 90%;
|
86
|
+
text-transform: uppercase;
|
87
|
+
border-bottom: 1px dotted $grayLight;
|
88
|
+
cursor: help;
|
89
|
+
}
|
90
|
+
|
91
|
+
del {
|
92
|
+
color: $grayDark;
|
93
|
+
text-decoration: line-through;
|
94
|
+
vertical-align: baseline;
|
95
|
+
}
|
96
|
+
|
97
|
+
pre {
|
98
|
+
background: #ffff99;
|
99
|
+
border-bottom: 1px solid #ff2;
|
100
|
+
border-top: 1px solid #ff2;
|
101
|
+
color: #990;
|
102
|
+
margin: 1.5em 0;
|
103
|
+
padding: rhythm(.5) rhythm(.3);
|
104
|
+
@include force-wrap;
|
105
|
+
}
|
106
|
+
|
107
|
+
code {
|
108
|
+
background: #ffff99;
|
109
|
+
color: #990;
|
110
|
+
font-size: 11px;
|
111
|
+
line-height: 1.2em;
|
112
|
+
padding: rhythm(.2);
|
113
|
+
}
|
114
|
+
|
115
|
+
pre,
|
116
|
+
code,
|
117
|
+
kbd,
|
118
|
+
samp,
|
119
|
+
tt {
|
120
|
+
font-family: $consolas;
|
121
|
+
}
|
122
|
+
|
123
|
+
ins {
|
124
|
+
text-decoration: underline;
|
125
|
+
}
|
126
|
+
|
127
|
+
mark {
|
128
|
+
background: #ff0;
|
129
|
+
color: #990;
|
130
|
+
font-size: 11px;
|
131
|
+
}
|
132
|
+
|
133
|
+
/* BLOCKQUOTE
|
134
|
+
----------------- */
|
135
|
+
blockquote {
|
136
|
+
border-left: 3px solid $grayLighter;
|
137
|
+
color: $grayDark;
|
138
|
+
font-style: italic;
|
139
|
+
font-family: $georgia;
|
140
|
+
margin: 1em 40px;
|
141
|
+
padding-left: rhythm(.9);
|
142
|
+
|
143
|
+
em,
|
144
|
+
i,
|
145
|
+
cite {
|
146
|
+
font-style: normal;
|
147
|
+
}
|
148
|
+
cite {
|
149
|
+
color: $blackLighter;
|
150
|
+
display: block;
|
151
|
+
padding: 10px 0 0 20px;
|
152
|
+
position: relative;
|
153
|
+
&:before {
|
154
|
+
content: '\2014';
|
155
|
+
left: 0;
|
156
|
+
position: absolute;
|
157
|
+
}
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
q:before,
|
162
|
+
q:after,
|
163
|
+
blockquote:before,
|
164
|
+
blockquote:after {
|
165
|
+
content: "";
|
166
|
+
}
|
167
|
+
|
168
|
+
address {
|
169
|
+
display: block;
|
170
|
+
margin: 0 0 1.5em;
|
171
|
+
font-style: italic;
|
172
|
+
}
|
173
|
+
|
174
|
+
/* LISTS
|
175
|
+
----------------- */
|
176
|
+
ul,
|
177
|
+
ol {
|
178
|
+
margin: 1em 0;
|
179
|
+
padding: 0 0 0 rhythm(1.5);
|
180
|
+
}
|
181
|
+
|
182
|
+
ul {
|
183
|
+
list-style: disc;
|
184
|
+
}
|
185
|
+
|
186
|
+
ol {
|
187
|
+
list-style-type: decimal;
|
188
|
+
}
|
189
|
+
|
190
|
+
ol ol {
|
191
|
+
list-style: upper-alpha;
|
192
|
+
}
|
193
|
+
|
194
|
+
ol ol ol {
|
195
|
+
list-style: lower-roman;
|
196
|
+
}
|
197
|
+
|
198
|
+
ol ol ol ol {
|
199
|
+
list-style: lower-alpha;
|
200
|
+
}
|
201
|
+
|
202
|
+
li ul,
|
203
|
+
li ol {
|
204
|
+
margin: 0;
|
205
|
+
}
|
206
|
+
|
207
|
+
dl {
|
208
|
+
margin: 0 1.625em;
|
209
|
+
}
|
210
|
+
|
211
|
+
dt {
|
212
|
+
font-weight: bold;
|
213
|
+
}
|
214
|
+
|
215
|
+
dd {
|
216
|
+
margin-bottom: 1.625em;
|
217
|
+
}
|
@@ -0,0 +1,181 @@
|
|
1
|
+
/* CLEARFIX
|
2
|
+
http://nicolasgallagher.com/micro-clearfix-hack/
|
3
|
+
----------------- */
|
4
|
+
.clearfix:before,
|
5
|
+
.clearfix:after {
|
6
|
+
content: "";
|
7
|
+
display: table;
|
8
|
+
}
|
9
|
+
|
10
|
+
.clearfix:after {
|
11
|
+
clear: both;
|
12
|
+
}
|
13
|
+
|
14
|
+
.clearfix {
|
15
|
+
*zoom: 1;
|
16
|
+
}
|
17
|
+
|
18
|
+
/* CLEAR ELEMENT
|
19
|
+
----------------- */
|
20
|
+
.clear {
|
21
|
+
clear: both;
|
22
|
+
display: block;
|
23
|
+
overflow: hidden;
|
24
|
+
visibility: hidden;
|
25
|
+
width: 0;
|
26
|
+
height: 0;
|
27
|
+
}
|
28
|
+
|
29
|
+
/* IMAGE REPLACEMENT
|
30
|
+
----------------- */
|
31
|
+
.ir {
|
32
|
+
border:0;
|
33
|
+
font: 0/0 a;
|
34
|
+
text-shadow: none;
|
35
|
+
color: transparent;
|
36
|
+
background-color: transparent;
|
37
|
+
}
|
38
|
+
|
39
|
+
/* HIDE/SHOW ELEMENT
|
40
|
+
----------------- */
|
41
|
+
.hide {
|
42
|
+
display: none;
|
43
|
+
visibility: hidden;
|
44
|
+
}
|
45
|
+
|
46
|
+
.show {
|
47
|
+
display: block;
|
48
|
+
visibility: visible;
|
49
|
+
}
|
50
|
+
|
51
|
+
.invisible {
|
52
|
+
visibility: hidden;
|
53
|
+
}
|
54
|
+
|
55
|
+
.visuallyhidden {
|
56
|
+
border: 0;
|
57
|
+
clip: rect(0 0 0 0);
|
58
|
+
height: 1px;
|
59
|
+
margin: -1px;
|
60
|
+
overflow: hidden;
|
61
|
+
padding: 0;
|
62
|
+
position: absolute;
|
63
|
+
width: 1px;
|
64
|
+
}
|
65
|
+
|
66
|
+
.visuallyhidden.focusable {
|
67
|
+
&:active,
|
68
|
+
&:focus {
|
69
|
+
clip: auto;
|
70
|
+
height: auto;
|
71
|
+
margin: 0;
|
72
|
+
overflow: visible;
|
73
|
+
position: static;
|
74
|
+
width: auto;
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
/* FLOATING ALIGNMENT
|
79
|
+
----------------- */
|
80
|
+
.alignleft {
|
81
|
+
@include float(left);
|
82
|
+
margin-right: rhythm(); // output 1.5em
|
83
|
+
}
|
84
|
+
|
85
|
+
.alignright {
|
86
|
+
@include float(right);
|
87
|
+
margin-left: rhythm(); // output 1.5em
|
88
|
+
}
|
89
|
+
|
90
|
+
.aligncenter {
|
91
|
+
clear: both;
|
92
|
+
@include center-block;
|
93
|
+
}
|
94
|
+
|
95
|
+
.alignnone{
|
96
|
+
display: block;
|
97
|
+
}
|
98
|
+
|
99
|
+
/* QUICK FLOAT
|
100
|
+
----------------- */
|
101
|
+
.fr {
|
102
|
+
@include float(right);
|
103
|
+
}
|
104
|
+
|
105
|
+
.fl {
|
106
|
+
@include float(left);
|
107
|
+
}
|
108
|
+
|
109
|
+
.fn {
|
110
|
+
@include reset-float;
|
111
|
+
}
|
112
|
+
|
113
|
+
/* TEXT ALIGNMENT
|
114
|
+
----------------- */
|
115
|
+
.left {
|
116
|
+
text-align: left
|
117
|
+
}
|
118
|
+
|
119
|
+
.right {
|
120
|
+
text-align: right;
|
121
|
+
}
|
122
|
+
|
123
|
+
.center {
|
124
|
+
text-align: center;
|
125
|
+
}
|
126
|
+
|
127
|
+
/* HR/STANDALONE BORDER
|
128
|
+
----------------- */
|
129
|
+
hr {
|
130
|
+
border-top: 1px solid $borderColor;
|
131
|
+
border-bottom: 0;
|
132
|
+
border-right: 0;
|
133
|
+
border-left: 0;
|
134
|
+
clear: both;
|
135
|
+
height: 1px;
|
136
|
+
margin: rhythm() 0;
|
137
|
+
min-height: 0;
|
138
|
+
|
139
|
+
&.dotted {
|
140
|
+
border-style: dotted;
|
141
|
+
}
|
142
|
+
&.dashed {
|
143
|
+
border-style: dashed;
|
144
|
+
}
|
145
|
+
&.darkborder {
|
146
|
+
border-color: $black
|
147
|
+
}
|
148
|
+
&.lightborder {
|
149
|
+
border-color: $white;
|
150
|
+
}
|
151
|
+
}
|
152
|
+
|
153
|
+
/* MISC CLASSES
|
154
|
+
----------------- */
|
155
|
+
.first {
|
156
|
+
margin-left: 0;
|
157
|
+
padding-left: 0;
|
158
|
+
}
|
159
|
+
|
160
|
+
.last {
|
161
|
+
margin-right: 0;
|
162
|
+
padding-right: 0;
|
163
|
+
}
|
164
|
+
|
165
|
+
.top {
|
166
|
+
margin-top: 0;
|
167
|
+
padding-top: 0;
|
168
|
+
}
|
169
|
+
|
170
|
+
.bottom {
|
171
|
+
margin-bottom: 0;
|
172
|
+
padding-bottom: 0;
|
173
|
+
}
|
174
|
+
|
175
|
+
/* Text meant only for screen readers
|
176
|
+
----------------- */
|
177
|
+
.assistive-text {
|
178
|
+
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
179
|
+
clip: rect(1px, 1px, 1px, 1px);
|
180
|
+
position: absolute !important;
|
181
|
+
}
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# COMPASS
|
2
|
+
# ----------------------------------------------
|
3
|
+
# Configuration: http://compass-style.org/help/tutorials/configuration-reference/
|
4
|
+
#
|
5
|
+
# ----------------------------------------------
|
6
|
+
# PRODUCTION
|
7
|
+
# compass compile -e production -s compressed --no-line-comments --force --trace --time
|
8
|
+
#
|
9
|
+
|
10
|
+
# Require any additional compass plugins here.
|
11
|
+
require 'pondasee'
|
12
|
+
|
13
|
+
# Can be :stand_alone or :rails. Defaults to :stand_alone
|
14
|
+
project_type = :stand_alone
|
15
|
+
|
16
|
+
# paths
|
17
|
+
# Set this to the root of your project when deployed:
|
18
|
+
http_path = "/"
|
19
|
+
css_dir = "/"
|
20
|
+
sass_dir = "sass"
|
21
|
+
images_dir = "img"
|
22
|
+
javascripts_dir = "js"
|
23
|
+
|
24
|
+
# You can select your preferred output style here (can be overridden via the command line):
|
25
|
+
# output option: nested, expanded, compact, compressed
|
26
|
+
output_style = :expanded
|
27
|
+
|
28
|
+
# The environment mode.
|
29
|
+
# Defaults to :production, can also be :development
|
30
|
+
# Use :development to see line numbers, file names, etc
|
31
|
+
environment = :production
|
32
|
+
|
33
|
+
# To disable debugging comments that display the original location of your selectors. Uncomment:
|
34
|
+
line_comments = false
|
35
|
+
|
36
|
+
# To enable relative paths to assets via compass helper functions. Uncomment:
|
37
|
+
relative_assets = true
|
38
|
+
|
39
|
+
# disable the asset cache buster
|
40
|
+
asset_cache_buster :none
|
41
|
+
|
42
|
+
# If you prefer the indented syntax, you might want to regenerate this
|
43
|
+
# project again passing --syntax sass, or you can uncomment this:
|
44
|
+
# preferred_syntax = :sass
|
45
|
+
# and then run:
|
46
|
+
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
|
Binary file
|