diff options
| -rw-r--r-- | css/screen.css | 8 | ||||
| -rw-r--r-- | index.html | 20 | 
2 files changed, 22 insertions, 6 deletions
| diff --git a/css/screen.css b/css/screen.css index 27788464c..564ae48d8 100644 --- a/css/screen.css +++ b/css/screen.css @@ -58,6 +58,8 @@ h2 {  	font-size: 300%;  	text-align: center;  	color: #d7af72; +	margin-top: 0.5em; +	margin-bottom: 0.1em;  }  h1 a, @@ -99,6 +101,10 @@ pre code {    line-height: 1.6;  } +#selectable { +  font-size: 1.9em; +} +  /*}}}*/  /* @section Informations {{{ @@ -132,6 +138,7 @@ pre code {  .button {    text-align: center; +  margin: 1em 0 2em;  }  #informations .button a { @@ -144,6 +151,7 @@ pre code {    -moz-box-shadow: 0 0 5px rgba(0,0,0,0.4);    -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.4);    text-decoration: none; +  font-size: larger;  }  #informations .button a:hover { diff --git a/index.html b/index.html index 112823f6a..a2c7fcad7 100644 --- a/index.html +++ b/index.html @@ -114,15 +114,23 @@ Created /usr/local/Library/Formula/bar.rb                </div>              </div>            </li> +            <li>              <div class="group row"> -              <h2 style='margin-top:1em; margin-bottom: 0.2em'>Install Homebrew</h2> -              <pre style='text-align:center;margin-bottom:0.9em' id='selectable' onclick="selectText()"><code style='font-size:1.65em'>ruby <(curl -fsSk https://raw.github.com/mxcl/homebrew/go)</code></pre> -              <div class="col-1"> -                <p>Paste that into Terminal. The script explains what it will do and then pauses before it does it. There are more installation options <a href='https://github.com/mxcl/homebrew/wiki/Installation'>here</a>. +              <h2>Install Homebrew</h2> +              <pre style='clear:both;text-align:center;margin:0 -0.5em;margin-bottom:0.9em'><code id='selectable' onclick="selectText()">ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go)</code></pre> +              <div class="col-2"> +                <p>Paste that at a Terminal prompt.</p> +                <p>The script explains what it will do and then pauses before it does it. There are more installation options <a href='https://github.com/mxcl/homebrew/wiki/Installation'>here</a>.                </div> -              <div class='col-2 button button-large' style='margin-top: 1em'> -                <a href='https://github.com/mxcl/homebrew/wiki'>Homebrew Wiki</a> +            </div> +          </li> + +          <li> +            <div class="group row"> +              <h2>Further Documentation</h2> +              <div class="button"> +                <p><a href="https://github.com/mxcl/homebrew/wiki">Homebrew Wiki</a></p>                </div>              </div>            </li> | 
