1
0
Fork 0

Basic styling for current version on download page

website
Mike Gerwitz 2012-05-08 21:43:54 -04:00
parent aff3d410b2
commit cea3ca0f26
No known key found for this signature in database
GPG Key ID: F22BB8158EE30EAB
2 changed files with 31 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<p>
<p class="head good">
<span class="release-current">
Current Release: <span class="version"><!--%curver--></span>
<span class="version date">(<!--%curver-date-->)</span>

View File

@ -199,6 +199,7 @@ a.btn:hover {
.btn.go {
border: 1px solid #4e9a06;
background-color: rgb(116,210,22);
background-image: -webkit-gradient(
linear,
left bottom,
@ -240,6 +241,32 @@ span.shell-start {
font-weight: normal;
}
#content .head {
display: block;
width: 100%;
padding: 1em;
margin: -0.5em -1em 1em -1em;
border-bottom: 1px solid;
}
#content .head.good {
background-color: rgb(116,210,22);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0, rgb(116,210,22)),
color-stop(1, rgb(139,226,52))
);
background-image: -moz-linear-gradient(
center bottom,
rgb(116,210,22) 0%,
rgb(139,226,52) 100%
);
border-bottom-color: #4e9a06;
}
/** index **/
.btn.download {
@ -272,6 +299,9 @@ span.release-current {
span.release-current .version {
font-weight: normal;
}
span.release-current .date {
font-size: 0.6em;
}
/** blog **/