Sassifaction 0.0.2 → 0.0.3

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.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/lib/Sassifaction.rb +6 -0
  3. data/sass/_Sassifaction.scss +1 -0
  4. data/sass/_variables.scss +91 -0
  5. data/sass/base/_bizarro.scss +248 -0
  6. data/sass/base/_debug.scss +170 -0
  7. data/sass/base/_fonts.scss +20 -0
  8. data/sass/base/_helpers.scss +60 -0
  9. data/sass/base/_mixins.scss +18 -0
  10. data/sass/base/_print.scss +75 -0
  11. data/sass/base/mixins/_BEM.scss +16 -0
  12. data/sass/base/mixins/_IE7-padding.scss +31 -0
  13. data/sass/base/mixins/_border-radius.scss +32 -0
  14. data/sass/base/mixins/_children-of-ie.scss +11 -0
  15. data/sass/base/mixins/_colors.scss +58 -0
  16. data/sass/base/mixins/_maths.scss +34 -0
  17. data/sass/base/mixins/_media-queries.scss +67 -0
  18. data/sass/base/mixins/_misc.scss +40 -0
  19. data/sass/base/mixins/_placeholder.scss +14 -0
  20. data/sass/base/mixins/_rwd-padding-margin.scss +52 -0
  21. data/sass/base/mixins/_shapes.scss +24 -0
  22. data/sass/base/mixins/_tint-and-shade.scss +39 -0
  23. data/sass/base/mixins/_triangles.scss +23 -0
  24. data/sass/base/mixins/_typography.scss +91 -0
  25. data/sass/partials/buttons/_buttons.scss +137 -0
  26. data/sass/partials/colors/_colors.scss +58 -0
  27. data/sass/partials/components/_alerts.scss +59 -0
  28. data/sass/partials/components/_horizontal-rules.scss +46 -0
  29. data/sass/partials/components/_labels.scss +53 -0
  30. data/sass/partials/components/_tooltips.scss +0 -0
  31. data/sass/partials/components/_wells.scss +20 -0
  32. data/sass/partials/forms/_big-form.scss +125 -0
  33. data/sass/partials/forms/_search-form.scss +35 -0
  34. data/sass/partials/images/_base64.scss +17 -0
  35. data/sass/partials/images/_figure.scss +23 -0
  36. data/sass/partials/images/_images.scss +25 -0
  37. data/sass/partials/layout/_aside.scss +12 -0
  38. data/sass/partials/layout/_base.scss +22 -0
  39. data/sass/partials/layout/_footer.scss +12 -0
  40. data/sass/partials/layout/_grids.scss +8 -0
  41. data/sass/partials/layout/_header.scss +12 -0
  42. data/sass/partials/layout/_main.scss +12 -0
  43. data/sass/partials/lists/_dl.scss +26 -0
  44. data/sass/partials/lists/_ol.scss +34 -0
  45. data/sass/partials/lists/_ul.scss +35 -0
  46. data/sass/partials/media-object/_media-object.scss +34 -0
  47. data/sass/partials/modules/_modules.scss +8 -0
  48. data/sass/partials/modules/_skipnav.scss +21 -0
  49. data/sass/partials/navigation/_breadcrumbs.scss +30 -0
  50. data/sass/partials/navigation/_nav.scss +43 -0
  51. data/sass/partials/navigation/_pagination.scss +32 -0
  52. data/sass/partials/site-specific/_scratch.scss +8 -0
  53. data/sass/partials/site-specific/_shame.scss +29 -0
  54. data/sass/partials/tables/_table.scss +51 -0
  55. data/sass/partials/typography/_blockquotes.scss +25 -0
  56. data/sass/partials/typography/_body-copy.scss +24 -0
  57. data/sass/partials/typography/_code.scss +24 -0
  58. data/sass/partials/typography/_copy-classes.scss +37 -0
  59. data/sass/partials/typography/_headings.scss +41 -0
  60. data/sass/partials/typography/_links.scss +30 -0
  61. data/sass/partials/typography/_misc.scss +54 -0
  62. data/sass/partials/typography/_scoped.scss +55 -0
  63. data/sass/partials/widgets/_widgets.scss +8 -0
  64. data/sass/styles.scss +122 -0
  65. metadata +80 -3
@@ -0,0 +1,24 @@
1
+ /*
2
+
3
+ Body Copy
4
+ ========
5
+
6
+ <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ac ligula non felis fermentum tincidunt. Suspendisse sapien odio, vestibulum euismod metus at, aliquet dapibus purus. Suspendisse lacinia sit amet ante eget gravida.</p>
7
+
8
+ <p class="lead">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ac ligula non felis fermentum tincidunt. Suspendisse sapien odio, vestibulum euismod metus at, aliquet dapibus purus. Suspendisse lacinia sit amet ante eget gravida.</p>
9
+
10
+ */
11
+
12
+ p {
13
+ font-family: $body-font;
14
+ }
15
+
16
+ /* --- used if wanting to style the first paragraph slightly differently --- */
17
+ .lead {
18
+
19
+ }
20
+
21
+ ::-moz-selection, ::selection {
22
+ background-color: $base-color;
23
+ color: $white; // check this
24
+ }
@@ -0,0 +1,24 @@
1
+ /*
2
+
3
+ Code
4
+ ====
5
+
6
+ <pre>This is a pre tag rendered</pre>
7
+
8
+ <code>This is a code tag rendered</code>
9
+
10
+ <pre><code>This is a code tag in a pre tag rendered</code></pre>
11
+
12
+ */
13
+
14
+ pre {
15
+
16
+ }
17
+
18
+ code {
19
+
20
+ }
21
+
22
+ pre code {
23
+
24
+ }
@@ -0,0 +1,37 @@
1
+ /*
2
+
3
+ Body Copy Classes
4
+ =================
5
+
6
+ <p class="text-muted">faded out a little</p>
7
+ <p class="text-primary">this really is something to look at</p>
8
+ <p class="text-success">winner, winner. chicken dinner!</p>
9
+ <p class="text-info">just a bit of info</p>
10
+ <p class="text-warning">be careful now, take heed</p>
11
+ <p class="text-danger">ooh, high voltage</p>
12
+
13
+ */
14
+
15
+ .text-muted {
16
+ color: $muted-color;
17
+ }
18
+
19
+ .text-primary {
20
+ color: $primary-color;
21
+ }
22
+
23
+ .text-success {
24
+ color: $success-color;
25
+ }
26
+
27
+ .text-info {
28
+ color: $info-color;
29
+ }
30
+
31
+ .text-warning {
32
+ color: $warning-color;
33
+ }
34
+
35
+ .text-danger {
36
+ color: $danger-color;
37
+ }
@@ -0,0 +1,41 @@
1
+ /*
2
+
3
+ Headings
4
+ ========
5
+
6
+ <h1>This is the primary headline</h1>
7
+ <h2>This is the secondary headline</h2>
8
+ <h3>This is the tertiary headline</h3>
9
+ <h4>This is the average headline</h4>
10
+ <h5>This is the small headline</h5>
11
+ <h6>This is the micro headline</h6>
12
+
13
+ */
14
+
15
+ h1, h2, h3, h4, h5, h6 {
16
+ font-family: $header-font;
17
+ }
18
+
19
+ h1, .h1 {
20
+
21
+ }
22
+
23
+ h2, .h2 {
24
+
25
+ }
26
+
27
+ h3, .h3 {
28
+
29
+ }
30
+
31
+ h4, .h4 {
32
+
33
+ }
34
+
35
+ h5, .h5 {
36
+
37
+ }
38
+
39
+ h6, .h6 {
40
+
41
+ }
@@ -0,0 +1,30 @@
1
+ /*
2
+
3
+ Links
4
+ =====
5
+
6
+ <a href="">this is a link</a>
7
+ <a class="is-selected" href="">this link is selected</a>
8
+
9
+ */
10
+
11
+ a {
12
+ &:link {
13
+
14
+ }
15
+ &:visited {
16
+
17
+ }
18
+ &:hover,
19
+ &:focus {
20
+
21
+ }
22
+ &:active,
23
+ [aria-pressed] {
24
+
25
+ }
26
+ }
27
+
28
+ .is-selected {
29
+
30
+ }
@@ -0,0 +1,54 @@
1
+ /*
2
+
3
+ Miscellaneous Typography
4
+ =======================
5
+
6
+ <p><strong>rendered as bold text</strong></p>
7
+
8
+ <p><em>rendered as italic text</em></p>
9
+
10
+ <p><del>rendered as deleted text</del></p>
11
+
12
+ <p><dfn>defines a definition term</dfn></p>
13
+
14
+ <p><abbr title="extended abbr text should show when mouse over">&lt;abbr&gt; abbr - extended text when mouseover.</abbr></p>
15
+ <p><acronym title="extended acronym text should show when mouse over">&lt;acronym&gt; acronym - extended text when mouseover.</acronym></p>
16
+
17
+ <address>This would be rendered the address</address>
18
+
19
+ <small>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</small>
20
+
21
+
22
+ */
23
+
24
+ strong {
25
+
26
+ }
27
+
28
+ em {
29
+
30
+ }
31
+
32
+ del {
33
+
34
+ }
35
+
36
+ dfn {
37
+
38
+ }
39
+
40
+ abbr {
41
+
42
+ }
43
+
44
+ acronym {
45
+
46
+ }
47
+
48
+ address {
49
+
50
+ }
51
+
52
+ small {
53
+
54
+ }
@@ -0,0 +1,55 @@
1
+ /*
2
+
3
+ Scoped Typography
4
+ =================
5
+
6
+ <div class="prose">
7
+ <h1>This is the primary headline</h1>
8
+ <h2>This is the secondary headline</h2>
9
+ <h3>This is the tertiary headline</h3>
10
+ <h4>This is the average headline</h4>
11
+ <h5>This is the small headline</h5>
12
+ <h6>This is the micro headline</h6>
13
+
14
+ <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam ac ligula non felis fermentum tincidunt. Suspendisse sapien odio, vestibulum euismod metus at, aliquet dapibus purus. Suspendisse lacinia sit amet ante eget gravida.</p>
15
+
16
+ <a href="">A link to something</a>
17
+
18
+ <ul>
19
+ <li>A list item</li>
20
+ <li>A list item</li>
21
+ <li>A list item</li>
22
+ </ul>
23
+ </div>
24
+
25
+ */
26
+
27
+ .prose {
28
+ h1 {
29
+ font-family: $header-font;
30
+ }
31
+ h2 {
32
+ font-family: $header-font;
33
+ }
34
+ h3 {
35
+ font-family: $header-font;
36
+ }
37
+ h4 {
38
+ font-family: $header-font;
39
+ }
40
+ h5 {
41
+ font-family: $header-font;
42
+ }
43
+ h6 {
44
+ font-family: $header-font;
45
+ }
46
+ p {
47
+ font-family: $body-font;
48
+ }
49
+ a {
50
+ font-family: $body-font;
51
+ }
52
+ li {
53
+ font-family: $body-font;
54
+ }
55
+ }
@@ -0,0 +1,8 @@
1
+ /*
2
+
3
+ Widgets
4
+ =======
5
+
6
+ Put your 'widgets' here
7
+
8
+ */
data/sass/styles.scss ADDED
@@ -0,0 +1,122 @@
1
+ // Mixins
2
+ @import "base/_mixins.scss";
3
+
4
+ // CSS Font Stacks
5
+
6
+ @import "base/_fonts.scss";
7
+
8
+ // Variables
9
+ @import "_variables.scss";
10
+
11
+ // Normalize
12
+ @import "base/_bizarro.scss";
13
+
14
+ // Helpers
15
+ @import "base/_helpers.scss";
16
+
17
+ // -------------------------------------
18
+ // import the partials
19
+ // -------------------------------------
20
+
21
+ // Images
22
+
23
+ // @import "partials/images/_images.scss";
24
+ // @import "partials/images/_base64.scss";
25
+ @import "partials/images/_figure.scss";
26
+
27
+ // import color swatch
28
+
29
+ // @import "partials/colors/_colors.scss";
30
+
31
+ // import layout
32
+
33
+ @import "partials/layout/_grids.scss";
34
+ @import "partials/layout/_base.scss";
35
+ @import "partials/layout/_header.scss";
36
+ @import "partials/layout/_main.scss";
37
+ @import "partials/layout/_aside.scss";
38
+ @import "partials/layout/_footer.scss";
39
+
40
+ // import typography
41
+
42
+ @import "partials/typography/_headings.scss";
43
+ @import "partials/typography/_body-copy.scss";
44
+ // @import "partials/typography/_copy-classes.scss";
45
+ @import "partials/typography/_links.scss";
46
+ @import "partials/typography/_blockquotes.scss";
47
+ @import "partials/typography/_misc.scss";
48
+ @import "partials/typography/_code.scss";
49
+ // @import "partials/typography/_scoped.scss";
50
+
51
+ // import lists
52
+
53
+ @import "partials/lists/_ul.scss";
54
+ @import "partials/lists/_ol.scss";
55
+ @import "partials/lists/_dl.scss";
56
+
57
+ // import navigation
58
+
59
+ @import "partials/navigation/_nav.scss";
60
+ @import "partials/navigation/_pagination.scss";
61
+ @import "partials/navigation/_breadcrumbs.scss";
62
+
63
+ // Components
64
+
65
+ // @import "partials/components/_alerts.scss";
66
+ // @import "partials/components/_horizontal-rules.scss";
67
+ // @import "partials/components/_labels.scss";
68
+ // @import "partials/components/_wells.scss";
69
+
70
+ // Tables
71
+
72
+ @import "partials/tables/_table.scss";
73
+
74
+ // Media Object
75
+
76
+ @import "partials/media-object/_media-object.scss";
77
+
78
+ // Buttons
79
+
80
+ @import "partials/buttons/_buttons.scss";
81
+
82
+ // Forms
83
+
84
+ @import "partials/forms/_big-form.scss";
85
+ @import "partials/forms/_search-form.scss";
86
+
87
+ // Modules
88
+
89
+ @import "partials/modules/_modules.scss";
90
+ @import "partials/modules/_skipnav.scss";
91
+
92
+ // Widgets
93
+
94
+ @import "partials/widgets/_widgets.scss";
95
+
96
+
97
+
98
+ //////////////// ******** ////////////////
99
+
100
+ // Scratch, make sure this is at the end of this import file
101
+
102
+ @import "partials/site-specific/_scratch.scss";
103
+
104
+ // Shame, shame know your SCSS needs fixing in this file
105
+
106
+ @import "partials/site-specific/_shame.scss";
107
+
108
+
109
+
110
+
111
+
112
+
113
+
114
+
115
+
116
+ // Print styles
117
+ @import "base/_print.scss";
118
+
119
+ // DEBUG MODE
120
+ $debugMode: false;
121
+
122
+ @import "base/_debug.scss";
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Sassifaction
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stuart Robson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-03-05 00:00:00.000000000 Z
11
+ date: 2014-03-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -24,13 +24,90 @@ dependencies:
24
24
  - - '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: 3.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: compass
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: 0.12.1
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: 0.12.1
27
41
  description: Sassifaction Mixin Library
28
42
  email:
29
43
  - stu@alwaystwisted.com
30
44
  executables: []
31
45
  extensions: []
32
46
  extra_rdoc_files: []
33
- files: []
47
+ files:
48
+ - lib/Sassifaction.rb
49
+ - sass/_Sassifaction.scss
50
+ - sass/_variables.scss
51
+ - sass/base/_bizarro.scss
52
+ - sass/base/_debug.scss
53
+ - sass/base/_fonts.scss
54
+ - sass/base/_helpers.scss
55
+ - sass/base/_mixins.scss
56
+ - sass/base/_print.scss
57
+ - sass/base/mixins/_BEM.scss
58
+ - sass/base/mixins/_border-radius.scss
59
+ - sass/base/mixins/_children-of-ie.scss
60
+ - sass/base/mixins/_colors.scss
61
+ - sass/base/mixins/_IE7-padding.scss
62
+ - sass/base/mixins/_maths.scss
63
+ - sass/base/mixins/_media-queries.scss
64
+ - sass/base/mixins/_misc.scss
65
+ - sass/base/mixins/_placeholder.scss
66
+ - sass/base/mixins/_rwd-padding-margin.scss
67
+ - sass/base/mixins/_shapes.scss
68
+ - sass/base/mixins/_tint-and-shade.scss
69
+ - sass/base/mixins/_triangles.scss
70
+ - sass/base/mixins/_typography.scss
71
+ - sass/partials/buttons/_buttons.scss
72
+ - sass/partials/colors/_colors.scss
73
+ - sass/partials/components/_alerts.scss
74
+ - sass/partials/components/_horizontal-rules.scss
75
+ - sass/partials/components/_labels.scss
76
+ - sass/partials/components/_tooltips.scss
77
+ - sass/partials/components/_wells.scss
78
+ - sass/partials/forms/_big-form.scss
79
+ - sass/partials/forms/_search-form.scss
80
+ - sass/partials/images/_base64.scss
81
+ - sass/partials/images/_figure.scss
82
+ - sass/partials/images/_images.scss
83
+ - sass/partials/layout/_aside.scss
84
+ - sass/partials/layout/_base.scss
85
+ - sass/partials/layout/_footer.scss
86
+ - sass/partials/layout/_grids.scss
87
+ - sass/partials/layout/_header.scss
88
+ - sass/partials/layout/_main.scss
89
+ - sass/partials/lists/_dl.scss
90
+ - sass/partials/lists/_ol.scss
91
+ - sass/partials/lists/_ul.scss
92
+ - sass/partials/media-object/_media-object.scss
93
+ - sass/partials/modules/_modules.scss
94
+ - sass/partials/modules/_skipnav.scss
95
+ - sass/partials/navigation/_breadcrumbs.scss
96
+ - sass/partials/navigation/_nav.scss
97
+ - sass/partials/navigation/_pagination.scss
98
+ - sass/partials/site-specific/_scratch.scss
99
+ - sass/partials/site-specific/_shame.scss
100
+ - sass/partials/tables/_table.scss
101
+ - sass/partials/typography/_blockquotes.scss
102
+ - sass/partials/typography/_body-copy.scss
103
+ - sass/partials/typography/_code.scss
104
+ - sass/partials/typography/_copy-classes.scss
105
+ - sass/partials/typography/_headings.scss
106
+ - sass/partials/typography/_links.scss
107
+ - sass/partials/typography/_misc.scss
108
+ - sass/partials/typography/_scoped.scss
109
+ - sass/partials/widgets/_widgets.scss
110
+ - sass/styles.scss
34
111
  homepage: https://github.com/sturobson/Sassifaction
35
112
  licenses: []
36
113
  metadata: {}