si_styles 0.0.1

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.
@@ -0,0 +1,89 @@
1
+ // Two-tier color variable system
2
+
3
+ /* color definitions */
4
+ $white: hsla(0,0%,100%,1);
5
+ $black: #111;
6
+ $off-white: hsla(200,13%,95%,1);
7
+ $off-white-dark: hsla(192,9%,89%,1);
8
+ $blue: hsla(200,100%,40%,1);
9
+ $grey: hsla(203,18%,36%,1);
10
+ $dark-grey: hsla(203,18%,25%,1);
11
+ $black: hsla(206,17%,10%,1);
12
+ $orangered: hsla(7,100%,64%,1);
13
+ $orangered-dark: hsla(7,77%,27%,1);
14
+
15
+
16
+ /* Use descriptive variable names */
17
+
18
+ // text
19
+ $color-text: $grey; /* alt: hsla(203,12%,35%,1) */
20
+ $color-text-headline: $grey;
21
+ $color-text-lead: $grey;
22
+ $color-text-link: #3ca3da;
23
+ $color-text-link-hover: $dark-grey;
24
+ $color-text-link-active: $grey;
25
+
26
+ //background
27
+ $color-background-primary: $white;
28
+ $color-background-secondary: $off-white;
29
+ $color-background-primary-dark: $dark-grey;
30
+ $color-background-secondary-dark: $grey;
31
+ $color-background-accent: $orangered;
32
+
33
+ // buttons
34
+ $btn-primary-text: $white;
35
+ $btn-primary-gradient-top: #41b0ec;
36
+ $btn-primary-gradient-bottom: #3ca3da;
37
+ $btn-primary-background: linear-gradient( $btn-primary-gradient-top, $btn-primary-gradient-bottom );
38
+ $btn-primary-background-hover: #4dc1ff;
39
+ $btn-primary-background-active: linear-gradient( $btn-primary-gradient-top, $btn-primary-gradient-bottom );
40
+ $btn-primary-border: #2a84b4;
41
+ $btn-primary-border-active: #2f98d0;
42
+
43
+ $btn-secondary-text: $grey;
44
+ $btn-secondary-background: #f3f4f5;
45
+ $btn-secondary-background-active: #e0e4e5;
46
+ $btn-secondary-border: #dbdbdb;
47
+ $btn-secondary-border-hover: #c2c2c2;
48
+
49
+ $btn-strong-text: $white;
50
+ $btn-strong-gradient-top: #ff5c46;
51
+ $btn-strong-gradient-bottom: #cc4837;
52
+ $btn-strong-background: linear-gradient( $btn-strong-gradient-top, $btn-strong-gradient-bottom );
53
+ $btn-strong-background-hover: #ff5c46;
54
+ $btn-strong-background-active: linear-gradient( $btn-strong-gradient-top, $btn-strong-gradient-bottom );
55
+ $btn-strong-border: #82291d;
56
+ $btn-strong-border-active: #c24535;
57
+
58
+ $btn-disabled-text: $white;
59
+ $btn-disabled-gradient-top: $off-white-dark;
60
+ $btn-disabled-gradient-bottom: darken($off-white-dark, 5%);
61
+ $btn-disabled-background: linear-gradient( $btn-disabled-gradient-top, $btn-disabled-gradient-bottom );
62
+ $btn-disabled-border: darken($off-white-dark, 10%);
63
+
64
+ // Toggle Links
65
+ $tl-border: #196B9A;
66
+ $tl-link-border: #22729F;
67
+ $tl-link-border-active: hsla(204,19%,26%,1);
68
+ $tl-background-light: #43b2ed;
69
+ $tl-background-dark: #1990cd;
70
+ $tl-background-hover-light: #47bfff;
71
+ $tl-background-hover-dark: #1ca2e5;
72
+ $tl-background-active-light: #445763;
73
+ $tl-background-active-dark: #34424b;
74
+ $tl-background: linear-gradient( $tl-background-light, $tl-background-dark );
75
+ $tl-background-hover: linear-gradient( $tl-background-hover-light, $tl-background-hover-dark );
76
+ $tl-background-active: linear-gradient( $tl-background-active-light, $tl-background-active-dark );
77
+
78
+ $tl-dark-border: hsla(204,18%,16%,1);
79
+ $tl-dark-link-border: hsla(204,18%,16%,1);
80
+ $tl-dark-link-border-active: hsla(203,28%,16%,1);
81
+ $tl-dark-background-light: #445763;
82
+ $tl-dark-background-dark: #34424b;
83
+ $tl-dark-background-hover-light: lighten( $tl-dark-background-light, 5% );
84
+ $tl-dark-background-hover-dark: lighten( $tl-dark-background-dark, 5% );
85
+ $tl-dark-background-active-light: hsla(203,28%,16%,1) ;
86
+ $tl-dark-background-active-dark: hsla(205,18%,19%,1);
87
+ $tl-dark-background: linear-gradient( $tl-dark-background-light, $tl-dark-background-dark );
88
+ $tl-dark-background-hover: linear-gradient( $tl-dark-background-hover-light, $tl-dark-background-hover-dark );
89
+ $tl-dark-background-active: linear-gradient( $tl-dark-background-active-light, $tl-dark-background-active-dark );
@@ -0,0 +1,10 @@
1
+ $default-border-radius: 5px;
2
+
3
+ $default-transition-property: all;
4
+ $default-transition-duration: 0.25s;
5
+ $default-transition-function: false;
6
+ $default-transition-delay: false;
7
+
8
+ $zen-gutter-width: 40px;
9
+
10
+ $vertical-spacing: 2 * $base-font-size;
File without changes
@@ -0,0 +1,38 @@
1
+ // Set this to true to force CSS output to exactly match normalize.css.
2
+ $strict-normalize: false;
3
+
4
+ // The default font family.
5
+ $base-font-family: 'Open Sans', sans-serif !default;
6
+
7
+ // The base font size.
8
+ $base-font-size: 12px !default; // Override default set in Compass' Vertical Rhythm partial.
9
+
10
+ // The base line height determines the basic unit of vertical rhythm.
11
+ $base-line-height: 27px !default; // Override default set in Compass' Vertical Rhythm partial.
12
+
13
+ // The font sizes
14
+ $h1-font-size: 3.75 * $base-font-size !default;
15
+ $h2-font-size: 2.5 * $base-font-size !default;
16
+ $h3-font-size: 2 * $base-font-size !default;
17
+ $h4-font-size: 1.5 * $base-font-size !default;
18
+ $h5-font-size: 1.25 * $base-font-size !default;
19
+ $h6-font-size: 1 * $base-font-size !default;
20
+
21
+ $hero-font-size: 3 * $base-font-size !default;
22
+ $lead-font-size: 2 * $base-font-size !default;
23
+ $p-font-size: 1.5 * $base-font-size !default;
24
+ $btn-font-size: 1.16667 * $base-font-size !default;
25
+ $input-font-size: 1.333 * $base-font-size !default;
26
+
27
+ // The amount lists and blockquotes are indented.
28
+ $indent-amount: 40px !default;
29
+
30
+ // Set this to true to add support for IE 6.
31
+ $legacy-support-for-ie6: false !default; // Override default set in Compass' Support partial.
32
+
33
+ // Set this to true to add support for IE 7.
34
+ $legacy-support-for-ie7: false !default; // Override default set in Compass' Support partial.
35
+
36
+
37
+ // After the default variables are set, import the required Compass partials.
38
+ @import "compass";
data/si_styles.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'si_styles/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "si_styles"
8
+ spec.version = SiStyles::VERSION
9
+ spec.authors = ["Paul Northup"]
10
+ spec.email = ["paul@paulnorthup.com"]
11
+ spec.description = "Startup Institute Core Syle Library"
12
+ spec.summary = "Use this as a launchpad to a startup instutute site"
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -0,0 +1,2 @@
1
+ # Make sure you list all the project template files here in the manifest.
2
+ stylesheet 'screen.sass', :media => 'screen, projection'
@@ -0,0 +1,2 @@
1
+ // This is where you put the contents of the main stylesheet for the user's project.
2
+ // It should import your sass stylesheets and demonstrate how to use them.
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: si_styles
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Paul Northup
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-11-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Startup Institute Core Syle Library
42
+ email:
43
+ - paul@paulnorthup.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .DS_Store
49
+ - .gitignore
50
+ - Gemfile
51
+ - LICENSE.txt
52
+ - README.md
53
+ - Rakefile
54
+ - _si_styles.sass
55
+ - lib/si_styles.rb
56
+ - lib/si_styles/version.rb
57
+ - si_styles.gemspec
58
+ - si_styles/.DS_Store
59
+ - si_styles/modules/_functions.scss
60
+ - si_styles/modules/_mixins.scss
61
+ - si_styles/modules/_normalize.scss
62
+ - si_styles/partials/_accessories.scss
63
+ - si_styles/partials/_forms.scss
64
+ - si_styles/partials/_typography.scss
65
+ - si_styles/variables/_colors.scss
66
+ - si_styles/variables/_display-variables.scss
67
+ - si_styles/variables/_media-queries.scss
68
+ - si_styles/variables/_normalize-vars.scss
69
+ - templates/project/manifest.rb
70
+ - templates/project/screen.sass
71
+ homepage: ''
72
+ licenses:
73
+ - MIT
74
+ metadata: {}
75
+ post_install_message:
76
+ rdoc_options: []
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - '>='
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - '>='
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ requirements: []
90
+ rubyforge_project:
91
+ rubygems_version: 2.0.2
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: Use this as a launchpad to a startup instutute site
95
+ test_files: []