diff --git a/Site/1/css/screen.css b/Site/1/css/screen.css index 511f3651..165583a3 100644 --- a/Site/1/css/screen.css +++ b/Site/1/css/screen.css @@ -10,7 +10,7 @@ body { color: black; - font: 120% Exo, sans-serif; + font: 105% Exo, sans-serif; font-weight: 100; } h1, h2, h3, h4 { @@ -79,7 +79,7 @@ header { box-shadow: 0 0 50px #666; margin: 0 0 5em; - padding: 0 0 1em; + padding: 1em 0; text-align: center; } @@ -90,7 +90,8 @@ header h1 { font-size: 350%; } header .logo { - width: 200px; + height: 128px; + vertical-align:middle; } header .divider { position: absolute; @@ -200,6 +201,17 @@ a.next:after { content: " >"; } +#ribbon { + background: url("../img/ribbon-join-beta.png"); + + display: block; + position: absolute; + left: 0; + margin-top: -5em; + width: 184px; + height: 184px; +} + #frontpage .sidebox { margin-top: -50px; } diff --git a/Site/1/img/ribbon-join-beta.png b/Site/1/img/ribbon-join-beta.png new file mode 100644 index 00000000..95251596 Binary files /dev/null and b/Site/1/img/ribbon-join-beta.png differ diff --git a/Site/1/index.html b/Site/1/index.html index d2a77d17..bd887c45 100644 --- a/Site/1/index.html +++ b/Site/1/index.html @@ -26,15 +26,27 @@ navigateTo(document.location.hash.substring(1)); }); +
- -

Master Password

+ +

Master Password

+
@@ -126,7 +138,7 @@

Master Password is currently in beta.
- Anyone interested in joining the beta is invited to join the Lyndir TestFlight team. Every so often new pending testers are admitted to the Master Password beta testers team. + Anyone interested in joining the beta is invited to join the Lyndir TestFlight team. Every so often new pending testers are admitted to the Master Password beta testers team.

Participation in the beta is free of charge, but does come with the expectation that you will contribute. Comment constructively, report issues and propose improvements. @@ -156,7 +168,7 @@ Alright, let's describe the process in detail. This part will likely make sense to you only if you're well versed in computer security jargon. If you're the kind of person who likes to know how the clock ticks before deciding that it can be trusted to keep ticking, read on.

- The user chooses a single master password, preferably sufficiently long to harden against brute-force attacks. Before usage, a masterKey is derived from this master password using the scrypt key derivation function. This makes it impossibly expensive and time-consuming to attempt brute-forcing a properly sized master password. + The user chooses a single master password, preferably sufficiently long to harden against brute-force attacks. Before usage, a masterKey is derived from this master password using the scrypt key derivation function. This makes it impossibly expensive and time-consuming to attempt brute-forcing a properly sized master password.

                 masterKey = scrypt( P, S, N, r, p, dkLen )
@@ -200,7 +212,7 @@