waterfall_bourbon_neat_rails 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,128 @@
1
+ // Reset SCSS
2
+ html, body, div, span, applet, object, iframe,
3
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
4
+ a, abbr, acronym, address, big, cite, code,
5
+ del, dfn, em, img, ins, kbd, q, s, samp,
6
+ small, strike, strong, sub, sup, tt, var,
7
+ b, u, i, center,
8
+ dl, dt, dd, ol, ul, li,
9
+ fieldset, form, label, legend,
10
+ table, caption, tbody, tfoot, thead, tr, th, td,
11
+ article, aside, canvas, details, embed,
12
+ figure, figcaption, footer, header, hgroup,
13
+ main, menu, nav, output, ruby, section, summary,
14
+ time, mark, audio, video {
15
+ border: 0;
16
+ font-size: 100%;
17
+ font-weight: inherit;
18
+ font-style: inherit;
19
+ font-family: inherit;
20
+ margin: 0;
21
+ outline: 0;
22
+ padding: 0;
23
+ vertical-align: baseline; }
24
+
25
+ // Correct `block` display not defined in IE 8/9.
26
+ article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary{ display: block; }
27
+
28
+ // Correct `inline-block` display not defined in IE 8/9.
29
+ // Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
30
+ audio, canvas, progress, video { display: inline-block; vertical-align: baseline; }
31
+
32
+
33
+ // Prevent modern browsers from displaying `audio` without controls.
34
+ // Remove excess height in iOS 5 devices.
35
+ audio:not([controls]) { display: none; height: 0; }
36
+
37
+ // Address `[hidden]` styling not present in IE 8/9.
38
+ // Hide the `template` element in IE, Safari, and Firefox < 22.
39
+ [hidden], template { display: none; }
40
+
41
+ // Remove the gray background color from active links in IE 10.
42
+ a { background: transparent; }
43
+
44
+ // Improve readability when focused and also mouse hovered in all browsers.
45
+ a:active, a:hover { outline: none; }
46
+
47
+ // Address styling not present in Safari 5 and Chrome.
48
+ dfn { font-style: italic; }
49
+
50
+ // Address styling not present in IE 8/9.
51
+ mark { background: #ff0; color: #000; }
52
+
53
+ // Prevent `sub` and `sup` affecting `line-height` in all browsers.
54
+
55
+ sub,
56
+ sup {
57
+ font-size: 75%;
58
+ line-height: 0;
59
+ position: relative;
60
+ vertical-align: baseline; }
61
+
62
+ sup { top: -0.5em; }
63
+ sub { bottom: -0.25em; }
64
+
65
+ // Correct overflow displayed oddly in IE 9.
66
+ svg:not(:root) { overflow: hidden; }
67
+
68
+ // Address differences between Firefox and other browsers.
69
+ hr {
70
+ -moz-box-sizing: content-box;
71
+ box-sizing: content-box;
72
+ height: 0; }
73
+
74
+ // Contain overflow in all browsers.
75
+ pre { overflow: auto; }
76
+
77
+
78
+ // Address odd `em`-unit font size rendering in all browsers.
79
+ code, kbd, pre, samp {
80
+ font-family: monospace, monospace;
81
+ font-size: 1em; }
82
+
83
+
84
+ // 1. Correct color not being inherited.
85
+ // Known issue: affects color of disabled elements.
86
+ // 2. Correct font properties not being inherited.
87
+ // 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
88
+ button,
89
+ input,
90
+ optgroup,
91
+ select,
92
+ textarea {
93
+ color: inherit; /* 1 */
94
+ font: inherit; /* 2 */
95
+ margin: 0; /* 3 */ }
96
+
97
+ // Re-set default cursor for disabled elements.
98
+ button[disabled], html input[disabled], input[disabled] { cursor: default; }
99
+
100
+ button::-moz-focus-inner,
101
+ input::-moz-focus-inner {
102
+ border: 0;
103
+ padding: 0; }
104
+
105
+ input[type="checkbox"],
106
+ input[type="radio"] {
107
+ box-sizing: border-box;
108
+ padding: 0; }
109
+
110
+ input[type="number"]::-webkit-inner-spin-button,
111
+ input[type="number"]::-webkit-outer-spin-button { height: auto; }
112
+
113
+ input[type="search"] {
114
+ -webkit-appearance: textfield; /* 1 */
115
+ -moz-box-sizing: content-box;
116
+ -webkit-box-sizing: content-box; /* 2 */
117
+ box-sizing: content-box; }
118
+
119
+ input[type="search"]::-webkit-search-cancel-button,
120
+ input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
121
+
122
+ optgroup { font-weight: bold; }
123
+
124
+ table {
125
+ border-collapse: collapse;
126
+ border-spacing: 0; }
127
+
128
+ td, th { padding: 0; }
@@ -0,0 +1,7 @@
1
+ @import "variables";
2
+ @import "functions";
3
+ @import "mixins";
4
+ // @import "reset";
5
+ // @import "base";
6
+ @import "components";
7
+ @import "pages";
@@ -0,0 +1,58 @@
1
+ $base-value: 14;
2
+ $baseColor: #000;
3
+ $primaryFontFamily: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
4
+
5
+
6
+ //**** Neat Grid ****
7
+ $max-width: em(960, $base-value); // Max width of outer container
8
+
9
+ //**** Breakpoints ****
10
+ $desktop: min-width 850px;
11
+ $tablet: min-width 750px;
12
+ $tablet-only: min-width 750px max-width 849px;
13
+ $mobile-only: max-width 749px;
14
+
15
+ //**** Colors ****
16
+ $black: #111111;
17
+ $blue: #0e3651;
18
+ $gray: #999999;
19
+ $green: #46a546;
20
+ $red: #9d261d;
21
+ $yellow: #fe9800;
22
+ $orange: #da6b11;
23
+ $pink: #c3325f;
24
+ $purple: #7a43b6;
25
+ $white: #ffffff;
26
+
27
+ //constant colors
28
+
29
+ $medium_grey: #3A3C41;
30
+ $medium_blue: #0F4F88;
31
+ $medium_red: #FF3030;
32
+
33
+ $light_blue: #4f91cd;
34
+ $light_grey_op: rgba(240,240,240,0.6);
35
+
36
+ $sky_blue: #A8C7E3;
37
+
38
+ //constant values - colors
39
+
40
+ $container_color_1: $medium_blue; //used for header and footer
41
+ $container_color_2: $light_grey_op; //used for content
42
+
43
+ $font_field_color: $medium_grey;
44
+ $font_input_color: $light_blue;
45
+ $font_error_color: $medium_red;
46
+ $font_link_color_1: $medium_blue;
47
+ $font_link_color_2: $sky_blue;
48
+
49
+ $actionColor: $medium_blue;
50
+
51
+ // constant values - sizes
52
+
53
+ $default_border_radius: 5px;
54
+ $default_font_size: 1em;
55
+ $default_font_color: #000;
56
+ $default_font_weight: normal;
57
+
58
+ $breakpoint-alpha: 980px; // adjust to your needs - used for the landing page table
@@ -0,0 +1,14 @@
1
+ Evitam nesting.
2
+
3
+ Ex:
4
+ <ul class="list1">
5
+ <li class="list1-item"></li>
6
+ </ul>
7
+
8
+ when we select element using css selector we don;t use nesting, else max 1 level
9
+
10
+ .list1{
11
+ .list1-item{
12
+
13
+ }
14
+ }
@@ -5,5 +5,4 @@ footer#main-footer {
5
5
  background-color: #252525;
6
6
  color: #FFF;
7
7
  padding: 10px;
8
- text-align: center;
9
8
  }
@@ -7,5 +7,6 @@
7
7
  @import "partials/flash";
8
8
  @import "partials/nav";
9
9
  @import "partials/footer";
10
+ @import 'custom/style';
10
11
  // @import "jquery.autocomplete";
11
12
  // include only jquery-ui modules that are needed
@@ -1,3 +1,3 @@
1
1
  module WaterfallBourbonNeatRails
2
- VERSION = "0.1.6".freeze
2
+ VERSION = "0.1.7".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: waterfall_bourbon_neat_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Waterfall Software Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-17 00:00:00.000000000 Z
11
+ date: 2014-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -198,6 +198,15 @@ files:
198
198
  - app/assets/stylesheets/base/extends/_clearfix.scss
199
199
  - app/assets/stylesheets/base/extends/_hide-text.scss
200
200
  - app/assets/stylesheets/base/mixins/_flash.scss
201
+ - app/assets/stylesheets/custom/_base.scss
202
+ - app/assets/stylesheets/custom/_components.scss
203
+ - app/assets/stylesheets/custom/_functions.scss
204
+ - app/assets/stylesheets/custom/_mixins.scss
205
+ - app/assets/stylesheets/custom/_pages.scss
206
+ - app/assets/stylesheets/custom/_reset.scss
207
+ - app/assets/stylesheets/custom/_style.scss
208
+ - app/assets/stylesheets/custom/_variables.scss
209
+ - app/assets/stylesheets/custom/rules.txt
201
210
  - app/assets/stylesheets/normalize/README.md
202
211
  - app/assets/stylesheets/normalize/component.json
203
212
  - app/assets/stylesheets/normalize/normalize.css