brighter_planet_layout 0.1.10 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.10
1
+ 0.1.11
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{brighter_planet_layout}
8
- s.version = "0.1.10"
8
+ s.version = "0.1.11"
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"]
@@ -120,6 +120,76 @@ h1, h2, h3, h4, h5, h6, p, ol, ul, li, dl, dt, dd {
120
120
  background: rgba(0,0,0,0.1);
121
121
  }
122
122
 
123
+ #nav {
124
+ background-image:
125
+ -webkit-gradient(
126
+ linear,
127
+ left top,
128
+ left bottom,
129
+ color-stop(0, rgb(0,79,140)),
130
+ color-stop(1, rgb(0,39,69))
131
+ );
132
+ background-image:
133
+ -moz-linear-gradient(
134
+ center top,
135
+ rgb(0,79,140) 0%,
136
+ rgb(0,39,69) 100%
137
+ );
138
+ overflow: auto;
139
+ font-size: 11px;
140
+ }
141
+
142
+ #nav h3 {
143
+ float: left;
144
+ width: 150px;
145
+ text-align: right;
146
+ color: silver;
147
+ text-shadow: -1px -1px 0px black;
148
+ padding: 1px 0 0;
149
+ font-size: 12px;
150
+ visibility: hidden;
151
+ }
152
+
153
+ #nav h3:after {
154
+ content: " →";
155
+ }
156
+
157
+ #nav ul {
158
+ list-style: none;
159
+ overflow: auto;
160
+ margin: 0 0 0 165px;
161
+ }
162
+
163
+ #nav ul li {
164
+ border-left: 1px solid black;
165
+ float: left;
166
+ width: 100px;
167
+ }
168
+
169
+ #nav ul li a {
170
+ border-left: 1px solid #555;
171
+ display: block;
172
+ text-align: center;
173
+ text-transform: uppercase;
174
+ text-decoration: none;
175
+ color: silver;
176
+ line-height: 1;
177
+ text-shadow: -1px -1px 0px black;
178
+ padding: 5px 0;
179
+ }
180
+
181
+ #nav li:last-child {
182
+ border-right: 1px solid #555;
183
+ }
184
+
185
+ #nav li:last-child a {
186
+ border-right: 1px solid black;
187
+ }
188
+
189
+ #nav ul li a:hover {
190
+ background: rgba(0,0,0,0.1);
191
+ }
192
+
123
193
  #title {
124
194
  background-color: #5FBBFF;
125
195
  background-repeat: no-repeat;
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 10
9
- version: 0.1.10
8
+ - 11
9
+ version: 0.1.11
10
10
  platform: ruby
11
11
  authors:
12
12
  - Andy Rossmeissl