mirror of
https://github.com/denoland/deno.git
synced 2025-01-03 04:48:52 -05:00
Make links and badges look better (#1588)
This commit is contained in:
parent
75f349929b
commit
ec4858bcbd
2 changed files with 15 additions and 6 deletions
|
@ -20,10 +20,10 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<a href="https://travis-ci.com/denoland/deno"><img src="https://travis-ci.com/denoland/deno.svg?branch=master"/></a>
|
||||
<a class="badge" href="https://travis-ci.com/denoland/deno"><img src="https://travis-ci.com/denoland/deno.svg?branch=master"/></a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://ci.appveyor.com/project/deno/deno"><img src="https://ci.appveyor.com/api/projects/status/yel7wtcqwoy0to8x/branch/master?svg=true"/></a>
|
||||
<a class="badge" href="https://ci.appveyor.com/project/deno/deno"><img src="https://ci.appveyor.com/api/projects/status/yel7wtcqwoy0to8x/branch/master?svg=true"/></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
@ -18,6 +18,19 @@ svg {
|
|||
a {
|
||||
color: #333;
|
||||
}
|
||||
a:hover {
|
||||
color: #488;
|
||||
}
|
||||
|
||||
a.badge {
|
||||
display: inline-block;
|
||||
border-radius: 2px;
|
||||
height: 20px;
|
||||
transition: .3s box-shadow;
|
||||
}
|
||||
a.badge:hover {
|
||||
box-shadow: 0 0 5px 0 #333;
|
||||
}
|
||||
|
||||
pre {
|
||||
background: #ddd;
|
||||
|
@ -26,10 +39,6 @@ pre {
|
|||
overflow-x: auto;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
background: #aee;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
|
|
Loading…
Reference in a new issue