brighter_planet_layout 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/brighter_planet_layout.gemspec +2 -2
- data/public/stylesheets/brighter_planet.css +67 -0
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{brighter_planet_layout}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Andy Rossmeissl"]
|
12
|
-
s.date = %q{2010-07-
|
12
|
+
s.date = %q{2010-07-13}
|
13
13
|
s.description = %q{Layouts, partials, stylesheets, and images}
|
14
14
|
s.email = %q{andy@rossmeissl.net}
|
15
15
|
s.extra_rdoc_files = [
|
@@ -73,6 +73,10 @@ a {
|
|
73
73
|
outline: none;
|
74
74
|
}
|
75
75
|
|
76
|
+
a img {
|
77
|
+
border: none;
|
78
|
+
}
|
79
|
+
|
76
80
|
#header {
|
77
81
|
background-image:
|
78
82
|
-webkit-gradient(
|
@@ -732,3 +736,66 @@ p.flash.error:before {
|
|
732
736
|
font-size: 13px;
|
733
737
|
-moz-box-shadow: black 1px 1px 0;
|
734
738
|
}
|
739
|
+
|
740
|
+
ul.pages {
|
741
|
+
background: #F1F1F1;
|
742
|
+
padding: 15px 15px 10px 165px;
|
743
|
+
list-style: none;
|
744
|
+
overflow: auto;
|
745
|
+
}
|
746
|
+
|
747
|
+
ul.pages li {
|
748
|
+
float: left;
|
749
|
+
margin: 0 5px 0 0;
|
750
|
+
}
|
751
|
+
|
752
|
+
ul.pages li:first-child {
|
753
|
+
margin-left: -6px;
|
754
|
+
}
|
755
|
+
|
756
|
+
ul.pages li.current {
|
757
|
+
background: white;
|
758
|
+
-moz-border-radius: 3px;
|
759
|
+
-webkit-border-radius: 3px;
|
760
|
+
border-radius: 3px;
|
761
|
+
font-weight: bold;
|
762
|
+
-moz-box-shadow: -1px -1px 0 silver;
|
763
|
+
-webkit-box-shadow: -1px -1px 0 silver;
|
764
|
+
box-shadow: -1px -1px 0 silver;
|
765
|
+
}
|
766
|
+
|
767
|
+
ul.pages li.current:first-child {
|
768
|
+
margin-left: 0;
|
769
|
+
}
|
770
|
+
|
771
|
+
ul.pages li.current, ul.pages li a {
|
772
|
+
line-height: 24px;
|
773
|
+
padding: 0 6px;
|
774
|
+
}
|
775
|
+
|
776
|
+
ul.pages li a {
|
777
|
+
display: block;
|
778
|
+
color: blue;
|
779
|
+
}
|
780
|
+
|
781
|
+
ul.pages li a:hover {
|
782
|
+
background-image:
|
783
|
+
-webkit-gradient(
|
784
|
+
linear,
|
785
|
+
left top,
|
786
|
+
left bottom,
|
787
|
+
color-stop(0, rgb(230,230,230)),
|
788
|
+
color-stop(1, rgb(200,200,200))
|
789
|
+
);
|
790
|
+
background-image:
|
791
|
+
-moz-linear-gradient(
|
792
|
+
center top,
|
793
|
+
rgb(230,230,230) 0%,
|
794
|
+
rgb(200,200,200) 100%
|
795
|
+
);
|
796
|
+
-moz-border-radius: 3px;
|
797
|
+
-webkit-border-radius: 3px;
|
798
|
+
border-radius: 3px;
|
799
|
+
}
|
800
|
+
|
801
|
+
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 1
|
9
|
+
version: 0.2.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Andy Rossmeissl
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-07-
|
17
|
+
date: 2010-07-13 00:00:00 -04:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|