proevo 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
data/.gemspec CHANGED
@@ -5,10 +5,10 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = nil
8
- s.version = "0.2.3"
8
+ s.version = "0.2.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
- s.date = %q{2011-08-19}
11
+ s.date = %q{2011-08-26}
12
12
  s.extra_rdoc_files = [
13
13
  "LICENSE.txt",
14
14
  "README.mkdn",
@@ -24,12 +24,13 @@ Gem::Specification.new do |s|
24
24
  "README.rdoc",
25
25
  "Rakefile",
26
26
  "VERSION",
27
+ "config.rb",
27
28
  "lib/proevo.rb",
28
29
  "proevo.gemspec",
29
30
  "stylesheets/_proevo.scss",
30
31
  "stylesheets/proevo/_base.scss",
31
- "stylesheets/proevo/_forms.scss",
32
32
  "stylesheets/proevo/_layout.scss",
33
+ "templates/project/index.html",
33
34
  "templates/project/js/jquery-1.5.1.min.js",
34
35
  "templates/project/js/jquery-ui-1.8.6.custom.min.js",
35
36
  "templates/project/js/modernizr-1.7.min.js",
data/Rakefile CHANGED
@@ -1,5 +1,7 @@
1
1
  # encoding: utf-8
2
2
 
3
+ require 'sass'
4
+ require 'compass'
3
5
  require 'rubygems'
4
6
  require 'bundler'
5
7
  begin
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.3
1
+ 0.2.4
@@ -0,0 +1,24 @@
1
+ # Require any additional compass plugins here.
2
+
3
+ # Set this to the root of your project when deployed:
4
+ http_path = "/"
5
+ css_dir = "stylesheets"
6
+ sass_dir = "sass"
7
+ images_dir = "images"
8
+ javascripts_dir = "javascripts"
9
+
10
+ # You can select your preferred output style here (can be overridden via the command line):
11
+ # output_style = :expanded or :nested or :compact or :compressed
12
+
13
+ # To enable relative paths to assets via compass helper functions. Uncomment:
14
+ # relative_assets = true
15
+
16
+ # To disable debugging comments that display the original location of your selectors. Uncomment:
17
+ # line_comments = false
18
+
19
+
20
+ # If you prefer the indented syntax, you might want to regenerate this
21
+ # project again passing --syntax sass, or you can uncomment this:
22
+ # preferred_syntax = :sass
23
+ # and then run:
24
+ # sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{proevo}
8
- s.version = "0.2.3"
8
+ s.version = "0.2.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = [%q{Jamie}]
12
- s.date = %q{2011-08-19}
12
+ s.date = %q{2011-08-26}
13
13
  s.description = %q{Styles and layout for Project Evolution. Developed in compass.}
14
14
  s.email = %q{jamie@projectevolution.com}
15
15
  s.extra_rdoc_files = [
@@ -27,12 +27,13 @@ Gem::Specification.new do |s|
27
27
  "README.rdoc",
28
28
  "Rakefile",
29
29
  "VERSION",
30
+ "config.rb",
30
31
  "lib/proevo.rb",
31
32
  "proevo.gemspec",
32
33
  "stylesheets/_proevo.scss",
33
34
  "stylesheets/proevo/_base.scss",
34
- "stylesheets/proevo/_forms.scss",
35
35
  "stylesheets/proevo/_layout.scss",
36
+ "templates/project/index.html",
36
37
  "templates/project/js/jquery-1.5.1.min.js",
37
38
  "templates/project/js/jquery-ui-1.8.6.custom.min.js",
38
39
  "templates/project/js/modernizr-1.7.min.js",
@@ -11,5 +11,4 @@
11
11
 
12
12
  // Import Styles --------------------------------------------------------------------
13
13
  @import "proevo/base";
14
- @import "proevo/forms";
15
14
  @import "proevo/layout";
@@ -7,43 +7,140 @@
7
7
  @import "compass/css3/inline-block";
8
8
  @import "compass/support";
9
9
 
10
- $default-color: #444;
11
- $default-color-lite: $default-color + #555;
10
+ // Text default colors
11
+ $default-color: #222;
12
+ $default-color-lite: #777;
12
13
 
13
- $primary-color: #019F48;
14
- $primary-color-neon: #00D761;
15
- $primary-color-dark: #006D33;
16
- $primary-color-muted: #74AB8E;
17
- $primary-color-lite: #DDEDE4;
14
+ // Layout default colors
15
+ $primary-color: #eee;
16
+ $primary-color-neon: #fff;
17
+ $primary-color-dark: #222;
18
+ $primary-color-muted: #ccc;
19
+ $primary-color-lite: #eee;
18
20
 
19
21
  @mixin ul_base {
20
- @include clearfix;
21
- list-style-type:none;
22
-
23
- li {
24
- border-right:solid 1px #bbb;
25
- display:block;
26
- float:left;
27
- line-height:1em;
28
- padding:2px 15px;
29
-
30
- a {
31
- color:#666;
32
- text-decoration:none;
33
- }
34
-
35
- a:hover {
36
- color:#111;
37
- }
38
- }
22
+ ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
23
+ dd { margin: 0 0 0 40px; }
24
+ nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
25
+ }
26
+
27
+ @mixin a_base {
28
+ a { color: $default-color; }
29
+ a:visited { color: $default-color-lite; }
30
+ a:hover { color: $default-color-lite; }
31
+ a:focus { outline: thin dotted; }
39
32
 
40
- li:first-child {
41
- padding-left:2px;
42
- }
33
+ /* Improve readability when focused and hovered in all browsers: h5bp.com/h */
34
+ a:hover, a:active { outline: 0; }
35
+ }
36
+
37
+ @mixin typo_base {
38
+ font-size: 13px;
39
+ line-height: 1.231;
40
+ font-family: sans-serif;
41
+ color: $default-color;
42
+
43
+ button, input, select, textarea { font-family: sans-serif; color: $default-color; }
44
+ abbr[title] { border-bottom: 1px dotted; }
45
+
46
+ b, strong { font-weight: bold; }
47
+
48
+ big { font-weight: bold; font-size: 115%; }
49
+
50
+ blockquote { margin: 1em 40px; }
51
+
52
+ cite { font-size: .85em; margin: 1em 40px; }
53
+
54
+ code, samp, kbd, var { margin: 1em 40px; background-color: $primary-color-lite; }
55
+
56
+ del { background: $primary-color-muted; color: $default-color-lite; text-decoration: none; }
57
+
58
+ details, summary { display: none; }
59
+
60
+ dfn, tt, i { font-style: italic; }
61
+
62
+ hr { display: block; height: 1px; border: 0; border-top: 1px solid $primary-color-muted; margin: 1em 0; padding: 0; }
43
63
 
44
- li:last-child {
45
- border:none;
46
- padding-right:2px;
64
+ ins { background: $primary-color; color: $default-color; text-decoration: none; }
65
+
66
+ mark { background: $primary-color; color: $default-color; font-style: italic; font-weight: bold; }
67
+
68
+ /* Redeclare monospace font family: h5bp.com/j */
69
+ pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }
70
+
71
+ /* Improve readability of pre-formatted text in all browsers */
72
+ pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
73
+
74
+ q { quotes: none; }
75
+ q:before, q:after { content: ""; content: none; }
76
+
77
+ s, strike { text-decoration: line-through; color: $primary-color-lite; }
78
+
79
+ small { font-size: 85%; }
80
+
81
+ /* Position subscript and superscript content without affecting line-height: h5bp.com/k */
82
+ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
83
+ sup { top: -0.5em; }
84
+ sub { bottom: -0.25em; }
85
+ }
86
+
87
+ @mixin img_base {
88
+ img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; display: block; }
89
+ svg:not(:root) { overflow: hidden; }
90
+ }
91
+
92
+ @mixin html5_base {
93
+ article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
94
+ audio, canvas, video,command, mark, meter, time { display: inline-block; *display: inline; *zoom: 1; }
95
+ audio:not([controls]) { display: none; }
96
+ [hidden] { display: none; }
97
+ ::-moz-selection { background: $primary-color-lite; color: $primary-color-neon; text-shadow: none; }
98
+ ::selection { background: $primary-color-lite; color: $primary-color-neon; text-shadow: none; }
99
+ figure { margin: 0; }
100
+ }
101
+
102
+ @mixin form_base {
103
+ form {
104
+ margin: 0;
105
+ fieldset { border: 0; margin: 0; padding: 0; }
106
+ legend { border: 0; *margin-left: -7px; padding: 0; }
107
+ label { font-weight: bold; color: $primary-color; border-bottom: dotted 1px $primary-color-muted; }
108
+ button, input, select, textarea, keygen, output { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
109
+ button, input { line-height: normal; *overflow: visible; }
110
+ table button, table input { *overflow: auto; }
111
+ button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }
112
+ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
113
+ input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
114
+ input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
115
+ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
116
+ textarea { overflow: auto; vertical-align: top; resize: vertical; }
117
+ input:valid, textarea:valid { }
118
+ input:invalid, textarea:invalid { background-color: $primary-color-lite; }
119
+ datalist { margin: 1em 0; padding: 0 0 0 40px; }
120
+ }
121
+ }
122
+
123
+ @mixin table_base {
124
+ table {
125
+ margin: 0;
126
+ padding: 0;
127
+ border-collapse: collapse;
128
+ border-spacing: 0;
129
+ caption { font-weight: bold; }
130
+ td, tr, th {
131
+ margin: 0;
132
+ padding: 0;
133
+ vertical-align: top;
134
+ }
47
135
  }
48
136
  }
49
137
 
138
+ html {
139
+ font-size: 100%;
140
+ overflow-y: scroll;
141
+ -webkit-text-size-adjust: 100%;
142
+ -ms-text-size-adjust: 100%;
143
+ body {
144
+
145
+ }
146
+ }
@@ -13,8 +13,56 @@ body {
13
13
  // Or leave it in if you're happy with how blueprint looks out-of-the-box
14
14
  }
15
15
 
16
+ // Basic four column layout for default
17
+
16
18
  $blueprint-grid-columns: 4;
17
19
  $blueprint-grid-width: 225px;
18
20
  $blueprint-grid-margin: 30px;
19
21
  $blueprint-grid-outer-width: $blueprint-grid-width + $blueprint-grid-margin;
20
- $blueprint-container-size: $blueprint-grid-outer-width * $blueprint-grid-columns - $blueprint-grid-margin;
22
+ $blueprint-container-size: $blueprint-grid-outer-width * $blueprint-grid-columns - $blueprint-grid-margin;
23
+
24
+ body {
25
+ div, header, footer, section { min-height: 100px; } // Temp height so we can see what is going on.
26
+ .site-container {
27
+ width: 100%;
28
+ header, footer {
29
+ width: 100%;
30
+ nav {
31
+ $blueprint-container-size;
32
+ margin: 0 auto;
33
+ ul {
34
+ list-style-type: none;
35
+ li {
36
+ float: right;
37
+ padding: 3px 5px;
38
+ margin: 0px 5px;
39
+ border-left: 1px solid $primary-color-dark;
40
+ border-right: 1px solid $primary-color-dark;
41
+ }
42
+ }
43
+ }
44
+ }
45
+ section {
46
+ width: $blueprint-container-size;
47
+ margin: 0 auto;
48
+ padding: 0;
49
+ aside {
50
+ @include column(1);
51
+ }
52
+ .content {
53
+ @include column(3, $last: true);
54
+ }
55
+ &.home {
56
+ .content { width: $blueprint-container-size; }
57
+ section {
58
+ .mission {
59
+ @include column(2);
60
+ }
61
+ .news {
62
+ @include column(2, $last: true);
63
+ }
64
+ }
65
+ }
66
+ }
67
+ }
68
+ }
@@ -0,0 +1,115 @@
1
+ <!doctype html>
2
+ <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
3
+ <!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
4
+ <!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
5
+ <!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
6
+ <!-- Consider adding an manifest.appcache: h5bp.com/d/Offline -->
7
+ <!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
8
+ <head>
9
+ <meta charset="utf-8">
10
+
11
+ <!-- Use the .htaccess and remove these lines to avoid edge case issues.
12
+ More info: h5bp.com/b/378 -->
13
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
14
+
15
+ <title></title>
16
+ <meta name="description" content="">
17
+ <meta name="author" content="">
18
+
19
+ <!-- Mobile viewport optimized: j.mp/bplateviewport -->
20
+ <meta name="viewport" content="width=device-width,initial-scale=1">
21
+
22
+ <!-- Place favicon.ico and apple-touch-icon.png in the root directory: mathiasbynens.be/notes/touch-icons -->
23
+
24
+ <!-- CSS: implied media=all -->
25
+ <!-- CSS concatenated and minified via ant build script-->
26
+ <link rel="stylesheet" href="stylesheets/style.css">
27
+ <!-- end CSS-->
28
+
29
+ <!-- More ideas for your <head> here: h5bp.com/d/head-Tips -->
30
+
31
+ <!-- All JavaScript at the bottom, except for Modernizr / Respond.
32
+ Modernizr enables HTML5 elements & feature detects; Respond is a polyfill for min/max-width CSS3 Media Queries
33
+ For optimal performance, use a custom Modernizr build: www.modernizr.com/download/ -->
34
+ <script src="js/libs/modernizr-2.0.6.min.js"></script>
35
+ </head>
36
+
37
+ <body>
38
+
39
+ <div class="site-container">
40
+ <header>
41
+ <nav>
42
+ <ul>
43
+ <li><a>Home</a></li>
44
+ <li><a>About</a></li>
45
+ <li><a>Products</a></li>
46
+ <li><a>Mission</a></li>
47
+ </ul>
48
+ </nav>
49
+ </header>
50
+
51
+ <section>
52
+ <aside>
53
+ <p>
54
+ Fanny pack quinoa williamsburg fixie sunt. Velit keytar minim yr, sustainable helvetica viral. Four loko williamsburg trust fund mollit nostrud incididunt. Wayfarers messenger bag 8-bit locavore irony chambray. Squid PBR photo booth american apparel twee. Est scenester velit chambray deserunt, do letterpress in +1 non. Fugiat american apparel banh mi, minim bicycle rights high life 3 wolf moon keffiyeh cred ut veniam nisi do marfa labore.
55
+ </p>
56
+ </aside>
57
+ <div class="content">
58
+ <p>
59
+ Keffiyeh fanny pack veniam thundercats. Carles sustainable wes anderson jean shorts dolor fap, marfa brunch. Carles four loko voluptate whatever nisi. Cardigan ullamco tempor, keytar irure lo-fi consequat sed lomo you probably haven't heard of them vero single-origin coffee wolf vegan. Sustainable artisan cillum elit. Nisi sed fap, carles officia eu american apparel quis fugiat. Locavore hoodie qui thundercats sapiente, excepteur put a bird on it in dolor occaecat minim.
60
+ </p>
61
+
62
+ <p>
63
+ Irure aliqua food truck, exercitation high life keytar gluten-free do blog jean shorts dolore tumblr yr. Wayfarers sapiente adipisicing PBR, you probably haven't heard of them voluptate nihil lo-fi magna biodiesel quinoa vegan Austin. Keytar do skateboard, irure ullamco pitchfork blog Austin mixtape wes anderson sed ea locavore. In craft beer pitchfork et excepteur. Austin enim culpa, magna ex cred american apparel deserunt. Mcsweeney's non homo readymade. Artisan fanny pack tofu, cardigan vero sartorial et ad letterpress scenester mlkshk skateboard vinyl yr.
64
+ </p>
65
+
66
+ <p>
67
+ Freegan etsy vero squid, tempor echo park incididunt aesthetic officia in eiusmod 3 wolf moon accusamus. Dolor sartorial nisi, etsy freegan cliche sapiente. Before they sold out culpa pitchfork exercitation, ullamco cillum minim mcsweeney's reprehenderit craft beer locavore iphone. Cupidatat mcsweeney's dolore mollit, master cleanse duis accusamus minim organic sunt laboris placeat. Est iphone squid beard, marfa sartorial retro et etsy DIY consequat placeat. Cred cillum ea, next level jean shorts freegan sed +1. Accusamus tempor VHS dolor laboris sed organic twee fap, tofu tattooed.
68
+ </p>
69
+ </div>
70
+ </section>
71
+
72
+ <footer>
73
+ <nav>
74
+ <ul>
75
+ <li><a>Home</a></li>
76
+ <li><a>About</a></li>
77
+ <li><a>Products</a></li>
78
+ <li><a>Mission</a></li>
79
+ </ul>
80
+ </nav>
81
+ </footer>
82
+ </div> <!--! end of .site-container -->
83
+
84
+
85
+ <!-- JavaScript at the bottom for fast page loading -->
86
+
87
+ <!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline -->
88
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
89
+ <script>window.jQuery || document.write('<script src="js/libs/jquery-1.6.2.min.js"><\/script>')</script>
90
+
91
+
92
+ <!-- scripts concatenated and minified via ant build script-->
93
+ <script defer src="js/plugins.js"></script>
94
+ <script defer src="js/script.js"></script>
95
+ <!-- end scripts-->
96
+
97
+
98
+ <!-- Change UA-XXXXX-X to be your site's ID -->
99
+ <script>
100
+ window._gaq = [['_setAccount','UAXXXXXXXX1'],['_trackPageview'],['_trackPageLoadTime']];
101
+ Modernizr.load({
102
+ load: ('https:' == location.protocol ? '//ssl' : '//www') + '.google-analytics.com/ga.js'
103
+ });
104
+ </script>
105
+
106
+
107
+ <!-- Prompt IE 6 users to install Chrome Frame. Remove this if you want to support IE 6.
108
+ chromium.org/developers/how-tos/chrome-frame-getting-started -->
109
+ <!--[if lt IE 7 ]>
110
+ <script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
111
+ <script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
112
+ <![endif]-->
113
+
114
+ </body>
115
+ </html>
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: proevo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 17
4
+ hash: 31
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 3
10
- version: 0.2.3
9
+ - 4
10
+ version: 0.2.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jamie
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-08-19 00:00:00 Z
18
+ date: 2011-08-26 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  version_requirements: &id001 !ruby/object:Gem::Requirement
@@ -97,12 +97,13 @@ files:
97
97
  - README.rdoc
98
98
  - Rakefile
99
99
  - VERSION
100
+ - config.rb
100
101
  - lib/proevo.rb
101
102
  - proevo.gemspec
102
103
  - stylesheets/_proevo.scss
103
104
  - stylesheets/proevo/_base.scss
104
- - stylesheets/proevo/_forms.scss
105
105
  - stylesheets/proevo/_layout.scss
106
+ - templates/project/index.html
106
107
  - templates/project/js/jquery-1.5.1.min.js
107
108
  - templates/project/js/jquery-ui-1.8.6.custom.min.js
108
109
  - templates/project/js/modernizr-1.7.min.js
@@ -1,17 +0,0 @@
1
- // Base form styles for inputs textareas etc
2
-
3
- @mixin input_base {
4
- background: url(../img/input-bg.png) 0 0 repeat-x #fff;
5
- border: 1px solid #c3c3c3;
6
- @include border-radius;
7
- @include box-shadow(rgba(250,250,250,0.75) 0 0 5px, #ccc 0 0 5px inset);
8
- color: #999;
9
- font-family: $default-font;
10
- font-size: 1.1em;
11
- height: 32px;
12
- line-height: 32px;
13
- min-width: 38px;
14
- padding: 0 10px;
15
- text-align: left;
16
- vertical-align: top;
17
- }