mindy 0.1

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.
@@ -0,0 +1,229 @@
1
+ @import "mixins";
2
+ @import "variables";
3
+
4
+ /* ----------------------------------------------------------------- XHTML, HTML4, HTML5 Reset -- */
5
+ * {
6
+ @include reset-spacing;
7
+ }
8
+
9
+ a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption,
10
+ center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure,
11
+ font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label,
12
+ legend, li, mark, menu, meter, nav, object, ol, output, p, pre, progress, q, rp, rt, ruby, s, samp,
13
+ section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr,
14
+ tt, u, ul, var, video, xmp {
15
+ @include reset-spacing;
16
+ border: 0;
17
+ @include reset-fonts;
18
+ vertical-align: baseline;
19
+ -moz-font-feature-settings: inherit;
20
+ -moz-font-language-override: inherit;
21
+ }
22
+
23
+ html {
24
+ @include reset-spacing;
25
+ border: 0;
26
+ }
27
+
28
+ html, body {
29
+ height: 100%;
30
+ }
31
+
32
+ /* Line-height should always be unitless! */
33
+ body {
34
+ line-height: $line-height;
35
+ background-color: #fff;
36
+ -webkit-text-size-adjust: 100%;
37
+ -ms-text-size-adjust: 100%;
38
+ }
39
+
40
+ /* Override the default (display: inline) for browsers that do not recognize HTML5 tags. IE8 (and lower) requires a shiv: http://ejohn.org/blog/html5-shiv */
41
+ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
42
+ display: block;
43
+ }
44
+
45
+ /* audio, video and canvas (display: inline-block) for browsers that do not recognoze HTML5 tags */
46
+ audio, canvas, video {
47
+ display: inline-block;
48
+ *display: inline;
49
+ *zoom: 1;
50
+ }
51
+
52
+ audio:not([controls]) {
53
+ display: none;
54
+ }
55
+
56
+ [hidden] {
57
+ display: none;
58
+ }
59
+
60
+ /* Makes browsers agree. IE + Opera = font-weight: bold. Gecko + WebKit = font-weight: bolder. */
61
+ b, strong {
62
+ font-weight: bold;
63
+ }
64
+
65
+ /* Tables still need 'cellspacing="0"' in the markup. */
66
+ table {
67
+ /*border-collapse: separate;*/
68
+ border-collapse: collapse;
69
+ border-spacing: 0;
70
+ }
71
+
72
+ /* float:none prevents the span-x classes from breaking table-cell display */
73
+ th, td, caption {
74
+ font-weight: normal;
75
+ /*vertical-align: middle;*/
76
+ vertical-align: top;
77
+ text-align: left;
78
+ float: none !important;
79
+ }
80
+
81
+ /* Remove possible quote marks (") from <q>, <blockquote>. */
82
+ blockquote:before, blockquote:after, q:before, q:after {
83
+ content: '';
84
+ }
85
+
86
+ blockquote, q {
87
+ quotes: "" "";
88
+ /*quotes: none;*/
89
+ }
90
+
91
+ sub, sup, small {
92
+ font-size: 75%;
93
+ }
94
+
95
+ sub, sup {
96
+ line-height: 0;
97
+ position: relative;
98
+ vertical-align: baseline;
99
+ }
100
+
101
+ sub {
102
+ bottom: -0.25em;
103
+ }
104
+
105
+ sup {
106
+ top: -0.5em;
107
+ }
108
+
109
+ /* For IE9. Without, occasionally draws shapes outside the boundaries of <svg> rectangle. */
110
+ svg {
111
+ overflow: hidden;
112
+ }
113
+
114
+ svg:not(:root) {
115
+ overflow: hidden;
116
+ }
117
+
118
+ /* Remove annoying border on linked images. */
119
+ a img {
120
+ border: none;
121
+ }
122
+
123
+ /* For IE. http://css-tricks.com/ie-fix-bicubic-scaling-for-images */
124
+ img {
125
+ color: transparent;
126
+ font-size: 0;
127
+ vertical-align: middle;
128
+ -ms-interpolation-mode: bicubic;
129
+ }
130
+
131
+ /* For IE6 + IE7: "display: list-item" keeps bullets from disappearing if hasLayout is triggered. */
132
+ li {
133
+ display: list-item;
134
+ margin-left: 0;
135
+ }
136
+
137
+ /* Remember to define your own focus styles! */
138
+ :focus {
139
+ outline: 0;
140
+ }
141
+
142
+ button,
143
+ textarea,
144
+ select,
145
+ input[type="button"],
146
+ input[type="submit"],
147
+ input[type="reset"],
148
+ input[type="date"],
149
+ input[type="datetime"],
150
+ input[type="datetime-local"],
151
+ input[type="email"],
152
+ input[type="month"],
153
+ input[type="number"],
154
+ input[type="password"],
155
+ input[type="search"],
156
+ input[type="tel"],
157
+ input[type="text"],
158
+ input[type="time"],
159
+ input[type="url"],
160
+ input[type="week"],
161
+ optgroup {
162
+ @include reset-fonts;
163
+ @include reset-spacing;
164
+ outline: 0;
165
+ vertical-align: baseline;
166
+ *vertical-align: middle;
167
+ }
168
+
169
+ optgroup {
170
+ color: black;
171
+ font-weight: bold;
172
+ }
173
+
174
+ optgroup::-moz-focus-inner {
175
+ @include reset-spacing;
176
+ }
177
+
178
+ /* Selection colours (easy to forget) */
179
+ ::selection {
180
+ background: $selection;
181
+ }
182
+
183
+ ::-moz-selection {
184
+ background: $selection;
185
+ }
186
+
187
+ img::selection {
188
+ background: transparent;
189
+ }
190
+
191
+ img::-moz-selection {
192
+ background: transparent;
193
+ }
194
+
195
+ body {
196
+ -webkit-tap-highlight-color: rgb(255, 255, 158);
197
+ }
198
+
199
+ pre, code, kbd, samp {
200
+ font-family: Monaco, monospace, serif;
201
+ _font-family: 'courier new', monospace;
202
+ font-size: 1em;
203
+ }
204
+
205
+ pre {
206
+ white-space: pre;
207
+ white-space: pre-wrap;
208
+ word-wrap: break-word;
209
+ }
210
+
211
+ /*input:valid, textarea:valid { }*/
212
+ /*input:invalid, textarea:invalid { background-color: #f0dddd; }*/
213
+
214
+ legend {
215
+ border: 0;
216
+ padding: 0;
217
+ *margin-left: -7px;
218
+ white-space: normal;
219
+ }
220
+
221
+ /* ----------------------------------------------------------------- XHTML, HTML4, HTML5 Reset -- */
222
+
223
+ .clear {
224
+ clear: both;
225
+ height: 0;
226
+ visibility: hidden;
227
+ display: block;
228
+ font-size: 0;
229
+ }
@@ -0,0 +1,2 @@
1
+ $line-height: 1.8 !default;
2
+ $selection: rgb(180, 213, 255) !default;
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mindy
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ version: "0.1"
9
+ platform: ruby
10
+ authors:
11
+ - Falaleev Maxim
12
+ autorequire:
13
+ bindir: bin
14
+ cert_chain: []
15
+
16
+ date: 2012-09-09 00:00:00 +04:00
17
+ default_executable:
18
+ dependencies:
19
+ - !ruby/object:Gem::Dependency
20
+ name: compass
21
+ prerelease: false
22
+ requirement: &id001 !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ segments:
27
+ - 0
28
+ - 11
29
+ - 5
30
+ version: 0.11.5
31
+ type: :runtime
32
+ version_requirements: *id001
33
+ description: Highly configurable CSS Framework written in Sass.
34
+ email: max@studio107.ru
35
+ executables: []
36
+
37
+ extensions: []
38
+
39
+ extra_rdoc_files: []
40
+
41
+ files:
42
+ - ABOUT.mdown
43
+ - lib/mindy.rb
44
+ - stylesheets/mindy/_mindy.scss
45
+ - stylesheets/mindy/css3/_animate.scss
46
+ - stylesheets/mindy/css3/_buttons.scss
47
+ - stylesheets/mindy/css3/_buttons_refactor.scss
48
+ - stylesheets/mindy/css3/_font-family.scss
49
+ - stylesheets/mindy/css3/_formalize.scss
50
+ - stylesheets/mindy/css3/_multi_line_buttons.sass
51
+ - stylesheets/mindy/css3/_shadow.scss
52
+ - stylesheets/mindy/grid/_grid.scss
53
+ - stylesheets/mindy/grid/_respond.scss
54
+ - stylesheets/mindy/utils/_deprecated.scss
55
+ - stylesheets/mindy/utils/_mixins.scss
56
+ - stylesheets/mindy/utils/_reset.scss
57
+ - stylesheets/mindy/utils/_variables.scss
58
+ has_rdoc: true
59
+ homepage: http://mindy-sass.com/
60
+ licenses: []
61
+
62
+ post_install_message:
63
+ rdoc_options: []
64
+
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ segments:
72
+ - 0
73
+ version: "0"
74
+ required_rubygems_version: !ruby/object:Gem::Requirement
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ segments:
79
+ - 1
80
+ - 3
81
+ - 6
82
+ version: 1.3.6
83
+ requirements: []
84
+
85
+ rubyforge_project: nowarning
86
+ rubygems_version: 1.3.6
87
+ signing_key:
88
+ specification_version: 3
89
+ summary: Grid Coordinates is a highly configurable CSS Framework written in Sass.
90
+ test_files: []
91
+