volt-bootstrap_jumbotron_theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fc80332562e287a8472980aed21a49c9b9f26a42
4
+ data.tar.gz: 65adf25663b8129b5373cbec99dc900e3f2aeba8
5
+ SHA512:
6
+ metadata.gz: 4bfc83ad3207244d84d1f9734842ab74bd292b4c50c9d335199e1ac798ae96881a5d337c670499f137d30b2fc26da08369a9cbf674af5063f76e1c4354a410b2
7
+ data.tar.gz: aa41f70e00e790c8f691aa177a39efb112784004f632a4de835c3e2528cea8d475de602d09d7a423313d3576e68144a6556bf6f208443252a66cf708a8af7bf9
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in volt-bootstrap-jumbotron-theme.gemspec
4
+ gemspec
@@ -0,0 +1,29 @@
1
+ # Volt::Bootstrap::Jumbotron::Theme
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'volt-bootstrap-jumbotron-theme'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install volt-bootstrap-jumbotron-theme
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( http://github.com/[my-github-username]/volt-bootstrap-jumbotron-theme/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
@@ -0,0 +1,79 @@
1
+ /* Space out content a bit */
2
+ body {
3
+ padding-top: 20px;
4
+ padding-bottom: 20px;
5
+ }
6
+
7
+ /* Everything but the jumbotron gets side spacing for mobile first views */
8
+ .header,
9
+ .marketing,
10
+ .footer {
11
+ padding-left: 15px;
12
+ padding-right: 15px;
13
+ }
14
+
15
+ /* Custom page header */
16
+ .header {
17
+ border-bottom: 1px solid #e5e5e5;
18
+ }
19
+ /* Make the masthead heading the same height as the navigation */
20
+ .header h3 {
21
+ margin-top: 0;
22
+ margin-bottom: 0;
23
+ line-height: 40px;
24
+ padding-bottom: 19px;
25
+ }
26
+
27
+ /* Custom page footer */
28
+ .footer {
29
+ padding-top: 19px;
30
+ color: #777;
31
+ border-top: 1px solid #e5e5e5;
32
+ }
33
+
34
+ /* Customize container */
35
+ @media (min-width: 768px) {
36
+ .container {
37
+ max-width: 730px;
38
+ }
39
+ }
40
+ .container-narrow > hr {
41
+ margin: 30px 0;
42
+ }
43
+
44
+ /* Main marketing message and sign up button */
45
+ .jumbotron {
46
+ text-align: center;
47
+ border-bottom: 1px solid #e5e5e5;
48
+ }
49
+ .jumbotron .btn {
50
+ font-size: 21px;
51
+ padding: 14px 24px;
52
+ }
53
+
54
+ /* Supporting marketing content */
55
+ .marketing {
56
+ margin: 40px 0;
57
+ }
58
+ .marketing p + h4 {
59
+ margin-top: 28px;
60
+ }
61
+
62
+ /* Responsive: Portrait tablets and up */
63
+ @media screen and (min-width: 768px) {
64
+ /* Remove the padding we set earlier */
65
+ .header,
66
+ .marketing,
67
+ .footer {
68
+ padding-left: 0;
69
+ padding-right: 0;
70
+ }
71
+ /* Space out the masthead */
72
+ .header {
73
+ margin-bottom: 30px;
74
+ }
75
+ /* Remove the bottom border on the jumbotron for visual effect */
76
+ .jumbotron {
77
+ border-bottom: 0;
78
+ }
79
+ }
@@ -0,0 +1,5 @@
1
+ module Volt
2
+ class BootstrapJumbotronTheme
3
+ # Your code goes here...
4
+ end
5
+ end
@@ -0,0 +1,24 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ version = File.read(File.expand_path('../VERSION', __FILE__)).strip
6
+
7
+
8
+ Gem::Specification.new do |spec|
9
+ spec.name = "volt-bootstrap_jumbotron_theme"
10
+ spec.version = version
11
+ spec.authors = ["Ryan Stout"]
12
+ spec.email = ["ryanstout@gmail.com"]
13
+ spec.summary = %q{Basic jumbotron theme for volt when using bootstrap}
14
+ spec.homepage = ""
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0")
18
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency "volt", "~> 0.5.0"
23
+ spec.add_development_dependency "rake"
24
+ end
metadata ADDED
@@ -0,0 +1,80 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: volt-bootstrap_jumbotron_theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Ryan Stout
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-04-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: volt
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.5.0
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.5.0
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:
42
+ email:
43
+ - ryanstout@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - README.md
51
+ - Rakefile
52
+ - VERSION
53
+ - app/bootstrap_jumbotron_theme/assets/css/jumbotron.css
54
+ - lib/volt/bootstrap-jumbotron-theme.rb
55
+ - volt-bootstrap_jumbotron_theme.gemspec
56
+ homepage: ''
57
+ licenses:
58
+ - MIT
59
+ metadata: {}
60
+ post_install_message:
61
+ rdoc_options: []
62
+ require_paths:
63
+ - lib
64
+ required_ruby_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ requirements: []
75
+ rubyforge_project:
76
+ rubygems_version: 2.2.2
77
+ signing_key:
78
+ specification_version: 4
79
+ summary: Basic jumbotron theme for volt when using bootstrap
80
+ test_files: []