0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

Nicer formamtting

This commit is contained in:
Brian Peacock 2014-05-07 15:36:03 -05:00
parent 45e4208218
commit baa7f78e83
5 changed files with 21 additions and 8 deletions

View file

@ -53,7 +53,7 @@ h1 {
input, button {
margin: 0;
vertical-align: middle;
vertical-align: top;
border: 1px solid #CCC;
}
@ -82,6 +82,13 @@ h1 {
}
}
/*** Heading ***/
h2 {
border-bottom: 6px solid #424242;
padding-bottom: 10px;
margin-top: 40px;
}
/*** Package Entries ***/
.entry {
background: #F3F3F3;
@ -129,7 +136,7 @@ h1 {
big {
font-size: 38px;
margin-bottom: 5px;
margin-bottom: 8px;
}
code {

View file

@ -33,7 +33,7 @@
{{#unless items.length}}
<div class='no-results'>
<big>No Results</big><br>
<big>No Packages</big><br>
Use <code>npm publish</code>
</div>
{{/unless}}

View file

@ -31,7 +31,7 @@ $(function() {
$searchResults.html(html);
}
else {
$searchResults.html("<div class='search-no-results'>No Results</div>");
$searchResults.html("<div class='no-results'><big>No Results</big></div>");
}
});
}

File diff suppressed because one or more lines are too long

View file

@ -98,7 +98,7 @@ $(function() {
$searchResults.html(html);
}
else {
$searchResults.html("<div class='search-no-results'>No Results</div>");
$searchResults.html("<div class='no-results'><big>No Results</big></div>");
}
});
}