Skip to content

Commit

Permalink
updating newgem
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiokung committed Jun 25, 2009
1 parent a07f13f commit 53ead4a
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 15 deletions.
4 changes: 2 additions & 2 deletions spec/spec_helper.rb
@@ -1,12 +1,12 @@
begin
require 'spec'
rescue LoadError
require 'rubygems'
require 'rubygems' unless ENV['NO_RUBYGEMS']
gem 'rspec'
require 'spec'
end

$:.unshift(File.dirname(__FILE__) + '/../lib')
$:.unshift(File.dirname(__FILE__) + '/../jetty-libs')
require 'jetty_rails'
require 'jetty-rails'
require 'yaml'
41 changes: 31 additions & 10 deletions website/stylesheets/screen.css
@@ -1,5 +1,5 @@
body {
background-color: #E1D1F1;
background-color: #8DBD82;
font-family: "Georgia", sans-serif;
font-size: 16px;
line-height: 1.6em;
Expand All @@ -24,7 +24,7 @@ li {
}
a {
color: #5E5AFF;
background-color: #DAC;
background-color: #A1DDB1;
font-weight: normal;
text-decoration: underline;
}
Expand All @@ -39,7 +39,7 @@ blockquote {
}

#main {
width: 45em;
width: 55em;
padding: 0;
margin: 0 auto;
}
Expand Down Expand Up @@ -83,6 +83,7 @@ pre, code {
line-height: 1.4em;
color: #ff8;
background-color: #111;
width: 40em;
padding: 2px 10px 2px 10px;
}
.comment { color: #aaa; font-style: italic; }
Expand All @@ -96,17 +97,21 @@ pre, code {
.number { color: #F99; }
.expr { color: #227; }

#version {
.sidebar {
float: right;
}

#version {
width: 217px;
text-align: right;
font-family: sans-serif;
font-weight: normal;
background-color: #B3ABFF;
color: #141331;
padding: 15px 20px 10px 20px;
margin: 0 auto;
margin-top: 15px;
border: 3px solid #141331;
background-color: #9A5535;
border: 3px solid #7E393E;
}

#version .numbers {
Expand All @@ -119,20 +124,36 @@ pre, code {

#version p {
text-decoration: none;
color: #141331;
background-color: #B3ABFF;
color: #F1F4FF;
background-color: #9A5535;
margin: 0;
padding: 0;
}

#version a {
text-decoration: none;
color: #141331;
background-color: #B3ABFF;
color: #F1F4FF;
background-color: #9A5535;
}

.clickable {
cursor: pointer;
cursor: hand;
}

#twitter_search {
margin: 40px 0 10px 15px;
color: #F1F4FF;
background-color: #9A5535;
border: 3px solid #7E393E;
}

#twitter_search h3 {
color: #F1F4FF;
margin-bottom: 0px;
}

#twitter_search center b {
display: none;
}

8 changes: 5 additions & 3 deletions website/template.html.erb
Expand Up @@ -31,9 +31,11 @@
<div id="main">

<h1><%= title %></h1>
<div id="version" class="clickable" onclick='document.location = "<%= download %>"; return false'>
<p>Get Version</p>
<a href="<%= download %>" class="numbers"><%= version %></a>
<div class="sidebar">
<div id="version" class="clickable" onclick='document.location = "<%= download %>"; return false'>
<p>Get Version</p>
<a href="<%= download %>" class="numbers"><%= version %></a>
</div>
</div>
<%= body %>
<p class="coda">
Expand Down

0 comments on commit 53ead4a

Please sign in to comment.