Skip to content

Commit 7ed703b

Browse files
committed
Fixing up the downloads section of homepage
1 parent 2b91fbb commit 7ed703b

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
$intro .= "<ul>\n";
100100
foreach ($RELEASES[5] as $version => $release) {
101101
$intro .= "
102-
<li><a class='download-link' href='/downloads.php#v$version'>$version</a> | <a class='notes' href='/ChangeLog-5.php#$version'>Release Notes</a></li>\n";
102+
<li><a class='download-link' href='/downloads.php#v$version'>$version</a> &middot; <a class='notes' href='/ChangeLog-5.php#$version'>Release Notes</a></li>\n";
103103
}
104104
$intro .= "</ul>\n";
105105
}

styles/home.css

+12-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ complimentary greens: 9FB553 7B8851 61761B C6DA82 CCDA99
2828
letter-spacing:3px;
2929
word-spacing:6px;
3030
text-align:center;
31+
margin-bottom:0;
32+
}
33+
#intro h2:after {
34+
display:none;
3135
}
3236
#intro .row {
3337
position:relative;
@@ -40,15 +44,22 @@ complimentary greens: 9FB553 7B8851 61761B C6DA82 CCDA99
4044
#intro .download ul {
4145
list-style:none;
4246
}
47+
#intro ul {
48+
word-spacing:.25rem;
49+
}
4350
#intro .download a.notes {
4451
font-size:.75em;
45-
padding-left:.5em;
4652
white-space:nowrap;
4753
}
4854
#intro .download a {
4955
color:#ccc;
5056
border:0;
5157
}
58+
#intro .download a:hover,
59+
#intro .download a:focus {
60+
border-bottom:1px dotted;
61+
}
62+
5263
#intro .download a.download-link {
5364
color:#fff;
5465
}

0 commit comments

Comments
 (0)