brighter_planet_layout 0.1.10 → 0.1.11
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/VERSION +1 -1
- data/brighter_planet_layout.gemspec +1 -1
- data/public/stylesheets/brighter_planet.css +70 -0
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.11
|
|
@@ -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;
|