pondasee 1.5.1 → 2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. data/VERSION +1 -1
  2. data/templates/project/index.html +3 -4
  3. data/templates/project/js/plugins.js +17 -19
  4. data/templates/project/js/vendor/jquery-1.8.2.min.js +2 -0
  5. data/templates/project/js/vendor/modernizr-2.6.2.min.js +4 -0
  6. data/templates/project/manifest.rb +5 -22
  7. data/templates/project/sass/partials/_forms.scss +1 -301
  8. data/templates/project/sass/partials/_grid.scss +7 -5
  9. data/templates/project/sass/partials/_ie.scss +8 -0
  10. data/templates/project/sass/partials/_images.scss +3 -161
  11. data/templates/project/sass/partials/_main.scss +1 -10
  12. data/templates/project/sass/partials/_media-queries.scss +0 -18
  13. data/templates/project/sass/partials/_mixins.scss +19 -2
  14. data/templates/project/sass/partials/_plugins.scss +1 -2
  15. data/templates/project/sass/partials/_reset.scss +21 -27
  16. data/templates/project/sass/partials/_utilities.scss +32 -15
  17. data/templates/project/sass/partials/_variable.scss +5 -10
  18. data/templates/project/sass/partials/mixins/_fonts.scss +3 -13
  19. data/templates/project/sass/style.scss +17 -49
  20. data/templates/project/style.css +835 -0
  21. metadata +9 -25
  22. data/templates/project/fonts/fontawesome-webfont.eot +0 -0
  23. data/templates/project/fonts/fontawesome-webfont.svg +0 -255
  24. data/templates/project/fonts/fontawesome-webfont.ttf +0 -0
  25. data/templates/project/fonts/fontawesome-webfont.woff +0 -0
  26. data/templates/project/humans.txt +0 -42
  27. data/templates/project/img/button.png +0 -0
  28. data/templates/project/img/overlay-button.png +0 -0
  29. data/templates/project/img/select_arrow.gif +0 -0
  30. data/templates/project/js/vendor/jquery-1.7.2.min.js +0 -4
  31. data/templates/project/js/vendor/modernizr-2.6.1.min.js +0 -4
  32. data/templates/project/js/vendor/nwmatcher-1.2.5-min.js +0 -7
  33. data/templates/project/sass/partials/_font-awesome.scss +0 -299
  34. data/templates/project/sass/partials/main/_footer.scss +0 -10
  35. data/templates/project/sass/partials/main/_header.scss +0 -10
  36. data/templates/project/sass/partials/main/_menus.scss +0 -12
  37. data/templates/project/sass/partials/mixins/_zurb-button.scss +0 -105
  38. data/templates/project/sass/skins/default.scss +0 -11
  39. data/templates/project/skins/default.css +0 -3
@@ -5,18 +5,8 @@
5
5
  /* CLEARFIX
6
6
  http://nicolasgallagher.com/micro-clearfix-hack/
7
7
  ----------------- */
8
- .clearfix:before,
9
- .clearfix:after {
10
- content: "";
11
- display: table;
12
- }
13
-
14
- .clearfix:after {
15
- clear: both;
16
- }
17
-
18
- .clearfix {
19
- *zoom: 1;
8
+ .clearfix {
9
+ @include clearfix;
20
10
  }
21
11
 
22
12
  /* CLEAR ELEMENT
@@ -30,12 +20,39 @@
30
20
  height: 0;
31
21
  }
32
22
 
33
- /* INLINE-BLOCK
34
- ----------------- */
23
+ /* Inline-Block
24
+ -------------------- */
35
25
  .iblock {
36
26
  @include inline-block;
37
27
  }
38
28
 
29
+ /* Break text
30
+ -------------------- */
31
+ .break {
32
+ word-break: break-all;
33
+ word-break: break-word;
34
+ word-wrap: break-word;
35
+ }
36
+
37
+ /* Truncate text
38
+ -------------------- */
39
+ .truncate {
40
+ max-width: 100%;
41
+ overflow: hidden;
42
+ text-overflow: ellipsis;
43
+ white-space: nowrap;
44
+ word-wrap: normal;
45
+ }
46
+
47
+ /* Hide text
48
+ -------------------- */
49
+ .hide-text {
50
+ overflow: hidden;
51
+ text-align: left;
52
+ text-indent: -119988px;
53
+ }
54
+
55
+
39
56
  /* IMAGE REPLACEMENT
40
57
  ----------------- */
41
58
  .ir {
@@ -160,7 +177,7 @@ hr {
160
177
  }
161
178
  }
162
179
 
163
- /* MISC CLASSES
180
+ /* POSITIONING
164
181
  ----------------- */
165
182
  .first {
166
183
  margin-left: 0;
@@ -4,13 +4,8 @@
4
4
 
5
5
  // Grid & baseline setup
6
6
  // ------------------
7
- $base-font-size : 16px;
8
- $base-line-height : 24px;
9
- $grid-background-baseline-color : rgba(black, .05);
10
- $grid-background-column-color : rgba(red, .1);
11
- $grid-background-total-columns : 24;
12
- $grid-background-column-width : 20px;
13
- $grid-background-gutter-width : 20px;
7
+ $base-font-size : 16px;
8
+ $base-line-height : 24px;
14
9
 
15
10
  // Global Palettes
16
11
  // ------------------
@@ -36,10 +31,10 @@ $altColor : $gray !default;
36
31
  // Link Palettes
37
32
  // -------------------------
38
33
  $linkColor : #00baff !default;
39
- $linkHover : darken($linkColor, 10%) !default;
40
- $linkVisited : darken($linkHover, 5%) !default;
34
+ $linkHover : darken( $linkColor, 10% ) !default;
35
+ $linkVisited : darken( $linkHover, 5% ) !default;
41
36
  $linkFocus : $linkHover !default;
42
- $linkActive : lighten(adjust-hue($linkColor, 75deg), 10%) !default;
37
+ $linkActive : lighten( $linkColor, 10% ) !default;
43
38
 
44
39
 
45
40
  // ================================================================================
@@ -2,30 +2,20 @@
2
2
  // Feel free to customize it!
3
3
  // =================================================================================
4
4
 
5
- // Font awesome
6
- // ------------------
7
- @include font-face (
8
- 'FontAwesome',
9
- font-files(
10
- 'fontawesome-webfont.woff', woff,
11
- 'fontawesome-webfont.ttf', truetype,
12
- 'fontawesome-webfont.svg#FontAwesome', svg),
13
- 'fontawesome-webfont.eot',
14
- normal,
15
- normal
16
- );
17
-
18
5
  // Font mixins
19
6
  // ------------------
20
7
  @mixin ff-text {
21
8
  font-family: $arial; // Global font
22
9
  }
10
+
23
11
  @mixin ff-heading {
24
12
  font-family: $arial; // Heading font
25
13
  }
14
+
26
15
  @mixin ff-decorative{
27
16
  font-family: $cursive;
28
17
  }
18
+
29
19
  @mixin ff-mono{
30
20
  font-family: $consolas;
31
21
  }
@@ -1,41 +1,27 @@
1
1
  @charset "utf-8";
2
2
  /*
3
- Theme Name: Pondasee
3
+ Theme Name: Pondasee
4
4
  Theme URI:
5
- Version: 1.0
6
- Author: Satrya
7
- Author URI: http://tokokoo.com
5
+ Version: 2.0
6
+ Author: Satrya
7
+ Author URI: http://tokokoo.com
8
8
  */
9
9
 
10
10
  /*
11
11
  Table of Contents
12
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
13
+ 0 Reset Stylesheet
14
+ 1 Base
15
+ 2 Grid Layout
16
+ 3 Typography
17
+ 4 Form
18
+ 5 Table
19
+ 6 Images
20
+ 7 Main
21
+ 8 Utilities
22
+ 9 Plugins
23
+ 10 Media Queries
24
+ 11 Conditional IE class
39
25
  =============================================================================
40
26
  */
41
27
 
@@ -45,78 +31,60 @@ Author URI: http://tokokoo.com
45
31
 
46
32
  /* =============================================================================
47
33
  - Reset Stylesheet
48
- Simpler version of Normalize.css + Eric Meyer Reset
49
34
  ============================================================================= */
50
35
  @import "partials/reset";
51
36
 
52
37
  /* =============================================================================
53
38
  - Base
54
- Baseline, selection & links
55
39
  ============================================================================= */
56
40
  @import "partials/base";
57
41
 
58
42
  /* =============================================================================
59
- - Basic Responsive Grid
60
- Grid basic
43
+ - Grid Layout
61
44
  ============================================================================= */
62
45
  @import "partials/grid";
63
46
 
64
47
  /* =============================================================================
65
48
  - Typography
66
- Headings, text element, lists, code, and more
67
49
  ============================================================================= */
68
50
  @import "partials/typography";
69
51
 
70
- /* =============================================================================
71
- - Font Awesome
72
- Font icons - http://fortawesome.github.com/Font-Awesome
73
- ============================================================================= */
74
- @import "partials/font-awesome";
75
-
76
52
  /* =============================================================================
77
53
  - Form
78
- Base styles for various input types and form layouts
79
54
  ============================================================================= */
80
55
  @import "partials/forms";
81
56
 
82
57
  /* =============================================================================
83
58
  - Table
84
- Base styles for all tables
85
59
  ============================================================================= */
86
60
  @import "partials/table";
87
61
 
88
62
  /* =============================================================================
89
63
  - Images
90
- Basic and global styles for images, caption, & gallery
91
64
  ============================================================================= */
92
65
  @import "partials/images";
93
66
 
94
67
  /* =============================================================================
95
68
  - Main
96
- Global and main styles
97
69
  ============================================================================= */
98
70
  @import "partials/main";
99
71
 
100
72
  /* =============================================================================
101
73
  - Utilities
102
- List of helper classes (eg clearfix, alignment, etc)
103
74
  ============================================================================= */
104
75
  @import "partials/utilities";
105
76
 
106
77
  /* =============================================================================
107
78
  - Plugins
108
- Available plugins (eg slider, tooltip, lightbox)
109
79
  ============================================================================= */
110
80
  @import "partials/plugins";
111
81
 
112
82
  /* =============================================================================
113
83
  - Media Queries
114
- Styles for responsive layouts
115
84
  ============================================================================= */
116
85
  @import "partials/media-queries";
117
86
 
118
87
  /* =============================================================================
119
88
  - Conditional IE class
120
- Style for IE only
121
89
  ============================================================================= */
122
90
  @import "partials/ie";