diff options
| author | Rémi Prévost | 2011-10-29 07:54:39 -0400 | 
|---|---|---|
| committer | Jack Nagel | 2011-11-02 19:21:04 -0500 | 
| commit | caee95d8bda8df3c4cbbd9a09b0da09085b238c1 (patch) | |
| tree | d9e28100ebc5798dcf4609eeb8b7442aedd71860 | |
| parent | f2480b038cf61b1892f6b06c2721763a2f7b7a6e (diff) | |
| download | homebrew-caee95d8bda8df3c4cbbd9a09b0da09085b238c1.tar.bz2 | |
Add credits row
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | css/screen.css | 18 | ||||
| -rw-r--r-- | index.html | 7 | 
2 files changed, 22 insertions, 3 deletions
| diff --git a/css/screen.css b/css/screen.css index 6617b15f0..b77c2bd2f 100644 --- a/css/screen.css +++ b/css/screen.css @@ -17,7 +17,7 @@ html, body { height: 100%; }  body {    font-family: Helvetica, Arial, sans-serif;    font-size: 150%; -  line-height: 1.3; +  line-height: 1.4;    color: #f6e6cc;    background: #27221a url("../img/bg-body.gif");    position: relative; @@ -89,7 +89,8 @@ pre {  }  pre code { -  font-size: 10pt; +  font-size: 12px; +  line-height: 1.6;  }  /*}}}*/ @@ -175,4 +176,17 @@ pre code {    font-weight: normal;  } +#informations .credits { +  border-bottom: none; +  font-size: 70%; +  text-align: center; +  padding-top: 1.8em; +  opacity: 0.5; +} + +#informations .credits p { +  margin: 0; +  padding: 0 0 0.7em; +} +  /*}}}*/ diff --git a/index.html b/index.html index 3465f19a2..978bd1207 100644 --- a/index.html +++ b/index.html @@ -103,7 +103,7 @@ Created /usr/local/Library/Formula/foo.rb</code></pre>            <li>              <div class="group row">                <div class="col-1"> -                <p>Homebrew compliments OS X. Install your gems with gem, and their dependencies with brew.</p> +                <p>Homebrew compliments OS X. Install your gems with <code>gem</code>, and their dependencies with <code>brew</code>.</p>                </div>              </div>            </li> @@ -122,6 +122,11 @@ Created /usr/local/Library/Formula/foo.rb</code></pre>                <cite>— <a href="http://twitter.com/thillerson/status/6688848379">@thillerson</a></cite>              </div>            </li> +          <li> +            <div class="group row credits"> +              <p>Original code by <a href="http://methylblue.com/">Max Howell</a>. Website by <a href="http://exomel.com">Rémi Prévost</a>.</p> +            </div> +          </li>          </ul>        </div>      </div> | 
