diff options
Diffstat (limited to 'website')
-rw-r--r-- | website/download.html | 10 | ||||
-rw-r--r-- | website/index.css | 30 | ||||
-rw-r--r-- | website/index.html | 13 |
3 files changed, 39 insertions, 14 deletions
diff --git a/website/download.html b/website/download.html index 5fd1f816..5b546b72 100644 --- a/website/download.html +++ b/website/download.html @@ -25,12 +25,20 @@ width: 100%; text-align: right; } + + h1 { + padding-bottom: 0; + margin-bottom: 4px; + } </style> </head><body> <div class="meat"> <h1>Download Lombok</h1> + <div class="versionInfo"> + version: @VERSION@ | <a href="changelog.html">changelog</a> + </div> <p id="downloadHelp"> - Just double-click the <code>lombok.jar</code> file you've downloaded to install lombok into + Just double-click the <code>lombok.jar</code> file you'll download to install lombok into your IDE. <code>lombok.jar</code> is also the jar you use as a project dependency (include it in your classpath when compiling with <code>javac</code> or add it to your project library list in your java IDE). It's the only jar you need!<br /><br /> diff --git a/website/index.css b/website/index.css index 7ce9878b..a1480c40 100644 --- a/website/index.css +++ b/website/index.css @@ -18,12 +18,12 @@ h1 { text-align: center; } -#buttonBar a { +#buttonBar a.button, a.downloadLink { text-decoration: none; color: black; } -#buttonBar a:hover { +#buttonBar a.button:hover, a.downloadLink:hover { text-decoration: underline; color: blue; } @@ -78,31 +78,43 @@ h1 { font-size: 14px; } -.download { +.downloadContainer { float: left; margin: 34px 8px 57px 40px; - background-image: url(downloadButton.png); - line-height: 56px; - width: 225px; - height: 56px; } code { font-weight: bold; } -.download img { +.downloadLink { + background-image: url(downloadButton.png); + display: block; + line-height: 56px; + width: 225px; + height: 56px; +} + +.downloadLink img { margin: 4px 20px 4px 16px; float: left; width: 48px; } -.download span { +.downloadLink span { display: block; font-size: 16px; font-weight: bold; } +.versionInfo { + font-size: 12px; + margin-top: 4px; + font-weight: normal; + width: 100%; + text-align: center; +} + #downloadInfo { font-size: 14px; } diff --git a/website/index.html b/website/index.html index a3a3f5b3..c85d2fb9 100644 --- a/website/index.html +++ b/website/index.html @@ -41,10 +41,15 @@ <img src="icon_bugs.png" /> <span>Report an issue</span> </a> - <a class="download" id="downloadLink" href="download.html"> - <img src="icon_download.png" /> - <span>Download!</span> - </a> + <div class="downloadContainer"> + <a class="downloadLink" id="downloadLink" href="download.html"> + <img src="icon_download.png" /> + <span>Download!</span> + </a> + <div class="versionInfo"> + Version: @VERSION@ | <a href="changelog.html">changelog</a> + </div> + </div> </div> <div class="video"> <video width="800" height="480" poster="videos/poster.png" controls="controls"> |