egghead-styles 1.0.72 → 1.0.73

Sign up to get free protection for your applications and to get access to all the features.
Files changed (183) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/egghead-styles.css.scss +18 -13
  3. data/app/assets/stylesheets/globals/_bootstrap-and-overrides.css.scss +3 -3
  4. data/app/assets/stylesheets/plugins/bootstrap/_bootstrap-compass.scss +9 -0
  5. data/app/assets/stylesheets/plugins/bootstrap/_bootstrap-mincer.scss +19 -0
  6. data/app/assets/stylesheets/plugins/bootstrap/_bootstrap-sprockets.scss +9 -0
  7. data/app/assets/stylesheets/plugins/bootstrap/_bootstrap.scss +56 -0
  8. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_alerts.scss +73 -0
  9. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_badges.scss +68 -0
  10. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_breadcrumbs.scss +26 -0
  11. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_button-groups.scss +244 -0
  12. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_buttons.scss +168 -0
  13. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_carousel.scss +269 -0
  14. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_close.scss +36 -0
  15. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_code.scss +69 -0
  16. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_component-animations.scss +37 -0
  17. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_dropdowns.scss +216 -0
  18. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_forms.scss +611 -0
  19. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_glyphicons.scss +307 -0
  20. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_grid.scss +84 -0
  21. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_input-groups.scss +167 -0
  22. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_jumbotron.scss +52 -0
  23. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_labels.scss +66 -0
  24. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_list-group.scss +130 -0
  25. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_media.scss +66 -0
  26. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_mixins.scss +40 -0
  27. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_modals.scss +150 -0
  28. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_navbar.scss +662 -0
  29. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_navs.scss +242 -0
  30. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_normalize.scss +424 -0
  31. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_pager.scss +54 -0
  32. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_pagination.scss +89 -0
  33. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_panels.scss +271 -0
  34. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_popovers.scss +131 -0
  35. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_print.scss +101 -0
  36. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_progress-bars.scss +87 -0
  37. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_responsive-embed.scss +35 -0
  38. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_responsive-utilities.scss +179 -0
  39. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_scaffolding.scss +161 -0
  40. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_tables.scss +234 -0
  41. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_theme.scss +291 -0
  42. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_thumbnails.scss +38 -0
  43. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_tooltip.scss +101 -0
  44. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_type.scss +298 -0
  45. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_utilities.scss +55 -0
  46. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_variables.scss +872 -0
  47. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_wells.scss +29 -0
  48. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_alerts.scss +14 -0
  49. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_background-variant.scss +12 -0
  50. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_border-radius.scss +18 -0
  51. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_buttons.scss +68 -0
  52. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_center-block.scss +7 -0
  53. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_clearfix.scss +22 -0
  54. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_forms.scss +88 -0
  55. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_gradients.scss +58 -0
  56. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_grid-framework.scss +81 -0
  57. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_grid.scss +122 -0
  58. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_hide-text.scss +21 -0
  59. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_image.scss +33 -0
  60. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_labels.scss +12 -0
  61. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_list-group.scss +32 -0
  62. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_nav-divider.scss +10 -0
  63. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  64. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_opacity.scss +8 -0
  65. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_pagination.scss +24 -0
  66. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_panels.scss +24 -0
  67. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_progress-bar.scss +10 -0
  68. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_reset-filter.scss +8 -0
  69. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_reset-text.scss +18 -0
  70. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_resize.scss +6 -0
  71. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_responsive-visibility.scss +21 -0
  72. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_size.scss +10 -0
  73. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_tab-focus.scss +9 -0
  74. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_table-row.scss +28 -0
  75. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_text-emphasis.scss +12 -0
  76. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_text-overflow.scss +8 -0
  77. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  78. data/app/assets/stylesheets/plugins/chosen.scss +433 -0
  79. data/app/assets/stylesheets/plugins/{chosen.css.scss → chosen_overrides.css.scss} +0 -0
  80. data/app/assets/stylesheets/plugins/compass/_compass.scss +3 -0
  81. data/app/assets/stylesheets/plugins/compass/_lemonade.scss +38 -0
  82. data/app/assets/stylesheets/plugins/compass/compass/_css3.scss +20 -0
  83. data/app/assets/stylesheets/plugins/compass/compass/_layout.scss +3 -0
  84. data/app/assets/stylesheets/plugins/compass/compass/_reset-legacy.scss +3 -0
  85. data/app/assets/stylesheets/plugins/compass/compass/_reset.scss +3 -0
  86. data/app/assets/stylesheets/plugins/compass/compass/_support.scss +40 -0
  87. data/app/assets/stylesheets/plugins/compass/compass/_typography.scss +4 -0
  88. data/app/assets/stylesheets/plugins/compass/compass/_utilities.scss +9 -0
  89. data/app/assets/stylesheets/plugins/compass/compass/css3/_appearance.scss +17 -0
  90. data/app/assets/stylesheets/plugins/compass/compass/css3/_background-clip.scss +43 -0
  91. data/app/assets/stylesheets/plugins/compass/compass/css3/_background-origin.scss +42 -0
  92. data/app/assets/stylesheets/plugins/compass/compass/css3/_background-size.scss +26 -0
  93. data/app/assets/stylesheets/plugins/compass/compass/css3/_border-radius.scss +130 -0
  94. data/app/assets/stylesheets/plugins/compass/compass/css3/_box-shadow.scss +76 -0
  95. data/app/assets/stylesheets/plugins/compass/compass/css3/_box-sizing.scss +13 -0
  96. data/app/assets/stylesheets/plugins/compass/compass/css3/_box.scss +111 -0
  97. data/app/assets/stylesheets/plugins/compass/compass/css3/_columns.scss +157 -0
  98. data/app/assets/stylesheets/plugins/compass/compass/css3/_filter.scss +23 -0
  99. data/app/assets/stylesheets/plugins/compass/compass/css3/_font-face.scss +48 -0
  100. data/app/assets/stylesheets/plugins/compass/compass/css3/_hyphenation.scss +77 -0
  101. data/app/assets/stylesheets/plugins/compass/compass/css3/_images.scss +132 -0
  102. data/app/assets/stylesheets/plugins/compass/compass/css3/_inline-block.scss +22 -0
  103. data/app/assets/stylesheets/plugins/compass/compass/css3/_opacity.scss +19 -0
  104. data/app/assets/stylesheets/plugins/compass/compass/css3/_pie.scss +73 -0
  105. data/app/assets/stylesheets/plugins/compass/compass/css3/_regions.scss +22 -0
  106. data/app/assets/stylesheets/plugins/compass/compass/css3/_shared.scss +38 -0
  107. data/app/assets/stylesheets/plugins/compass/compass/css3/_text-shadow.scss +87 -0
  108. data/app/assets/stylesheets/plugins/compass/compass/css3/_transform-legacy.scss +87 -0
  109. data/app/assets/stylesheets/plugins/compass/compass/css3/_transform.scss +598 -0
  110. data/app/assets/stylesheets/plugins/compass/compass/css3/_transition.scss +221 -0
  111. data/app/assets/stylesheets/plugins/compass/compass/css3/_user-interface.scss +17 -0
  112. data/app/assets/stylesheets/plugins/compass/compass/layout/_grid-background.scss +178 -0
  113. data/app/assets/stylesheets/plugins/compass/compass/layout/_sticky-footer.scss +23 -0
  114. data/app/assets/stylesheets/plugins/compass/compass/layout/_stretching.scss +24 -0
  115. data/app/assets/stylesheets/plugins/compass/compass/reset/_utilities-legacy.scss +135 -0
  116. data/app/assets/stylesheets/plugins/compass/compass/reset/_utilities.scss +142 -0
  117. data/app/assets/stylesheets/plugins/compass/compass/typography/_links.scss +3 -0
  118. data/app/assets/stylesheets/plugins/compass/compass/typography/_lists.scss +4 -0
  119. data/app/assets/stylesheets/plugins/compass/compass/typography/_text.scss +4 -0
  120. data/app/assets/stylesheets/plugins/compass/compass/typography/_vertical_rhythm.scss +221 -0
  121. data/app/assets/stylesheets/plugins/compass/compass/typography/links/_hover-link.scss +5 -0
  122. data/app/assets/stylesheets/plugins/compass/compass/typography/links/_link-colors.scss +28 -0
  123. data/app/assets/stylesheets/plugins/compass/compass/typography/links/_unstyled-link.scss +7 -0
  124. data/app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss +34 -0
  125. data/app/assets/stylesheets/plugins/compass/compass/typography/lists/_horizontal-list.scss +61 -0
  126. data/app/assets/stylesheets/plugins/compass/compass/typography/lists/_inline-block-list.scss +50 -0
  127. data/app/assets/stylesheets/plugins/compass/compass/typography/lists/_inline-list.scss +44 -0
  128. data/app/assets/stylesheets/plugins/compass/compass/typography/text/_ellipsis.scss +25 -0
  129. data/app/assets/stylesheets/plugins/compass/compass/typography/text/_force-wrap.scss +12 -0
  130. data/app/assets/stylesheets/plugins/compass/compass/typography/text/_nowrap.scss +2 -0
  131. data/app/assets/stylesheets/plugins/compass/compass/typography/text/_replacement.scss +68 -0
  132. data/app/assets/stylesheets/plugins/compass/compass/utilities/_color.scss +1 -0
  133. data/app/assets/stylesheets/plugins/compass/compass/utilities/_general.scss +6 -0
  134. data/app/assets/stylesheets/plugins/compass/compass/utilities/_links.scss +5 -0
  135. data/app/assets/stylesheets/plugins/compass/compass/utilities/_lists.scss +6 -0
  136. data/app/assets/stylesheets/plugins/compass/compass/utilities/_print.scss +17 -0
  137. data/app/assets/stylesheets/plugins/compass/compass/utilities/_sprites.scss +2 -0
  138. data/app/assets/stylesheets/plugins/compass/compass/utilities/_tables.scss +3 -0
  139. data/app/assets/stylesheets/plugins/compass/compass/utilities/_text.scss +5 -0
  140. data/app/assets/stylesheets/plugins/compass/compass/utilities/color/_contrast.scss +28 -0
  141. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_clearfix.scss +44 -0
  142. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_float.scss +30 -0
  143. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_hacks.scss +46 -0
  144. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_min.scss +16 -0
  145. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_reset.scss +2 -0
  146. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_tabs.scss +1 -0
  147. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_tag-cloud.scss +18 -0
  148. data/app/assets/stylesheets/plugins/compass/compass/utilities/links/_hover-link.scss +3 -0
  149. data/app/assets/stylesheets/plugins/compass/compass/utilities/links/_link-colors.scss +3 -0
  150. data/app/assets/stylesheets/plugins/compass/compass/utilities/links/_unstyled-link.scss +3 -0
  151. data/app/assets/stylesheets/plugins/compass/compass/utilities/lists/_bullets.scss +3 -0
  152. data/app/assets/stylesheets/plugins/compass/compass/utilities/lists/_horizontal-list.scss +3 -0
  153. data/app/assets/stylesheets/plugins/compass/compass/utilities/lists/_inline-block-list.scss +3 -0
  154. data/app/assets/stylesheets/plugins/compass/compass/utilities/lists/_inline-list.scss +3 -0
  155. data/app/assets/stylesheets/plugins/compass/compass/utilities/sprites/_base.scss +66 -0
  156. data/app/assets/stylesheets/plugins/compass/compass/utilities/sprites/_sprite-img.scss +79 -0
  157. data/app/assets/stylesheets/plugins/compass/compass/utilities/tables/_alternating-rows-and-columns.scss +22 -0
  158. data/app/assets/stylesheets/plugins/compass/compass/utilities/tables/_borders.scss +33 -0
  159. data/app/assets/stylesheets/plugins/compass/compass/utilities/tables/_scaffolding.scss +9 -0
  160. data/app/assets/stylesheets/plugins/compass/compass/utilities/text/_ellipsis.scss +3 -0
  161. data/app/assets/stylesheets/plugins/compass/compass/utilities/text/_nowrap.scss +3 -0
  162. data/app/assets/stylesheets/plugins/compass/compass/utilities/text/_replacement.scss +3 -0
  163. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_bootstrap.scss +0 -0
  164. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_core.scss +0 -0
  165. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_extras.scss +0 -0
  166. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_icons.scss +0 -0
  167. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_mixins.scss +0 -0
  168. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_path.scss +0 -0
  169. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_variables.scss +0 -0
  170. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/font-awesome-ie7.scss +0 -0
  171. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/font-awesome.scss +0 -0
  172. data/app/assets/stylesheets/plugins/fontello/fonts/fontello.eot +0 -0
  173. data/app/assets/stylesheets/plugins/fontello/fonts/fontello.svg +2140 -0
  174. data/app/assets/stylesheets/plugins/fontello/fonts/fontello.ttf +0 -0
  175. data/app/assets/stylesheets/plugins/fontello/fonts/fontello.woff +0 -0
  176. data/app/assets/stylesheets/plugins/fontello/stylesheets/_fontello-ie7-codes.scss +742 -0
  177. data/app/assets/stylesheets/plugins/fontello/stylesheets/_fontello-ie7.scss +752 -0
  178. data/app/assets/stylesheets/plugins/fontello/stylesheets/_fontello.scss +778 -0
  179. data/app/assets/stylesheets/plugins/fontello/stylesheets/_fontello_codes.scss +744 -0
  180. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/social-likes.css.scss +0 -0
  181. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/typeahead-bootstrap.css.scss +0 -0
  182. data/lib/egghead/styles/version.rb +1 -1
  183. metadata +180 -98
@@ -1,5 +1,5 @@
1
1
  module Egghead
2
2
  module Styles
3
- VERSION = "1.0.72"
3
+ VERSION = "1.0.73"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: egghead-styles
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.72
4
+ version: 1.0.73
5
5
  platform: ruby
6
6
  authors:
7
7
  - egghead.io
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-03-14 00:00:00.000000000 Z
11
+ date: 2016-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,90 +52,6 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 0.7.4
55
- - !ruby/object:Gem::Dependency
56
- name: compass
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: 0.12.4
62
- type: :runtime
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: 0.12.4
69
- - !ruby/object:Gem::Dependency
70
- name: compass-rails
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - "~>"
74
- - !ruby/object:Gem::Version
75
- version: 1.1.7
76
- type: :runtime
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
81
- - !ruby/object:Gem::Version
82
- version: 1.1.7
83
- - !ruby/object:Gem::Dependency
84
- name: fontello-rails
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- version: '0'
90
- type: :runtime
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - ">="
95
- - !ruby/object:Gem::Version
96
- version: '0'
97
- - !ruby/object:Gem::Dependency
98
- name: font-awesome-rails
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - ">="
102
- - !ruby/object:Gem::Version
103
- version: '0'
104
- type: :runtime
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - ">="
109
- - !ruby/object:Gem::Version
110
- version: '0'
111
- - !ruby/object:Gem::Dependency
112
- name: chosen-rails
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - ">="
116
- - !ruby/object:Gem::Version
117
- version: '0'
118
- type: :runtime
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - ">="
123
- - !ruby/object:Gem::Version
124
- version: '0'
125
- - !ruby/object:Gem::Dependency
126
- name: bootstrap-sass
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - "~>"
130
- - !ruby/object:Gem::Version
131
- version: '3.3'
132
- type: :runtime
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - "~>"
137
- - !ruby/object:Gem::Version
138
- version: '3.3'
139
55
  description: To reduce development friction egghead.io has extracted its core CSS
140
56
  styles into a gem for use across projects.
141
57
  email:
@@ -182,8 +98,185 @@ files:
182
98
  - app/assets/stylesheets/globals/_grid-helpers.scss
183
99
  - app/assets/stylesheets/globals/_mixins.css.scss
184
100
  - app/assets/stylesheets/globals/_variables.css.scss
185
- - app/assets/stylesheets/plugins/chosen.css.scss
101
+ - app/assets/stylesheets/plugins/bootstrap/_bootstrap-compass.scss
102
+ - app/assets/stylesheets/plugins/bootstrap/_bootstrap-mincer.scss
103
+ - app/assets/stylesheets/plugins/bootstrap/_bootstrap-sprockets.scss
104
+ - app/assets/stylesheets/plugins/bootstrap/_bootstrap.scss
105
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_alerts.scss
106
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_badges.scss
107
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_breadcrumbs.scss
108
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_button-groups.scss
109
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_buttons.scss
110
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_carousel.scss
111
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_close.scss
112
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_code.scss
113
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_component-animations.scss
114
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_dropdowns.scss
115
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_forms.scss
116
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_glyphicons.scss
117
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_grid.scss
118
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_input-groups.scss
119
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_jumbotron.scss
120
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_labels.scss
121
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_list-group.scss
122
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_media.scss
123
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_mixins.scss
124
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_modals.scss
125
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_navbar.scss
126
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_navs.scss
127
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_normalize.scss
128
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_pager.scss
129
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_pagination.scss
130
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_panels.scss
131
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_popovers.scss
132
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_print.scss
133
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_progress-bars.scss
134
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_responsive-embed.scss
135
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_responsive-utilities.scss
136
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_scaffolding.scss
137
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_tables.scss
138
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_theme.scss
139
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_thumbnails.scss
140
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_tooltip.scss
141
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_type.scss
142
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_utilities.scss
143
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_variables.scss
144
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/_wells.scss
145
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_alerts.scss
146
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_background-variant.scss
147
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_border-radius.scss
148
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_buttons.scss
149
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_center-block.scss
150
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_clearfix.scss
151
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_forms.scss
152
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_gradients.scss
153
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_grid-framework.scss
154
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_grid.scss
155
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_hide-text.scss
156
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_image.scss
157
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_labels.scss
158
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_list-group.scss
159
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_nav-divider.scss
160
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_nav-vertical-align.scss
161
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_opacity.scss
162
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_pagination.scss
163
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_panels.scss
164
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_progress-bar.scss
165
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_reset-filter.scss
166
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_reset-text.scss
167
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_resize.scss
168
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_responsive-visibility.scss
169
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_size.scss
170
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_tab-focus.scss
171
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_table-row.scss
172
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_text-emphasis.scss
173
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_text-overflow.scss
174
+ - app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_vendor-prefixes.scss
175
+ - app/assets/stylesheets/plugins/chosen.scss
176
+ - app/assets/stylesheets/plugins/chosen_overrides.css.scss
177
+ - app/assets/stylesheets/plugins/compass/_compass.scss
178
+ - app/assets/stylesheets/plugins/compass/_lemonade.scss
179
+ - app/assets/stylesheets/plugins/compass/compass/_css3.scss
180
+ - app/assets/stylesheets/plugins/compass/compass/_layout.scss
181
+ - app/assets/stylesheets/plugins/compass/compass/_reset-legacy.scss
182
+ - app/assets/stylesheets/plugins/compass/compass/_reset.scss
183
+ - app/assets/stylesheets/plugins/compass/compass/_support.scss
184
+ - app/assets/stylesheets/plugins/compass/compass/_typography.scss
185
+ - app/assets/stylesheets/plugins/compass/compass/_utilities.scss
186
+ - app/assets/stylesheets/plugins/compass/compass/css3/_appearance.scss
187
+ - app/assets/stylesheets/plugins/compass/compass/css3/_background-clip.scss
188
+ - app/assets/stylesheets/plugins/compass/compass/css3/_background-origin.scss
189
+ - app/assets/stylesheets/plugins/compass/compass/css3/_background-size.scss
190
+ - app/assets/stylesheets/plugins/compass/compass/css3/_border-radius.scss
191
+ - app/assets/stylesheets/plugins/compass/compass/css3/_box-shadow.scss
192
+ - app/assets/stylesheets/plugins/compass/compass/css3/_box-sizing.scss
193
+ - app/assets/stylesheets/plugins/compass/compass/css3/_box.scss
194
+ - app/assets/stylesheets/plugins/compass/compass/css3/_columns.scss
195
+ - app/assets/stylesheets/plugins/compass/compass/css3/_filter.scss
196
+ - app/assets/stylesheets/plugins/compass/compass/css3/_font-face.scss
197
+ - app/assets/stylesheets/plugins/compass/compass/css3/_hyphenation.scss
198
+ - app/assets/stylesheets/plugins/compass/compass/css3/_images.scss
199
+ - app/assets/stylesheets/plugins/compass/compass/css3/_inline-block.scss
200
+ - app/assets/stylesheets/plugins/compass/compass/css3/_opacity.scss
201
+ - app/assets/stylesheets/plugins/compass/compass/css3/_pie.scss
202
+ - app/assets/stylesheets/plugins/compass/compass/css3/_regions.scss
203
+ - app/assets/stylesheets/plugins/compass/compass/css3/_shared.scss
204
+ - app/assets/stylesheets/plugins/compass/compass/css3/_text-shadow.scss
205
+ - app/assets/stylesheets/plugins/compass/compass/css3/_transform-legacy.scss
206
+ - app/assets/stylesheets/plugins/compass/compass/css3/_transform.scss
207
+ - app/assets/stylesheets/plugins/compass/compass/css3/_transition.scss
208
+ - app/assets/stylesheets/plugins/compass/compass/css3/_user-interface.scss
209
+ - app/assets/stylesheets/plugins/compass/compass/layout/_grid-background.scss
210
+ - app/assets/stylesheets/plugins/compass/compass/layout/_sticky-footer.scss
211
+ - app/assets/stylesheets/plugins/compass/compass/layout/_stretching.scss
212
+ - app/assets/stylesheets/plugins/compass/compass/reset/_utilities-legacy.scss
213
+ - app/assets/stylesheets/plugins/compass/compass/reset/_utilities.scss
214
+ - app/assets/stylesheets/plugins/compass/compass/typography/_links.scss
215
+ - app/assets/stylesheets/plugins/compass/compass/typography/_lists.scss
216
+ - app/assets/stylesheets/plugins/compass/compass/typography/_text.scss
217
+ - app/assets/stylesheets/plugins/compass/compass/typography/_vertical_rhythm.scss
218
+ - app/assets/stylesheets/plugins/compass/compass/typography/links/_hover-link.scss
219
+ - app/assets/stylesheets/plugins/compass/compass/typography/links/_link-colors.scss
220
+ - app/assets/stylesheets/plugins/compass/compass/typography/links/_unstyled-link.scss
221
+ - app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss
222
+ - app/assets/stylesheets/plugins/compass/compass/typography/lists/_horizontal-list.scss
223
+ - app/assets/stylesheets/plugins/compass/compass/typography/lists/_inline-block-list.scss
224
+ - app/assets/stylesheets/plugins/compass/compass/typography/lists/_inline-list.scss
225
+ - app/assets/stylesheets/plugins/compass/compass/typography/text/_ellipsis.scss
226
+ - app/assets/stylesheets/plugins/compass/compass/typography/text/_force-wrap.scss
227
+ - app/assets/stylesheets/plugins/compass/compass/typography/text/_nowrap.scss
228
+ - app/assets/stylesheets/plugins/compass/compass/typography/text/_replacement.scss
229
+ - app/assets/stylesheets/plugins/compass/compass/utilities/_color.scss
230
+ - app/assets/stylesheets/plugins/compass/compass/utilities/_general.scss
231
+ - app/assets/stylesheets/plugins/compass/compass/utilities/_links.scss
232
+ - app/assets/stylesheets/plugins/compass/compass/utilities/_lists.scss
233
+ - app/assets/stylesheets/plugins/compass/compass/utilities/_print.scss
234
+ - app/assets/stylesheets/plugins/compass/compass/utilities/_sprites.scss
235
+ - app/assets/stylesheets/plugins/compass/compass/utilities/_tables.scss
236
+ - app/assets/stylesheets/plugins/compass/compass/utilities/_text.scss
237
+ - app/assets/stylesheets/plugins/compass/compass/utilities/color/_contrast.scss
238
+ - app/assets/stylesheets/plugins/compass/compass/utilities/general/_clearfix.scss
239
+ - app/assets/stylesheets/plugins/compass/compass/utilities/general/_float.scss
240
+ - app/assets/stylesheets/plugins/compass/compass/utilities/general/_hacks.scss
241
+ - app/assets/stylesheets/plugins/compass/compass/utilities/general/_min.scss
242
+ - app/assets/stylesheets/plugins/compass/compass/utilities/general/_reset.scss
243
+ - app/assets/stylesheets/plugins/compass/compass/utilities/general/_tabs.scss
244
+ - app/assets/stylesheets/plugins/compass/compass/utilities/general/_tag-cloud.scss
245
+ - app/assets/stylesheets/plugins/compass/compass/utilities/links/_hover-link.scss
246
+ - app/assets/stylesheets/plugins/compass/compass/utilities/links/_link-colors.scss
247
+ - app/assets/stylesheets/plugins/compass/compass/utilities/links/_unstyled-link.scss
248
+ - app/assets/stylesheets/plugins/compass/compass/utilities/lists/_bullets.scss
249
+ - app/assets/stylesheets/plugins/compass/compass/utilities/lists/_horizontal-list.scss
250
+ - app/assets/stylesheets/plugins/compass/compass/utilities/lists/_inline-block-list.scss
251
+ - app/assets/stylesheets/plugins/compass/compass/utilities/lists/_inline-list.scss
252
+ - app/assets/stylesheets/plugins/compass/compass/utilities/sprites/_base.scss
253
+ - app/assets/stylesheets/plugins/compass/compass/utilities/sprites/_sprite-img.scss
254
+ - app/assets/stylesheets/plugins/compass/compass/utilities/tables/_alternating-rows-and-columns.scss
255
+ - app/assets/stylesheets/plugins/compass/compass/utilities/tables/_borders.scss
256
+ - app/assets/stylesheets/plugins/compass/compass/utilities/tables/_scaffolding.scss
257
+ - app/assets/stylesheets/plugins/compass/compass/utilities/text/_ellipsis.scss
258
+ - app/assets/stylesheets/plugins/compass/compass/utilities/text/_nowrap.scss
259
+ - app/assets/stylesheets/plugins/compass/compass/utilities/text/_replacement.scss
186
260
  - app/assets/stylesheets/plugins/flipclock.css.scss
261
+ - app/assets/stylesheets/plugins/font-awesome/_bootstrap.scss
262
+ - app/assets/stylesheets/plugins/font-awesome/_core.scss
263
+ - app/assets/stylesheets/plugins/font-awesome/_extras.scss
264
+ - app/assets/stylesheets/plugins/font-awesome/_icons.scss
265
+ - app/assets/stylesheets/plugins/font-awesome/_mixins.scss
266
+ - app/assets/stylesheets/plugins/font-awesome/_path.scss
267
+ - app/assets/stylesheets/plugins/font-awesome/_variables.scss
268
+ - app/assets/stylesheets/plugins/font-awesome/font-awesome-ie7.scss
269
+ - app/assets/stylesheets/plugins/font-awesome/font-awesome.scss
270
+ - app/assets/stylesheets/plugins/fontello/fonts/fontello.eot
271
+ - app/assets/stylesheets/plugins/fontello/fonts/fontello.svg
272
+ - app/assets/stylesheets/plugins/fontello/fonts/fontello.ttf
273
+ - app/assets/stylesheets/plugins/fontello/fonts/fontello.woff
274
+ - app/assets/stylesheets/plugins/fontello/stylesheets/_fontello-ie7-codes.scss
275
+ - app/assets/stylesheets/plugins/fontello/stylesheets/_fontello-ie7.scss
276
+ - app/assets/stylesheets/plugins/fontello/stylesheets/_fontello.scss
277
+ - app/assets/stylesheets/plugins/fontello/stylesheets/_fontello_codes.scss
278
+ - app/assets/stylesheets/plugins/social-likes.css.scss
279
+ - app/assets/stylesheets/plugins/typeahead-bootstrap.css.scss
187
280
  - app/assets/stylesheets/sections/_footer.css.scss
188
281
  - app/assets/stylesheets/sections/_header.css.scss
189
282
  - app/assets/stylesheets/sections/_hero.css.scss
@@ -197,17 +290,6 @@ files:
197
290
  - app/assets/stylesheets/shared/_typography.css.scss
198
291
  - lib/egghead/styles.rb
199
292
  - lib/egghead/styles/version.rb
200
- - vendor/assets/stylesheets/font-awesome/_bootstrap.scss
201
- - vendor/assets/stylesheets/font-awesome/_core.scss
202
- - vendor/assets/stylesheets/font-awesome/_extras.scss
203
- - vendor/assets/stylesheets/font-awesome/_icons.scss
204
- - vendor/assets/stylesheets/font-awesome/_mixins.scss
205
- - vendor/assets/stylesheets/font-awesome/_path.scss
206
- - vendor/assets/stylesheets/font-awesome/_variables.scss
207
- - vendor/assets/stylesheets/font-awesome/font-awesome-ie7.scss
208
- - vendor/assets/stylesheets/font-awesome/font-awesome.scss
209
- - vendor/assets/stylesheets/social-likes.css.scss
210
- - vendor/assets/stylesheets/typeahead-bootstrap.css.scss
211
293
  homepage: https://github.com/eggheadio/egghead-styles
212
294
  licenses:
213
295
  - MIT