atlas_assets 0.1.1 → 0.1.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.
data/Gemfile.lock ADDED
@@ -0,0 +1,86 @@
1
+ GIT
2
+ remote: git://github.com/ixti/jekyll-assets.git
3
+ revision: a04c7628f4746f2b159cb0c5925876368d0029c1
4
+ specs:
5
+ jekyll-assets (0.5.1)
6
+ jekyll (~> 1.0)
7
+ sprockets (~> 2.9)
8
+
9
+ PATH
10
+ remote: .
11
+ specs:
12
+ atlas_assets (0.1.2)
13
+ handlebars_assets (~> 0.12.1)
14
+
15
+ GEM
16
+ remote: https://rubygems.org/
17
+ specs:
18
+ classifier (1.3.3)
19
+ fast-stemmer (>= 1.0.0)
20
+ coderay (1.0.9)
21
+ colorator (0.1)
22
+ commander (4.1.3)
23
+ highline (~> 1.6.11)
24
+ directory_watcher (1.4.1)
25
+ execjs (1.4.0)
26
+ multi_json (~> 1.0)
27
+ fast-stemmer (1.0.2)
28
+ handlebars_assets (0.12.1)
29
+ execjs (>= 1.2.9)
30
+ sprockets (>= 2.0.3)
31
+ tilt
32
+ highline (1.6.19)
33
+ hike (1.2.2)
34
+ jekyll (1.0.2)
35
+ classifier (~> 1.3)
36
+ colorator (~> 0.1)
37
+ commander (~> 4.1.3)
38
+ directory_watcher (~> 1.4.1)
39
+ kramdown (~> 1.0.2)
40
+ liquid (~> 2.3)
41
+ maruku (~> 0.5)
42
+ pygments.rb (~> 0.5.0)
43
+ safe_yaml (~> 0.7.0)
44
+ kramdown (1.0.2)
45
+ liquid (2.5.0)
46
+ maruku (0.6.1)
47
+ syntax (>= 1.0.0)
48
+ multi_json (1.7.3)
49
+ posix-spawn (0.3.6)
50
+ puma (2.0.1)
51
+ rack (>= 1.1, < 2.0)
52
+ pygmentize (0.0.3)
53
+ pygments.rb (0.5.0)
54
+ posix-spawn (~> 0.3.6)
55
+ yajl-ruby (~> 1.1.0)
56
+ rack (1.5.2)
57
+ rack-contrib (1.1.0)
58
+ rack (>= 0.9.1)
59
+ rack-rewrite (1.3.3)
60
+ rake (10.0.4)
61
+ safe_yaml (0.7.1)
62
+ sass (3.2.9)
63
+ sprockets (2.9.3)
64
+ hike (~> 1.2)
65
+ multi_json (~> 1.0)
66
+ rack (~> 1.0)
67
+ tilt (~> 1.1, != 1.3.0)
68
+ syntax (1.0.0)
69
+ tilt (1.4.1)
70
+ yajl-ruby (1.1.0)
71
+
72
+ PLATFORMS
73
+ ruby
74
+
75
+ DEPENDENCIES
76
+ atlas_assets!
77
+ coderay
78
+ jekyll
79
+ jekyll-assets!
80
+ kramdown
81
+ puma
82
+ pygmentize (~> 0.0.3)
83
+ rack-contrib
84
+ rack-rewrite
85
+ rake
86
+ sass
@@ -77,22 +77,37 @@ The gem also includes style for a footer. It can be used with `.row` and `.spanN
77
77
 
78
78
  <footer>
79
79
  <div class="row">
80
- <div class="span1">&nbsp;</div>
81
- <div class="span3">
80
+ <div class="span3 offset1">
81
+ This is a footer
82
+ <p class="small">All trademarks and registered trademarks appearing on oreilly.com are the property of their respective owners.</p>
83
+ </div>
84
+ <div class="span3 offset1">
85
+ <ul>
86
+ <li>About O'Reilly</li>
87
+ <li><a href="#">Academic Solutions</a></li>
88
+ <li><a href="#">Jobs</a></li>
89
+ <li><a href="#">Contact</a></li>
90
+ </ul>
91
+ </div>
92
+ </div>
93
+ </footer>
94
+ <br />
95
+
96
+ ~~~html
97
+ <footer>
98
+ <div class="row">
99
+ <div class="span3 offset1">
100
+ This is a footer
101
+ <p class="small">All trademarks and registered trademarks appearing on oreilly.com are the property of their respective owners.</p>
102
+ </div>
103
+ <div class="span3 offset1">
82
104
  <ul>
83
105
  <li>About O'Reilly</li>
84
106
  <li><a href="#">Academic Solutions</a></li>
85
107
  <li><a href="#">Jobs</a></li>
86
108
  <li><a href="#">Contact</a></li>
87
- </ul>
88
- </div>
89
- <div class="span4">
90
- <ul>
91
- <li>Community</li>
92
- <li><a href="#">Authors</a></li>
93
- <li><a href="#">Forum</a></li>
94
- <li><a href="#">Membership</a></li>
95
- </ul>
109
+ </ul>
96
110
  </div>
97
111
  </div>
98
- </footer>
112
+ </footer>
113
+ ~~~
@@ -1,6 +1,14 @@
1
1
  footer {
2
- background-color: $light_gray;
3
- padding: 20px 0px;
2
+ color: $medium_gray;
3
+ background-color: $lightest_gray;
4
+ margin-top: 80px;
5
+ border-top: 1px solid $light_gray;
6
+ padding: 40px 0px;
7
+ }
8
+
9
+ footer p.small {
10
+ color: $mid_gray;
11
+ font-size: $smallFontSize;
4
12
  }
5
13
 
6
14
  footer ul {
@@ -11,13 +19,14 @@ footer ul {
11
19
 
12
20
  footer ul li {
13
21
  margin: 0;
22
+ margin-bottom: 10px;
14
23
  padding: 0;
15
24
 
16
25
  &:first-child {
17
26
  font-family: $menuFontFamily;
18
27
  font-weight: 400;
19
28
  font-size: 14px;
20
- color: $mid_gray;
29
+ color: $darker_gray;
21
30
  margin-bottom: 10px;
22
31
 
23
32
  a {
@@ -33,6 +33,8 @@ $monoFontFamily: Monaco, Menlo, Consolas, "Courier New", monospace !defau
33
33
  $baseFontSize: 14px !default;
34
34
  $baseLineHeight: 20px !default;
35
35
 
36
+ $smallFontSize: 12px !default;
37
+
36
38
  /* Boxes
37
39
  ------------------------------------------------------- */
38
40
 
@@ -1,5 +1,5 @@
1
1
  module Atlas
2
2
  module Assets
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atlas_assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -36,6 +36,7 @@ extra_rdoc_files: []
36
36
  files:
37
37
  - .gitignore
38
38
  - Gemfile
39
+ - Gemfile.lock
39
40
  - LICENSE
40
41
  - Procfile
41
42
  - README.md