pondasee 1.0 → 1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/stylesheets/_pondasee.scss +1 -12
- data/templates/project/manifest.rb +25 -18
- data/templates/project/sass/partials/_base.scss +24 -1
- data/templates/project/sass/partials/_font-awesome.scss +295 -1
- data/templates/project/sass/partials/_grid.scss +37 -1
- data/templates/project/sass/partials/_images.scss +168 -1
- data/templates/project/sass/partials/_media-queries.scss +56 -1
- data/templates/project/sass/partials/_mixins.scss +61 -5
- data/templates/project/sass/partials/_reset.scss +72 -1
- data/templates/project/sass/partials/_table.scss +40 -1
- data/templates/project/sass/partials/_typography.scss +217 -1
- data/templates/project/sass/partials/_utilities.scss +187 -1
- metadata +7 -19
- data/stylesheets/pondasee/_mixins.scss +0 -63
- data/stylesheets/pondasee/_settings.scss +0 -3
- data/stylesheets/pondasee/base.scss +0 -24
- data/stylesheets/pondasee/font-awesome.scss +0 -295
- data/stylesheets/pondasee/forms.scss +0 -345
- data/stylesheets/pondasee/grid.scss +0 -37
- data/stylesheets/pondasee/images.scss +0 -168
- data/stylesheets/pondasee/media-queries.scss +0 -56
- data/stylesheets/pondasee/reset.scss +0 -72
- data/stylesheets/pondasee/table.scss +0 -40
- data/stylesheets/pondasee/typography.scss +0 -217
- data/stylesheets/pondasee/utilities.scss +0 -181
- /data/{stylesheets/pondasee → templates/project/sass/partials}/_variable.scss +0 -0
- /data/{stylesheets/pondasee → templates/project/sass/partials}/mixins/_basic-buttons.scss +0 -0
- /data/{stylesheets/pondasee → templates/project/sass/partials}/mixins/_fonts.scss +0 -0
- /data/{stylesheets/pondasee → templates/project/sass/partials}/mixins/_helper.scss +0 -0
- /data/{stylesheets/pondasee → templates/project/sass/partials}/mixins/_simple-responsive-grid.scss +0 -0
- /data/{stylesheets/pondasee → templates/project/sass/partials}/mixins/_zurb-button.scss +0 -0
@@ -1,7 +1,63 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
@import 'mixins/helper';
|
2
|
+
@import 'mixins/basic-buttons';
|
3
|
+
@import 'mixins/zurb-button';
|
4
|
+
@import 'mixins/fonts';
|
5
|
+
@import 'mixins/simple-responsive-grid';
|
4
6
|
|
5
|
-
|
7
|
+
// Mixin for set up the baseline
|
8
|
+
// Customize version from:
|
9
|
+
// http://compass-style.org/reference/compass/typography/vertical_rhythm/#mixin-establish-baseline
|
10
|
+
// ------------------
|
11
|
+
@mixin establish-baseline($font-size: $base-font-size) {
|
12
|
+
// IE 6 refuses to resize fonts set in pixels and it weirdly resizes fonts
|
13
|
+
// whose root is set in ems. So we set the root font size in percentages of
|
14
|
+
// the default font size.
|
15
|
+
* html {
|
16
|
+
font-size: 100% * ($font-size / $browser-default-font-size);
|
17
|
+
}
|
18
|
+
html {
|
19
|
+
font-size: $font-size;
|
20
|
+
@include adjust-leading-to(1, if($relative-font-sizing, $font-size, $base-font-size));
|
21
|
+
overflow-y: scroll; /* Keeps page centred in all browsers regardless of content height */
|
22
|
+
-ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
|
23
|
+
-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
|
24
|
+
-webkit-font-smoothing: antialiased; /* http://maxvoltar.com/archive/-Webkit-font-smoothing */
|
25
|
+
}
|
26
|
+
body {
|
27
|
+
background: $backgroundColor;
|
28
|
+
color: $fontColor;
|
29
|
+
@include ff-text;
|
30
|
+
text-rendering: optimizeLegibility; /* http://aestheticallyloyal.com/public/optimize-legibility/ */
|
31
|
+
}
|
32
|
+
}
|
6
33
|
|
7
|
-
//
|
34
|
+
// Border Radius
|
35
|
+
// Modifed version from http://compass-style.org/reference/compass/css3/border_radius/
|
36
|
+
// -o- and -ms- vendor prefix not exist for border radius
|
37
|
+
$default-rad: 5px !default;
|
38
|
+
|
39
|
+
@mixin border-radius($rad: $default-rad) {
|
40
|
+
-webkit-border-radius : $rad;
|
41
|
+
-moz-border-radius : $rad;
|
42
|
+
border-radius : $rad;
|
43
|
+
}
|
44
|
+
|
45
|
+
// Mixin for cross browser inline-block
|
46
|
+
// http://blog.mozilla.org/webdev/2009/02/20/cross-browser-inline-block/
|
47
|
+
// ------------------
|
48
|
+
@mixin inline-block {
|
49
|
+
display: -moz-inline-stack;
|
50
|
+
-moz-box-orient: vertical;
|
51
|
+
display: inline-block;
|
52
|
+
*display: inline;
|
53
|
+
vertical-align: top;
|
54
|
+
*zoom: 1;
|
55
|
+
}
|
56
|
+
|
57
|
+
// Mixin for cross browser opacity
|
58
|
+
// http://css3please.com/
|
59
|
+
// ------------------
|
60
|
+
@mixin opacity($opacity) {
|
61
|
+
opacity: $opacity; // Chrome 4+, FF2+, Saf3.1+, Opera 9+, IE9, iOS 3.2+, Android 2.1+
|
62
|
+
filter: alpha(opacity=$opacity * 100); // IE6-IE8
|
63
|
+
}
|
@@ -2,4 +2,75 @@
|
|
2
2
|
// Simpler version of Normalize.css + Eric Meyer Reset
|
3
3
|
// =================================================================================
|
4
4
|
|
5
|
-
|
5
|
+
html, body, div, span, applet, object, iframe,
|
6
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
7
|
+
a, abbr, acronym, address, big, cite, code,
|
8
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
9
|
+
small, strike, strong, sub, sup, tt, var,
|
10
|
+
b, u, i, center,
|
11
|
+
dl, dt, dd, ol, ul, li,
|
12
|
+
fieldset, form, label, legend,
|
13
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
14
|
+
article, aside, canvas, details, embed,
|
15
|
+
figure, figcaption, footer, header, hgroup,
|
16
|
+
menu, nav, output, ruby, section, summary,
|
17
|
+
time, mark, audio, video {
|
18
|
+
margin: 0;
|
19
|
+
padding: 0;
|
20
|
+
border: 0;
|
21
|
+
font: inherit;
|
22
|
+
vertical-align: baseline;
|
23
|
+
}
|
24
|
+
|
25
|
+
article, aside, details, figcaption, figure, footer,
|
26
|
+
header, hgroup, nav, section, summary {
|
27
|
+
display: block;
|
28
|
+
}
|
29
|
+
|
30
|
+
audio, canvas, video {
|
31
|
+
@include inline-block;
|
32
|
+
}
|
33
|
+
|
34
|
+
audio:not([controls]),
|
35
|
+
[hidden] {
|
36
|
+
display: none;
|
37
|
+
}
|
38
|
+
|
39
|
+
a:focus {
|
40
|
+
@include tab-focus;
|
41
|
+
}
|
42
|
+
|
43
|
+
nav ul,
|
44
|
+
nav ol {
|
45
|
+
@include reset-list;
|
46
|
+
}
|
47
|
+
|
48
|
+
img {
|
49
|
+
border: 0;
|
50
|
+
max-width: 100%;
|
51
|
+
-ms-interpolation-mode: bicubic;
|
52
|
+
vertical-align: middle;
|
53
|
+
}
|
54
|
+
|
55
|
+
svg:not(:root) {
|
56
|
+
overflow: hidden;
|
57
|
+
}
|
58
|
+
|
59
|
+
button::-moz-focus-inner,
|
60
|
+
input::-moz-focus-inner {
|
61
|
+
border: 0;
|
62
|
+
padding: 0;
|
63
|
+
}
|
64
|
+
|
65
|
+
input[type="radio"] {
|
66
|
+
vertical-align: text-bottom;
|
67
|
+
}
|
68
|
+
|
69
|
+
input[type="checkbox"] {
|
70
|
+
vertical-align: text-bottom;
|
71
|
+
}
|
72
|
+
|
73
|
+
table {
|
74
|
+
border-collapse: collapse;
|
75
|
+
border-spacing: 0;
|
76
|
+
}
|
@@ -2,4 +2,43 @@
|
|
2
2
|
// basic table styles
|
3
3
|
// =================================================================================
|
4
4
|
|
5
|
-
|
5
|
+
/* STANDARD TABLE
|
6
|
+
----------------- */
|
7
|
+
table {
|
8
|
+
font-size: 12px;
|
9
|
+
max-width: 100%;
|
10
|
+
width: 100%;
|
11
|
+
}
|
12
|
+
|
13
|
+
table,
|
14
|
+
td {
|
15
|
+
border: 1px solid #e8e8e8;
|
16
|
+
border-collapse: collapse;
|
17
|
+
margin: rhythm() 0;
|
18
|
+
padding: 5px 10px;
|
19
|
+
}
|
20
|
+
|
21
|
+
th {
|
22
|
+
background-color: #e8e8e8;
|
23
|
+
border-right: 1px solid #e0e0e0;
|
24
|
+
color: #666;
|
25
|
+
margin: 5px 0 10px;
|
26
|
+
padding: 5px 10px;
|
27
|
+
text-transform: uppercase;
|
28
|
+
text-align: left;
|
29
|
+
}
|
30
|
+
|
31
|
+
table button,
|
32
|
+
table input {
|
33
|
+
*overflow: auto;
|
34
|
+
}
|
35
|
+
|
36
|
+
/* STRIPE TABLE
|
37
|
+
----------------- */
|
38
|
+
table.striped {
|
39
|
+
tr {
|
40
|
+
&:nth-child(odd) {
|
41
|
+
background-color: #f9f9f9;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
@@ -2,4 +2,220 @@
|
|
2
2
|
// Super basic typography styles
|
3
3
|
// =================================================================================
|
4
4
|
|
5
|
-
|
5
|
+
/* HEADING
|
6
|
+
----------------- */
|
7
|
+
#{headings(all)} {
|
8
|
+
@include ff-heading;
|
9
|
+
font-weight: bold;
|
10
|
+
}
|
11
|
+
|
12
|
+
h1 {
|
13
|
+
font-size: 36px;
|
14
|
+
line-height: 1.3em;
|
15
|
+
}
|
16
|
+
|
17
|
+
h2 {
|
18
|
+
font-size: 24px;
|
19
|
+
line-height: 1.3em;
|
20
|
+
}
|
21
|
+
|
22
|
+
h3 {
|
23
|
+
font-size: 18px;
|
24
|
+
line-height: 1.5em;
|
25
|
+
}
|
26
|
+
|
27
|
+
h4 {
|
28
|
+
font-size: 16px;
|
29
|
+
line-height: 1.5em;
|
30
|
+
}
|
31
|
+
|
32
|
+
h5 {
|
33
|
+
font-size: 14px;
|
34
|
+
line-height: 1.5em;
|
35
|
+
}
|
36
|
+
|
37
|
+
h6 {
|
38
|
+
font-size: 14px;
|
39
|
+
line-height: 1.5em;
|
40
|
+
}
|
41
|
+
|
42
|
+
/* TEXT ELEMENT
|
43
|
+
----------------- */
|
44
|
+
p {
|
45
|
+
margin: 0 0 rhythm() // output 1.5em;
|
46
|
+
}
|
47
|
+
|
48
|
+
em {
|
49
|
+
font-style: italic;
|
50
|
+
}
|
51
|
+
|
52
|
+
b,
|
53
|
+
strong {
|
54
|
+
font-weight: bold;
|
55
|
+
}
|
56
|
+
|
57
|
+
small {
|
58
|
+
font-size: 85%;
|
59
|
+
}
|
60
|
+
|
61
|
+
cite {
|
62
|
+
font-style: normal;
|
63
|
+
}
|
64
|
+
|
65
|
+
dfn {
|
66
|
+
font-style: italic;
|
67
|
+
font-weight: bold;
|
68
|
+
}
|
69
|
+
|
70
|
+
sub,
|
71
|
+
sup {
|
72
|
+
font-size: 75%;
|
73
|
+
line-height: 0;
|
74
|
+
position: relative;
|
75
|
+
}
|
76
|
+
|
77
|
+
sup {
|
78
|
+
top: -0.5em;
|
79
|
+
vertical-align: sub;
|
80
|
+
}
|
81
|
+
|
82
|
+
sub {
|
83
|
+
bottom: -0.25em;
|
84
|
+
vertical-align: super;
|
85
|
+
}
|
86
|
+
|
87
|
+
abbr,
|
88
|
+
acronym {
|
89
|
+
font-size: 90%;
|
90
|
+
text-transform: uppercase;
|
91
|
+
border-bottom: 1px dotted $grayLight;
|
92
|
+
cursor: help;
|
93
|
+
}
|
94
|
+
|
95
|
+
del {
|
96
|
+
color: $grayDark;
|
97
|
+
text-decoration: line-through;
|
98
|
+
vertical-align: baseline;
|
99
|
+
}
|
100
|
+
|
101
|
+
pre {
|
102
|
+
background: #ffff99;
|
103
|
+
border-bottom: 1px solid #ff2;
|
104
|
+
border-top: 1px solid #ff2;
|
105
|
+
color: #990;
|
106
|
+
margin: 1.5em 0;
|
107
|
+
padding: rhythm(.5) rhythm(.3);
|
108
|
+
@include force-wrap;
|
109
|
+
}
|
110
|
+
|
111
|
+
code {
|
112
|
+
background: #ffff99;
|
113
|
+
color: #990;
|
114
|
+
font-size: 11px;
|
115
|
+
line-height: 1.2em;
|
116
|
+
padding: rhythm(.2);
|
117
|
+
}
|
118
|
+
|
119
|
+
pre,
|
120
|
+
code,
|
121
|
+
kbd,
|
122
|
+
samp,
|
123
|
+
tt {
|
124
|
+
font-family: $consolas;
|
125
|
+
}
|
126
|
+
|
127
|
+
ins {
|
128
|
+
text-decoration: underline;
|
129
|
+
}
|
130
|
+
|
131
|
+
mark {
|
132
|
+
background: #ff0;
|
133
|
+
color: #990;
|
134
|
+
font-size: 11px;
|
135
|
+
}
|
136
|
+
|
137
|
+
/* BLOCKQUOTE
|
138
|
+
----------------- */
|
139
|
+
blockquote {
|
140
|
+
border-left: 3px solid $grayLighter;
|
141
|
+
color: $grayDark;
|
142
|
+
font-style: italic;
|
143
|
+
font-family: $georgia;
|
144
|
+
margin: 1em 40px;
|
145
|
+
padding-left: rhythm(.9);
|
146
|
+
|
147
|
+
em,
|
148
|
+
i,
|
149
|
+
cite {
|
150
|
+
font-style: normal;
|
151
|
+
}
|
152
|
+
cite {
|
153
|
+
color: $blackLighter;
|
154
|
+
display: block;
|
155
|
+
padding: 10px 0 0 20px;
|
156
|
+
position: relative;
|
157
|
+
&:before {
|
158
|
+
content: '\2014';
|
159
|
+
left: 0;
|
160
|
+
position: absolute;
|
161
|
+
}
|
162
|
+
}
|
163
|
+
}
|
164
|
+
|
165
|
+
q:before,
|
166
|
+
q:after,
|
167
|
+
blockquote:before,
|
168
|
+
blockquote:after {
|
169
|
+
content: "";
|
170
|
+
}
|
171
|
+
|
172
|
+
address {
|
173
|
+
display: block;
|
174
|
+
margin: 0 0 1.5em;
|
175
|
+
font-style: italic;
|
176
|
+
}
|
177
|
+
|
178
|
+
/* LISTS
|
179
|
+
----------------- */
|
180
|
+
ul,
|
181
|
+
ol {
|
182
|
+
margin: 1em 0;
|
183
|
+
padding: 0 0 0 rhythm(1.5);
|
184
|
+
}
|
185
|
+
|
186
|
+
ul {
|
187
|
+
list-style: disc;
|
188
|
+
}
|
189
|
+
|
190
|
+
ol {
|
191
|
+
list-style-type: decimal;
|
192
|
+
}
|
193
|
+
|
194
|
+
ol ol {
|
195
|
+
list-style: upper-alpha;
|
196
|
+
}
|
197
|
+
|
198
|
+
ol ol ol {
|
199
|
+
list-style: lower-roman;
|
200
|
+
}
|
201
|
+
|
202
|
+
ol ol ol ol {
|
203
|
+
list-style: lower-alpha;
|
204
|
+
}
|
205
|
+
|
206
|
+
li ul,
|
207
|
+
li ol {
|
208
|
+
margin: 0;
|
209
|
+
}
|
210
|
+
|
211
|
+
dl {
|
212
|
+
margin: 0 1.625em;
|
213
|
+
}
|
214
|
+
|
215
|
+
dt {
|
216
|
+
font-weight: bold;
|
217
|
+
}
|
218
|
+
|
219
|
+
dd {
|
220
|
+
margin-bottom: 1.625em;
|
221
|
+
}
|
@@ -2,4 +2,190 @@
|
|
2
2
|
// Custom & helper classes
|
3
3
|
// =================================================================================
|
4
4
|
|
5
|
-
|
5
|
+
/* CLEARFIX
|
6
|
+
http://nicolasgallagher.com/micro-clearfix-hack/
|
7
|
+
----------------- */
|
8
|
+
.clearfix:before,
|
9
|
+
.clearfix:after {
|
10
|
+
content: "";
|
11
|
+
display: table;
|
12
|
+
}
|
13
|
+
|
14
|
+
.clearfix:after {
|
15
|
+
clear: both;
|
16
|
+
}
|
17
|
+
|
18
|
+
.clearfix {
|
19
|
+
*zoom: 1;
|
20
|
+
}
|
21
|
+
|
22
|
+
/* CLEAR ELEMENT
|
23
|
+
----------------- */
|
24
|
+
.clear {
|
25
|
+
clear: both;
|
26
|
+
display: block;
|
27
|
+
overflow: hidden;
|
28
|
+
visibility: hidden;
|
29
|
+
width: 0;
|
30
|
+
height: 0;
|
31
|
+
}
|
32
|
+
|
33
|
+
/* INLINE-BLOCK
|
34
|
+
----------------- */
|
35
|
+
.iblock {
|
36
|
+
@include inline-block;
|
37
|
+
}
|
38
|
+
|
39
|
+
/* IMAGE REPLACEMENT
|
40
|
+
----------------- */
|
41
|
+
.ir {
|
42
|
+
border:0;
|
43
|
+
font: 0/0 a;
|
44
|
+
text-shadow: none;
|
45
|
+
color: transparent;
|
46
|
+
background-color: transparent;
|
47
|
+
}
|
48
|
+
|
49
|
+
/* HIDE/SHOW ELEMENT
|
50
|
+
----------------- */
|
51
|
+
.hide {
|
52
|
+
display: none;
|
53
|
+
visibility: hidden;
|
54
|
+
}
|
55
|
+
|
56
|
+
.show {
|
57
|
+
display: block;
|
58
|
+
visibility: visible;
|
59
|
+
}
|
60
|
+
|
61
|
+
.invisible {
|
62
|
+
visibility: hidden;
|
63
|
+
}
|
64
|
+
|
65
|
+
.visuallyhidden {
|
66
|
+
border: 0;
|
67
|
+
clip: rect(0 0 0 0);
|
68
|
+
height: 1px;
|
69
|
+
margin: -1px;
|
70
|
+
overflow: hidden;
|
71
|
+
padding: 0;
|
72
|
+
position: absolute;
|
73
|
+
width: 1px;
|
74
|
+
}
|
75
|
+
|
76
|
+
.visuallyhidden.focusable {
|
77
|
+
&:active,
|
78
|
+
&:focus {
|
79
|
+
clip: auto;
|
80
|
+
height: auto;
|
81
|
+
margin: 0;
|
82
|
+
overflow: visible;
|
83
|
+
position: static;
|
84
|
+
width: auto;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
/* FLOATING ALIGNMENT
|
89
|
+
----------------- */
|
90
|
+
.alignleft {
|
91
|
+
@include float(left);
|
92
|
+
margin-right: rhythm(); // output 1.5em
|
93
|
+
}
|
94
|
+
|
95
|
+
.alignright {
|
96
|
+
@include float(right);
|
97
|
+
margin-left: rhythm(); // output 1.5em
|
98
|
+
}
|
99
|
+
|
100
|
+
.aligncenter {
|
101
|
+
clear: both;
|
102
|
+
@include center-block;
|
103
|
+
}
|
104
|
+
|
105
|
+
.alignnone{
|
106
|
+
display: block;
|
107
|
+
}
|
108
|
+
|
109
|
+
/* QUICK FLOAT
|
110
|
+
----------------- */
|
111
|
+
.fr {
|
112
|
+
@include float(right);
|
113
|
+
}
|
114
|
+
|
115
|
+
.fl {
|
116
|
+
@include float(left);
|
117
|
+
}
|
118
|
+
|
119
|
+
.fn {
|
120
|
+
@include reset-float;
|
121
|
+
}
|
122
|
+
|
123
|
+
/* TEXT ALIGNMENT
|
124
|
+
----------------- */
|
125
|
+
.left {
|
126
|
+
text-align: left
|
127
|
+
}
|
128
|
+
|
129
|
+
.right {
|
130
|
+
text-align: right;
|
131
|
+
}
|
132
|
+
|
133
|
+
.center {
|
134
|
+
text-align: center;
|
135
|
+
}
|
136
|
+
|
137
|
+
/* HR/STANDALONE BORDER
|
138
|
+
----------------- */
|
139
|
+
hr {
|
140
|
+
border-top: 1px solid $borderColor;
|
141
|
+
border-bottom: 0;
|
142
|
+
border-right: 0;
|
143
|
+
border-left: 0;
|
144
|
+
clear: both;
|
145
|
+
height: 1px;
|
146
|
+
margin: rhythm() 0;
|
147
|
+
min-height: 0;
|
148
|
+
|
149
|
+
&.dotted {
|
150
|
+
border-style: dotted;
|
151
|
+
}
|
152
|
+
&.dashed {
|
153
|
+
border-style: dashed;
|
154
|
+
}
|
155
|
+
&.darkborder {
|
156
|
+
border-color: $black
|
157
|
+
}
|
158
|
+
&.lightborder {
|
159
|
+
border-color: $white;
|
160
|
+
}
|
161
|
+
}
|
162
|
+
|
163
|
+
/* MISC CLASSES
|
164
|
+
----------------- */
|
165
|
+
.first {
|
166
|
+
margin-left: 0;
|
167
|
+
padding-left: 0;
|
168
|
+
}
|
169
|
+
|
170
|
+
.last {
|
171
|
+
margin-right: 0;
|
172
|
+
padding-right: 0;
|
173
|
+
}
|
174
|
+
|
175
|
+
.top {
|
176
|
+
margin-top: 0;
|
177
|
+
padding-top: 0;
|
178
|
+
}
|
179
|
+
|
180
|
+
.bottom {
|
181
|
+
margin-bottom: 0;
|
182
|
+
padding-bottom: 0;
|
183
|
+
}
|
184
|
+
|
185
|
+
/* Text meant only for screen readers
|
186
|
+
----------------- */
|
187
|
+
.assistive-text {
|
188
|
+
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
|
189
|
+
clip: rect(1px, 1px, 1px, 1px);
|
190
|
+
position: absolute !important;
|
191
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pondasee
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '1.
|
4
|
+
version: '1.1'
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -53,24 +53,6 @@ files:
|
|
53
53
|
- LICENSE
|
54
54
|
- VERSION
|
55
55
|
- lib/pondasee.rb
|
56
|
-
- stylesheets/pondasee/base.scss
|
57
|
-
- stylesheets/pondasee/font-awesome.scss
|
58
|
-
- stylesheets/pondasee/forms.scss
|
59
|
-
- stylesheets/pondasee/grid.scss
|
60
|
-
- stylesheets/pondasee/images.scss
|
61
|
-
- stylesheets/pondasee/media-queries.scss
|
62
|
-
- stylesheets/pondasee/mixins/_basic-buttons.scss
|
63
|
-
- stylesheets/pondasee/mixins/_fonts.scss
|
64
|
-
- stylesheets/pondasee/mixins/_helper.scss
|
65
|
-
- stylesheets/pondasee/mixins/_simple-responsive-grid.scss
|
66
|
-
- stylesheets/pondasee/mixins/_zurb-button.scss
|
67
|
-
- stylesheets/pondasee/reset.scss
|
68
|
-
- stylesheets/pondasee/table.scss
|
69
|
-
- stylesheets/pondasee/typography.scss
|
70
|
-
- stylesheets/pondasee/utilities.scss
|
71
|
-
- stylesheets/pondasee/_mixins.scss
|
72
|
-
- stylesheets/pondasee/_settings.scss
|
73
|
-
- stylesheets/pondasee/_variable.scss
|
74
56
|
- stylesheets/_pondasee.scss
|
75
57
|
- templates/project/config-custom.rb
|
76
58
|
- templates/project/fonts/fontawesome-webfont.eot
|
@@ -92,6 +74,11 @@ files:
|
|
92
74
|
- templates/project/sass/partials/main/_footer.scss
|
93
75
|
- templates/project/sass/partials/main/_header.scss
|
94
76
|
- templates/project/sass/partials/main/_menus.scss
|
77
|
+
- templates/project/sass/partials/mixins/_basic-buttons.scss
|
78
|
+
- templates/project/sass/partials/mixins/_fonts.scss
|
79
|
+
- templates/project/sass/partials/mixins/_helper.scss
|
80
|
+
- templates/project/sass/partials/mixins/_simple-responsive-grid.scss
|
81
|
+
- templates/project/sass/partials/mixins/_zurb-button.scss
|
95
82
|
- templates/project/sass/partials/_base.scss
|
96
83
|
- templates/project/sass/partials/_font-awesome.scss
|
97
84
|
- templates/project/sass/partials/_forms.scss
|
@@ -106,6 +93,7 @@ files:
|
|
106
93
|
- templates/project/sass/partials/_table.scss
|
107
94
|
- templates/project/sass/partials/_typography.scss
|
108
95
|
- templates/project/sass/partials/_utilities.scss
|
96
|
+
- templates/project/sass/partials/_variable.scss
|
109
97
|
- templates/project/sass/skins/default.scss
|
110
98
|
- templates/project/sass/style.scss
|
111
99
|
- templates/project/skins/default.css
|
@@ -1,63 +0,0 @@
|
|
1
|
-
@import 'mixins/helper';
|
2
|
-
@import 'mixins/basic-buttons';
|
3
|
-
@import 'mixins/zurb-button';
|
4
|
-
@import 'mixins/fonts';
|
5
|
-
@import 'mixins/simple-responsive-grid';
|
6
|
-
|
7
|
-
// Mixin for set up the baseline
|
8
|
-
// Customize version from:
|
9
|
-
// http://compass-style.org/reference/compass/typography/vertical_rhythm/#mixin-establish-baseline
|
10
|
-
// ------------------
|
11
|
-
@mixin establish-baseline($font-size: $base-font-size) {
|
12
|
-
// IE 6 refuses to resize fonts set in pixels and it weirdly resizes fonts
|
13
|
-
// whose root is set in ems. So we set the root font size in percentages of
|
14
|
-
// the default font size.
|
15
|
-
* html {
|
16
|
-
font-size: 100% * ($font-size / $browser-default-font-size);
|
17
|
-
}
|
18
|
-
html {
|
19
|
-
font-size: $font-size;
|
20
|
-
@include adjust-leading-to(1, if($relative-font-sizing, $font-size, $base-font-size));
|
21
|
-
overflow-y: scroll; /* Keeps page centred in all browsers regardless of content height */
|
22
|
-
-ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
|
23
|
-
-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
|
24
|
-
-webkit-font-smoothing: antialiased; /* http://maxvoltar.com/archive/-Webkit-font-smoothing */
|
25
|
-
}
|
26
|
-
body {
|
27
|
-
background: $backgroundColor;
|
28
|
-
color: $fontColor;
|
29
|
-
@include ff-text;
|
30
|
-
text-rendering: optimizeLegibility; /* http://aestheticallyloyal.com/public/optimize-legibility/ */
|
31
|
-
}
|
32
|
-
}
|
33
|
-
|
34
|
-
// Border Radius
|
35
|
-
// Modifed version from http://compass-style.org/reference/compass/css3/border_radius/
|
36
|
-
// -o- and -ms- vendor prefix not exist for border radius
|
37
|
-
$default-rad: 5px !default;
|
38
|
-
|
39
|
-
@mixin border-radius($rad: $default-rad) {
|
40
|
-
-webkit-border-radius : $rad;
|
41
|
-
-moz-border-radius : $rad;
|
42
|
-
border-radius : $rad;
|
43
|
-
}
|
44
|
-
|
45
|
-
// Mixin for cross browser inline-block
|
46
|
-
// http://blog.mozilla.org/webdev/2009/02/20/cross-browser-inline-block/
|
47
|
-
// ------------------
|
48
|
-
@mixin inline-block {
|
49
|
-
display: -moz-inline-stack;
|
50
|
-
-moz-box-orient: vertical;
|
51
|
-
display: inline-block;
|
52
|
-
*display: inline;
|
53
|
-
vertical-align: top;
|
54
|
-
*zoom: 1;
|
55
|
-
}
|
56
|
-
|
57
|
-
// Mixin for cross browser opacity
|
58
|
-
// http://css3please.com/
|
59
|
-
// ------------------
|
60
|
-
@mixin opacity($opacity) {
|
61
|
-
opacity: $opacity; // Chrome 4+, FF2+, Saf3.1+, Opera 9+, IE9, iOS 3.2+, Android 2.1+
|
62
|
-
filter: alpha(opacity=$opacity * 100); // IE6-IE8
|
63
|
-
}
|