Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
website: Sharpen and clean up download page more
Browse files Browse the repository at this point in the history
Retinaify the images!
  • Loading branch information
isaacs committed Aug 15, 2012
1 parent 8677860 commit 24ff8f4
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 34 deletions.
39 changes: 28 additions & 11 deletions doc/download/index.html
Expand Up @@ -46,19 +46,36 @@
</p>
<p>Current version: <b>__VERSION__</b></p>
</div>
<div class="interior row">
<ul id="installers" class="clearfix">
<li><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-x86.msi">Windows Installer</a><br>node-__VERSION__-x86.msi</li>
<li><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__.pkg">Macintosh Installer</a><br>node-__VERSION__.pkg</li>
<li id="source"><a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__.tar.gz">Source Code</a><br>node-__VERSION__.tar.gz</li>
</ul>
</div>

<div class="interior row">
<h2 id="binaries" class="installers">Downloads</h2>
<p>
To install Node.js and npm use the appropriate installer for your platform, or discover <a href="https://raw.github.com/joyent/node/__VERSION__/ChangeLog">what's new</a> in <strong>Node.js __VERSION__</strong>.
</p>
<div id="installers">
<ul>
<li>
<a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__-x86.msi">
<img src="http://nodejs.org/images/platform-icon-win.png"
height=50 width=45 alt="">
Windows Installer
<small>node-__VERSION__-x86.msi</small>
</a>
</li>
<li>
<a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__.pkg">
<img src="http://nodejs.org/images/platform-icon-osx.png"
height=50 width=45 alt="">
Macintosh Installer
<small>node-__VERSION__.pkg</small>
</a>
</li>
<li id="source">
<a href="http://nodejs.org/dist/__VERSION__/node-__VERSION__.tar.gz">
<img src="http://nodejs.org/images/platform-icon-generic.png"
height=50 width=45 alt="">
Source Code
<small>node-__VERSION__.tar.gz</small>
</a>
</li>
</ul>
</div>

<table style="font-size:14px">
<tr>
Expand Down
Binary file added doc/images/platform-icon-generic.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/images/platform-icon-osx.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doc/images/platform-icon-win.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 35 additions & 23 deletions doc/pipe.css
Expand Up @@ -195,41 +195,53 @@ h1 a, h2 a, h3 a, h4 a
width:100%;
}

#download-page #installers {
width:600px;
display:table;
margin-bottom:1em;
}


#download-page ul#installers {
#download-page #installers ul {
width: auto;
text-align: center;
margin: 0 auto;
background: url(http://nodejs.org/images/platform-icons.png) no-repeat center 20px white;
padding-top: 92px;
padding-bottom: 45px;
padding-left: 29px;
}

#download-page ul#installers li {
list-style-type: none;
width: 165px;
padding-left: 18px;
float: left;
display: block;
color: #33342D;
font-size: 10px;
display:table-row;
width:600px;
}

#download-page ul#installers li#source {
padding-left: 0;
#download-page #installers ul img {
display:block;
margin:0 auto;
}

#download-page #installers ul a {
display:block;
width:100%;
text-decoration:none;
font-size: 16px;
padding-top:1em;
}

#download-page ul#installers li a {
font-size: 16px;
padding-top: 80px;
margin-top: -80px;
#download-page #installers ul a:hover,
#download-page #installers ul a:active {
background:#666;
color: #8cc84b;
}


#download-page #installers ul li {
width:33%;
display:table-cell;
}
#download-page #installers a small {
font-size: 10px;
display:block;
color:#eee;
}

#download-page #content th {
text-align:left;
width:35%;
width:33%;
}

#download-page #content table {
Expand Down

0 comments on commit 24ff8f4

Please sign in to comment.