pondasee 1.0.rc.2

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 (62) hide show
  1. data/LICENSE +2 -0
  2. data/README.mkdn +2 -0
  3. data/VERSION +1 -0
  4. data/lib/pondasee.rb +1 -0
  5. data/stylesheets/_pondasee.scss +12 -0
  6. data/stylesheets/pondasee/_mixins.scss +63 -0
  7. data/stylesheets/pondasee/_settings.scss +3 -0
  8. data/stylesheets/pondasee/_variable.scss +97 -0
  9. data/stylesheets/pondasee/base.scss +24 -0
  10. data/stylesheets/pondasee/font-awesome.scss +295 -0
  11. data/stylesheets/pondasee/forms.scss +345 -0
  12. data/stylesheets/pondasee/grid.scss +37 -0
  13. data/stylesheets/pondasee/images.scss +168 -0
  14. data/stylesheets/pondasee/media-queries.scss +56 -0
  15. data/stylesheets/pondasee/mixins/_basic-buttons.scss +158 -0
  16. data/stylesheets/pondasee/mixins/_fonts.scss +31 -0
  17. data/stylesheets/pondasee/mixins/_helper.scss +56 -0
  18. data/stylesheets/pondasee/mixins/_simple-responsive-grid.scss +66 -0
  19. data/stylesheets/pondasee/mixins/_zurb-button.scss +105 -0
  20. data/stylesheets/pondasee/reset.scss +72 -0
  21. data/stylesheets/pondasee/table.scss +40 -0
  22. data/stylesheets/pondasee/typography.scss +217 -0
  23. data/stylesheets/pondasee/utilities.scss +181 -0
  24. data/templates/project/config.rb +46 -0
  25. data/templates/project/fonts/fontawesome-webfont.eot +0 -0
  26. data/templates/project/fonts/fontawesome-webfont.svg +255 -0
  27. data/templates/project/fonts/fontawesome-webfont.ttf +0 -0
  28. data/templates/project/fonts/fontawesome-webfont.woff +0 -0
  29. data/templates/project/humans.txt +42 -0
  30. data/templates/project/img/button.png +0 -0
  31. data/templates/project/img/overlay-button.png +0 -0
  32. data/templates/project/img/select_arrow.gif +0 -0
  33. data/templates/project/index.html +67 -0
  34. data/templates/project/js/methods.js +3 -0
  35. data/templates/project/js/plugins.js +21 -0
  36. data/templates/project/js/vendor/jquery-1.7.2.min.js +4 -0
  37. data/templates/project/js/vendor/modernizr-2.5.3.min.js +4 -0
  38. data/templates/project/js/vendor/nwmatcher-1.2.5-min.js +7 -0
  39. data/templates/project/js/vendor/selectivizr-min.js +5 -0
  40. data/templates/project/manifest.rb +52 -0
  41. data/templates/project/sass/partials/_base.scss +5 -0
  42. data/templates/project/sass/partials/_font-awesome.scss +5 -0
  43. data/templates/project/sass/partials/_forms.scss +5 -0
  44. data/templates/project/sass/partials/_grid.scss +6 -0
  45. data/templates/project/sass/partials/_ie.scss +7 -0
  46. data/templates/project/sass/partials/_images.scss +5 -0
  47. data/templates/project/sass/partials/_main.scss +12 -0
  48. data/templates/project/sass/partials/_media-queries.scss +6 -0
  49. data/templates/project/sass/partials/_mixins.scss +7 -0
  50. data/templates/project/sass/partials/_plugins.scss +4 -0
  51. data/templates/project/sass/partials/_reset.scss +5 -0
  52. data/templates/project/sass/partials/_table.scss +5 -0
  53. data/templates/project/sass/partials/_typography.scss +5 -0
  54. data/templates/project/sass/partials/_utilities.scss +5 -0
  55. data/templates/project/sass/partials/main/_footer.scss +10 -0
  56. data/templates/project/sass/partials/main/_header.scss +10 -0
  57. data/templates/project/sass/partials/main/_menus.scss +12 -0
  58. data/templates/project/sass/skins/default.scss +11 -0
  59. data/templates/project/sass/style.scss +120 -0
  60. data/templates/project/skins/default.css +3 -0
  61. data/templates/project/style.css +0 -0
  62. metadata +137 -0
@@ -0,0 +1,12 @@
1
+ // Main styles
2
+ // You can write your main styles(eg: content, article etc) here
3
+ // Or you can separate this main file into several files(eg: header.scss, footer.scss etc)
4
+ // =================================================================================
5
+
6
+ /*
7
+ * Sample seperate main styles
8
+ * See 'main' Folder
9
+ */
10
+ @import "main/header";
11
+ @import "main/menus";
12
+ @import "main/footer";
@@ -0,0 +1,6 @@
1
+ // Media Queries
2
+ // media queries syntax
3
+ // pros @Aris_FM
4
+ // =================================================================================
5
+
6
+ @import "pondasee/media-queries";
@@ -0,0 +1,7 @@
1
+ // Mixins Collections
2
+ // Feel free to customize this mixins collections
3
+ // =================================================================================
4
+
5
+ @import "pondasee/mixins";
6
+
7
+ // Your custom mixins here
@@ -0,0 +1,4 @@
1
+ // Plugins
2
+ // If your website or web application use a plugins/jquery plugins like lightbox,
3
+ // slider or anything else, put the styles here.
4
+ // =================================================================================
@@ -0,0 +1,5 @@
1
+ // Reset CSS
2
+ // Simpler version of Normalize.css + Eric Meyer Reset
3
+ // =================================================================================
4
+
5
+ @import "pondasee/reset";
@@ -0,0 +1,5 @@
1
+ // Table
2
+ // basic table styles
3
+ // =================================================================================
4
+
5
+ @import "pondasee/table";
@@ -0,0 +1,5 @@
1
+ // Typography
2
+ // Super basic typography styles
3
+ // =================================================================================
4
+
5
+ @import "pondasee/typography";
@@ -0,0 +1,5 @@
1
+ // Utilities
2
+ // Custom & helper classes
3
+ // =================================================================================
4
+
5
+ @import "pondasee/utilities";
@@ -0,0 +1,10 @@
1
+ // Footer style
2
+ // Sample footer style
3
+ // =================================================================================
4
+
5
+ /*
6
+ * Footer style
7
+ */
8
+ .site-footer {
9
+ display: block;
10
+ }
@@ -0,0 +1,10 @@
1
+ // Header style
2
+ // Sample header style
3
+ // =================================================================================
4
+
5
+ /*
6
+ * Header style
7
+ */
8
+ .site-header {
9
+ display: block;
10
+ }
@@ -0,0 +1,12 @@
1
+ // Menu style
2
+ // Sample menu style
3
+ // =================================================================================
4
+
5
+ /*
6
+ * Menu style
7
+ */
8
+ .main-navigation {
9
+ ul {
10
+ @include reset-list;
11
+ }
12
+ }
@@ -0,0 +1,11 @@
1
+ @import "compass";
2
+
3
+ // Default skin
4
+ // example default skin
5
+ // Author : Satrya - @msattt
6
+ // URL : http://tokokoo.com
7
+ // =================================================================================
8
+
9
+ body {
10
+ background: #fff;
11
+ }
@@ -0,0 +1,120 @@
1
+ @charset "utf-8";
2
+ /*
3
+ Theme Name: Pondasee
4
+ Theme URI:
5
+ Version: 1.0
6
+ Author: Satrya
7
+ Author URI: http://tokokoo.com
8
+ */
9
+
10
+ /*
11
+ Table of Contents
12
+ =============================================================================
13
+ - Reset Stylesheet
14
+ Simpler version of Normalize.css + Eric Meyer Reset
15
+ - Base
16
+ Baseline, selection & links
17
+ - Basic Responsive Grid
18
+ Grid basic
19
+ - Typography
20
+ Headings, text element, lists, code, and more
21
+ - Font Awesome
22
+ Font icons
23
+ - Form
24
+ Base styles for various input types and form layouts
25
+ - Table
26
+ Base styles for all tables
27
+ - Images
28
+ Basic and global styles for images, caption, & gallery
29
+ - Main
30
+ Global and main styles
31
+ - Utilities
32
+ List of helper classes (eg clearfix, alignment, etc)
33
+ - Plugins
34
+ Available plugins (eg slider, tooltip, lightbox, etc)
35
+ - Media Queries
36
+ Styles for responsive layouts
37
+ - Conditional IE class
38
+ Style for IE only
39
+ =============================================================================
40
+ */
41
+
42
+ @import "pondasee/settings";
43
+
44
+ /* =============================================================================
45
+ - Reset Stylesheet
46
+ Simpler version of Normalize.css + Eric Meyer Reset
47
+ ============================================================================= */
48
+ @import "partials/reset";
49
+
50
+ /* =============================================================================
51
+ - Base
52
+ Baseline, selection & links
53
+ ============================================================================= */
54
+ @import "partials/base";
55
+
56
+ /* =============================================================================
57
+ - Basic Responsive Grid
58
+ Grid basic
59
+ ============================================================================= */
60
+ @import "partials/grid";
61
+
62
+ /* =============================================================================
63
+ - Typography
64
+ Headings, text element, lists, code, and more
65
+ ============================================================================= */
66
+ @import "partials/typography";
67
+
68
+ /* =============================================================================
69
+ - Font Awesome
70
+ Font icons - http://fortawesome.github.com/Font-Awesome
71
+ ============================================================================= */
72
+ @import "partials/font-awesome";
73
+
74
+ /* =============================================================================
75
+ - Form
76
+ Base styles for various input types and form layouts
77
+ ============================================================================= */
78
+ @import "partials/forms";
79
+
80
+ /* =============================================================================
81
+ - Table
82
+ Base styles for all tables
83
+ ============================================================================= */
84
+ @import "partials/table";
85
+
86
+ /* =============================================================================
87
+ - Images
88
+ Basic and global styles for images, caption, & gallery
89
+ ============================================================================= */
90
+ @import "partials/images";
91
+
92
+ /* =============================================================================
93
+ - Main
94
+ Global and main styles
95
+ ============================================================================= */
96
+ @import "partials/main";
97
+
98
+ /* =============================================================================
99
+ - Utilities
100
+ List of helper classes (eg clearfix, alignment, etc)
101
+ ============================================================================= */
102
+ @import "partials/utilities";
103
+
104
+ /* =============================================================================
105
+ - Plugins
106
+ Available plugins (eg slider, tooltip, lightbox)
107
+ ============================================================================= */
108
+ @import "partials/plugins";
109
+
110
+ /* =============================================================================
111
+ - Media Queries
112
+ Styles for responsive layouts
113
+ ============================================================================= */
114
+ @import "partials/media-queries";
115
+
116
+ /* =============================================================================
117
+ - Conditional IE class
118
+ Style for IE only
119
+ ============================================================================= */
120
+ @import "partials/ie";
@@ -0,0 +1,3 @@
1
+ body {
2
+ background: #fff;
3
+ }
File without changes
metadata ADDED
@@ -0,0 +1,137 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pondasee
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.rc.2
5
+ prerelease: 4
6
+ platform: ruby
7
+ authors:
8
+ - M.Satrya
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-17 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: compass
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 0.10.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 0.10.0
30
+ - !ruby/object:Gem::Dependency
31
+ name: sass
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: 3.2.0.alpha.261
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: 3.2.0.alpha.261
46
+ description: A Compass extension for pondasee
47
+ email: support@tokokoo.com
48
+ executables: []
49
+ extensions: []
50
+ extra_rdoc_files: []
51
+ files:
52
+ - README.mkdn
53
+ - LICENSE
54
+ - VERSION
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
+ - stylesheets/_pondasee.scss
75
+ - templates/project/config.rb
76
+ - templates/project/fonts/fontawesome-webfont.eot
77
+ - templates/project/fonts/fontawesome-webfont.svg
78
+ - templates/project/fonts/fontawesome-webfont.ttf
79
+ - templates/project/fonts/fontawesome-webfont.woff
80
+ - templates/project/humans.txt
81
+ - templates/project/img/button.png
82
+ - templates/project/img/overlay-button.png
83
+ - templates/project/img/select_arrow.gif
84
+ - templates/project/index.html
85
+ - templates/project/js/methods.js
86
+ - templates/project/js/plugins.js
87
+ - templates/project/js/vendor/jquery-1.7.2.min.js
88
+ - templates/project/js/vendor/modernizr-2.5.3.min.js
89
+ - templates/project/js/vendor/nwmatcher-1.2.5-min.js
90
+ - templates/project/js/vendor/selectivizr-min.js
91
+ - templates/project/manifest.rb
92
+ - templates/project/sass/partials/main/_footer.scss
93
+ - templates/project/sass/partials/main/_header.scss
94
+ - templates/project/sass/partials/main/_menus.scss
95
+ - templates/project/sass/partials/_base.scss
96
+ - templates/project/sass/partials/_font-awesome.scss
97
+ - templates/project/sass/partials/_forms.scss
98
+ - templates/project/sass/partials/_grid.scss
99
+ - templates/project/sass/partials/_ie.scss
100
+ - templates/project/sass/partials/_images.scss
101
+ - templates/project/sass/partials/_main.scss
102
+ - templates/project/sass/partials/_media-queries.scss
103
+ - templates/project/sass/partials/_mixins.scss
104
+ - templates/project/sass/partials/_plugins.scss
105
+ - templates/project/sass/partials/_reset.scss
106
+ - templates/project/sass/partials/_table.scss
107
+ - templates/project/sass/partials/_typography.scss
108
+ - templates/project/sass/partials/_utilities.scss
109
+ - templates/project/sass/skins/default.scss
110
+ - templates/project/sass/style.scss
111
+ - templates/project/skins/default.css
112
+ - templates/project/style.css
113
+ homepage: http://github.com/tokokoo/compass-pondasee
114
+ licenses: []
115
+ post_install_message:
116
+ rdoc_options: []
117
+ require_paths:
118
+ - lib
119
+ required_ruby_version: !ruby/object:Gem::Requirement
120
+ none: false
121
+ requirements:
122
+ - - ! '>='
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ required_rubygems_version: !ruby/object:Gem::Requirement
126
+ none: false
127
+ requirements:
128
+ - - ! '>'
129
+ - !ruby/object:Gem::Version
130
+ version: 1.3.1
131
+ requirements: []
132
+ rubyforge_project:
133
+ rubygems_version: 1.8.24
134
+ signing_key:
135
+ specification_version: 3
136
+ summary: Front-end starter kit for compass extension
137
+ test_files: []