website/www: fix download link styling

This commit is contained in:
Mitchell Hashimoto 2014-01-10 09:48:44 -08:00
parent 8fde97131c
commit a2e4d13926
2 changed files with 10 additions and 10 deletions

View File

@ -22,7 +22,7 @@ The latest version of Vagrant can be found on the
<% if $vagrant_versions.length > 1 %> <% if $vagrant_versions.length > 1 %>
<ul> <ul>
<% $vagrant_versions[1..-1].each do |version| %> <% $vagrant_versions[1..-1].each do |version| %>
<li><a href="/download-archive/v<%= version.to_s %>.html"><%= version.to_s %></a></li> <li><p><a href="/download-archive/v<%= version.to_s %>.html"><%= version.to_s %></a></p></li>
<% end %> <% end %>
</ul> </ul>
<% else %> <% else %>

View File

@ -89,17 +89,17 @@ h6 {
p { p {
letter-spacing: 1px; letter-spacing: 1px;
line-height: 32px; line-height: 32px;
}
p a, ul li a { a {
color: @docs-blue; color: @docs-blue;
text-decoration: none;
border-bottom: 1px solid @docs-blue;
&:hover {
text-decoration: none; text-decoration: none;
color: darken(@blue, 10%); border-bottom: 1px solid @docs-blue;
border-bottom: 1px solid darken(@blue, 10%);
&:hover {
text-decoration: none;
color: darken(@blue, 10%);
border-bottom: 1px solid darken(@blue, 10%);
}
} }
} }