Skip to content
This repository has been archived by the owner on Jun 4, 2019. It is now read-only.

Commit

Permalink
pity styles
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxparse committed Apr 12, 2012
1 parent 61e81db commit 927846c
Show file tree
Hide file tree
Showing 2 changed files with 192 additions and 0 deletions.
173 changes: 173 additions & 0 deletions app/assets/stylesheets/theme.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,173 @@
body {
background: #f2f2f2;
padding-bottom: 10em;
}

body, input, textarea, select, td {
font: 14px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}

p,h1,h2,h3,h4,h5,h6 {
margin: 0;
padding: 0;
font-size: 100%;
}

p {
margin: 0 0 0.75em;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Francois One', sans-serif;
line-height: 1;
}

h1 {
font-size: 2em;
margin: 1em 0 0.5em;
text-transform: uppercase;
color: #ff5800;
}

h2 {
font-size: 1.5em;
margin-bottom: 0.333333em;
}

header {
position: fixed;
z-index: 1;
left: 0;
right: 0;
bottom: 0;
height: 10em;
background: rgba(0, 0, 0, 0.9);
color: #f2f2f2;
}

header h1 {
float: right;
margin: 0.125em 0 0.125em 0;
text-transform: uppercase;
font-size: 8em;
line-height: 1em;
width: 65%;
white-space: nowrap;
}

header h1 a {
color: #ff5800;
text-decoration: none;
}

header nav {
float: right;
border-right: 1px solid white;
margin: 1em;
padding: 0.5em 1em;
}

header nav ul {
margin: 0;
padding: 0;
}

header nav ul li {
display: block;
list-style-type: none;
text-align: right;
font-size: 1.25em;
line-height: 1.375em;
vertical-align: middle;
}

header nav ul li a {
color: white;
text-decoration: none;
font-family: 'Francois One', sans-serif;
text-transform: uppercase;
}

#page, footer {
position: relative;
margin-left: 35%;
text-shadow: 0 1px 0 white;
}

#side_body {
position: absolute;
left: -13em;
top: 3em;
width: 10em;
padding: 0 1em;
text-align: right;
color: #999;
}

#side_body .inner {
}

footer {
margin-top: 3em;
border-top: 1px solid #ccc;
padding-top: 0.75em;
color: #999;
}

.inquiries form {
margin: 0 1em 1.5em -1em;
padding: 1em;
background: #eee;
box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2), 0 1px 0 white;
border-radius: 0.5em;
}

.inquiries form .field {
margin: 0 0 0.5em;
}

.inquiries form .field label {
clear: left;
float: left;
width: 15%;
text-transform: uppercase;
color: #666;
line-height: 2em;
vertical-align: middle;
}

.inquiries form .field input,
.inquiries form .field textarea {
width: 70%;
line-height: 1.5;
}

.inquiries form .actions {
margin-left: 15%;
}

.inquiries form .actions input {
background: #ff5800;
border: 1px solid #ff5800;
border-radius: 4px;
box-shadow: inset 0 1px 10px 1px rgba(255, 255, 255, 0.4), 0 0.25em 0px #7f2c00, 0 0.25em 0.5em rgba(0, 0, 0, 0.5);
color: #fff;
font-size: 1.5em;
font-weight: bold;
line-height: 1;
margin-bottom: 1em;
padding: 8px 1em 10px;
text-align: center;
text-shadow: 0px -1px 1px #1e2d4d;
-webkit-background-clip: padding-box;
}

.inquiries form .actions input:hover {
box-shadow: inset 0 1px 20px 1px rgba(255, 255, 255, 0.5), 0 0.25em 0px #7f2c00, 0 0.25em 0.5em rgba(0, 0, 0, 0.5);
cursor: pointer;
}

.inquiries form .actions input:active {
box-shadow: inset 0 1px 20px 1px rgba(255, 255, 255, 0.5), 0 0.05em 0px #7f2c00, 0 0.05em 0.05em rgba(0, 0, 0, 0.5);
margin-top: 0.2em;
}
19 changes: 19 additions & 0 deletions app/views/refinery/_head.html.erb
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<head>
<meta charset='<%= Rails.application.config.encoding %>' />
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /><![endif]-->
<title><%= browser_title(yield(:title)) %></title>
<%= raw(%(<meta name="description" content="#{@meta.meta_description}" />)) if @meta.meta_description.present? -%>
<%= raw(%(<meta name="keywords" content="#{@meta.meta_keywords}">)) if @meta.meta_keywords.present? -%>
<%= raw(%(<link rel="canonical" content="#{@canonical}" />)) if @canonical.present? -%>
<%= csrf_meta_tags if Refinery::Core.authenticity_token_on_frontend -%>
<%= yield :meta %>
<%= stylesheet_link_tag "http://fonts.googleapis.com/css?family=Francois+One" %>
<%= stylesheet_link_tag "application", "formatting", "theme" %>
<%= stylesheet_link_tag "home" if home_page? %>
<%= yield :stylesheets %>
<%= render '/refinery/google_analytics' %>
<%= javascript_include_tag 'modernizr-min' %>
</head>

0 comments on commit 927846c

Please sign in to comment.