beautiful login page is up
4
Gemfile
@ -2,7 +2,7 @@
|
||||
source "http://gemcutter.org"
|
||||
source "http://gems.github.com"
|
||||
|
||||
gem "rails", "3.0.0.beta2"
|
||||
gem "rails", "3.0.0.beta3"
|
||||
|
||||
gem "liquid"
|
||||
gem "bson_ext"
|
||||
@ -10,6 +10,8 @@ gem "mongo_ext"
|
||||
gem "mongoid", ">= 2.0.0.beta2"
|
||||
gem "warden"
|
||||
gem "devise", ">= 1.1.rc0"
|
||||
gem "haml", '>= 3.0.0.beta.2', :git => 'git://github.com/nex3/haml.git'
|
||||
gem "formtastic", :git => 'git://github.com/justinfrench/formtastic.git', :branch => 'rails3'
|
||||
|
||||
|
||||
# Development environment
|
||||
|
9
app/controllers/admin/passwords_controller.rb
Normal file
@ -0,0 +1,9 @@
|
||||
class Admin::PasswordsController < Devise::PasswordsController
|
||||
|
||||
include Locomotive::Routing::SiteDispatcher
|
||||
|
||||
layout 'login'
|
||||
|
||||
before_filter :require_site
|
||||
|
||||
end
|
9
app/controllers/admin/sessions_controller.rb
Normal file
@ -0,0 +1,9 @@
|
||||
class Admin::SessionsController < Devise::SessionsController
|
||||
|
||||
include Locomotive::Routing::SiteDispatcher
|
||||
|
||||
layout 'login'
|
||||
|
||||
before_filter :require_site
|
||||
|
||||
end
|
@ -1,3 +1,11 @@
|
||||
class ApplicationController < ActionController::Base
|
||||
protect_from_forgery
|
||||
|
||||
before_filter :set_locale
|
||||
|
||||
protected
|
||||
|
||||
def set_locale
|
||||
I18n.locale = 'fr'
|
||||
end
|
||||
end
|
||||
|
@ -1,4 +1,4 @@
|
||||
class HomeController < ActionController::Base
|
||||
class HomeController < ApplicationController
|
||||
|
||||
def show; end
|
||||
|
||||
|
@ -1,2 +1,26 @@
|
||||
module ApplicationHelper
|
||||
|
||||
def title(title = nil)
|
||||
if title.nil?
|
||||
@content_for_title
|
||||
else
|
||||
@content_for_title = title
|
||||
''
|
||||
end
|
||||
end
|
||||
|
||||
def flash_message
|
||||
if not flash.empty?
|
||||
content_tag :div, flash.values.first,
|
||||
:id => "flash-#{flash.keys.first}",
|
||||
:class => 'application-message'
|
||||
else
|
||||
''
|
||||
end
|
||||
end
|
||||
|
||||
def submit_button_tag(label)
|
||||
content_tag(:button, content_tag(:span, label), :type => 'submit', :class => 'button')
|
||||
end
|
||||
|
||||
end
|
||||
|
18
app/views/admin/passwords/edit.html.haml
Normal file
@ -0,0 +1,18 @@
|
||||
- title t('.title')
|
||||
|
||||
= semantic_form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put }) do |f|
|
||||
|
||||
= f.hidden_field :reset_password_token
|
||||
|
||||
.inner
|
||||
= flash_message
|
||||
|
||||
= f.inputs do
|
||||
= f.input :password, :label => t('.password'), :required => false
|
||||
= f.input :password_confirmation, :label => t('.password_confirmation'), :required => false
|
||||
|
||||
%p.link
|
||||
= link_to t('.link'), new_account_session_path(resource_name)
|
||||
|
||||
.footer
|
||||
= submit_button_tag t('buttons.change_password')
|
17
app/views/admin/passwords/new.html.haml
Normal file
@ -0,0 +1,17 @@
|
||||
- title t('.title')
|
||||
|
||||
= semantic_form_for(resource, :as => resource_name, :url => password_path(resource_name)) do |f|
|
||||
|
||||
= f.hidden_field :reset_password_token
|
||||
|
||||
.inner
|
||||
= flash_message
|
||||
|
||||
= f.inputs do
|
||||
= f.input :email, :label => t('.email'), :required => false
|
||||
|
||||
%p.link
|
||||
= link_to t('.link'), new_account_session_path(resource_name)
|
||||
|
||||
.footer
|
||||
= submit_button_tag t('buttons.send_password')
|
15
app/views/admin/sessions/new.html.haml
Normal file
@ -0,0 +1,15 @@
|
||||
- title t('.title')
|
||||
|
||||
= semantic_form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f|
|
||||
.inner
|
||||
= flash_message
|
||||
|
||||
= f.inputs do
|
||||
= f.input :email, :label => t('.email'), :required => false
|
||||
= f.input :password, :label => t('.password'), :required => false
|
||||
|
||||
%p.link
|
||||
= link_to t('.link'), new_password_path(resource_name)
|
||||
|
||||
.footer
|
||||
= submit_button_tag t('buttons.login')
|
@ -1,12 +0,0 @@
|
||||
<h2>Resend confirmation instructions</h2>
|
||||
|
||||
<%= form_for(resource_name, resource, :url => confirmation_path(resource_name)) do |f| %>
|
||||
<%= f.error_messages %>
|
||||
|
||||
<p><%= f.label :email %></p>
|
||||
<p><%= f.text_field :email %></p>
|
||||
|
||||
<p><%= f.submit "Resend confirmation instructions" %></p>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "devise/shared/links" %>
|
12
app/views/devise/confirmations/new.html.haml
Normal file
@ -0,0 +1,12 @@
|
||||
%h2
|
||||
Resend confirmation instructions
|
||||
= form_for(resource_name, resource, :url => confirmation_path(resource_name)) do |f|
|
||||
= f.error_messages
|
||||
%p
|
||||
= f.label :email
|
||||
%p
|
||||
= f.text_field :email
|
||||
%p
|
||||
= f.submit "Resend confirmation instructions"
|
||||
- end
|
||||
= render :partial => "devise/shared/links"
|
@ -1,5 +0,0 @@
|
||||
<p>Welcome <%= @resource.email %>!</p>
|
||||
|
||||
<p>You can confirm your account through the link below:</p>
|
||||
|
||||
<p><%= link_to 'Confirm my account', confirmation_url(@resource, :confirmation_token => @resource.confirmation_token) %></p>
|
@ -0,0 +1,8 @@
|
||||
%p
|
||||
Welcome
|
||||
= @resource.email
|
||||
\!
|
||||
%p
|
||||
You can confirm your account through the link below:
|
||||
%p
|
||||
= link_to 'Confirm my account', confirmation_url(@resource, :confirmation_token => @resource.confirmation_token)
|
@ -1,8 +0,0 @@
|
||||
<p>Hello <%= @resource.email %>!</p>
|
||||
|
||||
<p>Someone has requested a link to change your password, and you can do this through the link below.</p>
|
||||
|
||||
<p><%= link_to 'Change my password', edit_password_url(@resource, :reset_password_token => @resource.reset_password_token) %></p>
|
||||
|
||||
<p>If you didn't request this, please ignore this email.</p>
|
||||
<p>Your password won't change until you access the link above and create a new one.</p>
|
@ -0,0 +1,12 @@
|
||||
%p
|
||||
Hello
|
||||
= @resource.email
|
||||
\!
|
||||
%p
|
||||
Someone has requested a link to change your password, and you can do this through the link below.
|
||||
%p
|
||||
= link_to 'Change my password', edit_password_url(@resource, :reset_password_token => @resource.reset_password_token)
|
||||
%p
|
||||
If you didn't request this, please ignore this email.
|
||||
%p
|
||||
Your password won't change until you access the link above and create a new one.
|
@ -1,7 +0,0 @@
|
||||
<p>Hello <%= @resource.email %>!</p>
|
||||
|
||||
<p>Your account has been locked due to an excessive amount of unsuccessful sign in attempts.</p>
|
||||
|
||||
<p>Click the link below to unlock your account:</p>
|
||||
|
||||
<p><%= link_to 'Unlock my account', unlock_url(@resource, :unlock_token => @resource.unlock_token) %></p>
|
10
app/views/devise/mailer/unlock_instructions.html.haml
Normal file
@ -0,0 +1,10 @@
|
||||
%p
|
||||
Hello
|
||||
= @resource.email
|
||||
\!
|
||||
%p
|
||||
Your account has been locked due to an excessive amount of unsuccessful sign in attempts.
|
||||
%p
|
||||
Click the link below to unlock your account:
|
||||
%p
|
||||
= link_to 'Unlock my account', unlock_url(@resource, :unlock_token => @resource.unlock_token)
|
@ -1,16 +0,0 @@
|
||||
<h2>Change your password</h2>
|
||||
|
||||
<%= form_for(resource_name, resource, :url => password_path(resource_name), :html => { :method => :put }) do |f| %>
|
||||
<%= f.error_messages %>
|
||||
<%= f.hidden_field :reset_password_token %>
|
||||
|
||||
<p><%= f.label :password %></p>
|
||||
<p><%= f.password_field :password %></p>
|
||||
|
||||
<p><%= f.label :password_confirmation %></p>
|
||||
<p><%= f.password_field :password_confirmation %></p>
|
||||
|
||||
<p><%= f.submit "Change my password" %></p>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "devise/shared/links" %>
|
@ -1,12 +0,0 @@
|
||||
<h2>Forgot your password?</h2>
|
||||
|
||||
<%= form_for(resource_name, resource, :url => password_path(resource_name)) do |f| %>
|
||||
<%= f.error_messages %>
|
||||
|
||||
<p><%= f.label :email %></p>
|
||||
<p><%= f.text_field :email %></p>
|
||||
|
||||
<p><%= f.submit "Send me reset password instructions" %></p>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "devise/shared/links" %>
|
@ -1,25 +0,0 @@
|
||||
<h2>Edit <%= resource_name.to_s.humanize %></h2>
|
||||
|
||||
<%= form_for(resource_name, resource, :url => registration_path(resource_name), :html => { :method => :put }) do |f| %>
|
||||
<%= f.error_messages %>
|
||||
|
||||
<p><%= f.label :email %></p>
|
||||
<p><%= f.text_field :email %></p>
|
||||
|
||||
<p><%= f.label :password %> <i>(leave blank if you don't want to change it)</i></p>
|
||||
<p><%= f.password_field :password %></p>
|
||||
|
||||
<p><%= f.label :password_confirmation %></p>
|
||||
<p><%= f.password_field :password_confirmation %></p>
|
||||
|
||||
<p><%= f.label :current_password %> <i>(we need your current password to confirm your changes)</i></p>
|
||||
<p><%= f.password_field :current_password %></p>
|
||||
|
||||
<p><%= f.submit "Update" %></p>
|
||||
<% end %>
|
||||
|
||||
<h3>Cancel my account</h3>
|
||||
|
||||
<p>Unhappy? <%= link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete %>.</p>
|
||||
|
||||
<%= link_to "Back", :back %>
|
35
app/views/devise/registrations/edit.html.haml
Normal file
@ -0,0 +1,35 @@
|
||||
%h2
|
||||
Edit
|
||||
= resource_name.to_s.humanize
|
||||
= form_for(resource_name, resource, :url => registration_path(resource_name), :html => { :method => :put }) do |f|
|
||||
= f.error_messages
|
||||
%p
|
||||
= f.label :email
|
||||
%p
|
||||
= f.text_field :email
|
||||
%p
|
||||
= f.label :password
|
||||
%i
|
||||
(leave blank if you don't want to change it)
|
||||
%p
|
||||
= f.password_field :password
|
||||
%p
|
||||
= f.label :password_confirmation
|
||||
%p
|
||||
= f.password_field :password_confirmation
|
||||
%p
|
||||
= f.label :current_password
|
||||
%i
|
||||
(we need your current password to confirm your changes)
|
||||
%p
|
||||
= f.password_field :current_password
|
||||
%p
|
||||
= f.submit "Update"
|
||||
- end
|
||||
%h3
|
||||
Cancel my account
|
||||
%p
|
||||
Unhappy?
|
||||
= link_to "Cancel my account", registration_path(resource_name), :confirm => "Are you sure?", :method => :delete
|
||||
\.
|
||||
= link_to "Back", :back
|
@ -1,17 +0,0 @@
|
||||
<h2>Sign up</h2>
|
||||
|
||||
<%= form_for(resource_name, resource, :url => registration_path(resource_name)) do |f| %>
|
||||
<%= f.error_messages %>
|
||||
<p><%= f.label :email %></p>
|
||||
<p><%= f.text_field :email %></p>
|
||||
|
||||
<p><%= f.label :password %></p>
|
||||
<p><%= f.password_field :password %></p>
|
||||
|
||||
<p><%= f.label :password_confirmation %></p>
|
||||
<p><%= f.password_field :password_confirmation %></p>
|
||||
|
||||
<p><%= f.submit "Sign up" %></p>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "devise/shared/links" %>
|
20
app/views/devise/registrations/new.html.haml
Normal file
@ -0,0 +1,20 @@
|
||||
%h2
|
||||
Sign up
|
||||
= form_for(resource_name, resource, :url => registration_path(resource_name)) do |f|
|
||||
= f.error_messages
|
||||
%p
|
||||
= f.label :email
|
||||
%p
|
||||
= f.text_field :email
|
||||
%p
|
||||
= f.label :password
|
||||
%p
|
||||
= f.password_field :password
|
||||
%p
|
||||
= f.label :password_confirmation
|
||||
%p
|
||||
= f.password_field :password_confirmation
|
||||
%p
|
||||
= f.submit "Sign up"
|
||||
- end
|
||||
= render :partial => "devise/shared/links"
|
@ -1,17 +0,0 @@
|
||||
<h2>Sign in</h2>
|
||||
|
||||
<%= form_for(resource_name, resource, :url => session_path(resource_name)) do |f| %>
|
||||
<p><%= f.label :email %></p>
|
||||
<p><%= f.text_field :email %></p>
|
||||
|
||||
<p><%= f.label :password %></p>
|
||||
<p><%= f.password_field :password %></p>
|
||||
|
||||
<% if devise_mapping.rememberable? -%>
|
||||
<p><%= f.check_box :remember_me %> <%= f.label :remember_me %></p>
|
||||
<% end -%>
|
||||
|
||||
<p><%= f.submit "Sign in" %></p>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "devise/shared/links" %>
|
22
app/views/devise/sessions/new.html.haml
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
|
||||
/ = form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f|
|
||||
/ %p
|
||||
/ = f.label :email
|
||||
/ %p
|
||||
/ = f.text_field :email
|
||||
/
|
||||
/ %p
|
||||
/ = f.label :password
|
||||
/ %p
|
||||
/ = f.password_field :password
|
||||
/
|
||||
/ - if devise_mapping.rememberable?
|
||||
/ %p
|
||||
/ = f.check_box :remember_me
|
||||
/ = f.label :remember_me
|
||||
/
|
||||
/ %p
|
||||
/ = f.submit "Sign in"
|
||||
/
|
||||
/ = link_to "Forgot your password?", new_password_path(resource_name)
|
@ -1,19 +0,0 @@
|
||||
<%- if controller_name != 'sessions' %>
|
||||
<%= link_to "Sign in", new_session_path(resource_name) %><br />
|
||||
<% end -%>
|
||||
|
||||
<%- if devise_mapping.registerable? && controller_name != 'registrations' %>
|
||||
<%= link_to "Sign up", new_registration_path(resource_name) %><br />
|
||||
<% end -%>
|
||||
|
||||
<%- if devise_mapping.recoverable? && controller_name != 'passwords' %>
|
||||
<%= link_to "Forgot your password?", new_password_path(resource_name) %><br />
|
||||
<% end -%>
|
||||
|
||||
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
|
||||
<%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name) %><br />
|
||||
<% end -%>
|
||||
|
||||
<%- if devise_mapping.lockable? && controller_name != 'unlocks' %>
|
||||
<%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name) %><br />
|
||||
<% end -%>
|
20
app/views/devise/shared/_links.haml
Normal file
@ -0,0 +1,20 @@
|
||||
- if controller_name != 'sessions'
|
||||
= link_to "Sign in", new_session_path(resource_name)
|
||||
%br
|
||||
- end
|
||||
- if devise_mapping.registerable? && controller_name != 'registrations'
|
||||
= link_to "Sign up", new_registration_path(resource_name)
|
||||
%br
|
||||
- end
|
||||
- if devise_mapping.recoverable? && controller_name != 'passwords'
|
||||
= link_to "Forgot your password?", new_password_path(resource_name)
|
||||
%br
|
||||
- end
|
||||
- if devise_mapping.confirmable? && controller_name != 'confirmations'
|
||||
= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name)
|
||||
%br
|
||||
- end
|
||||
- if devise_mapping.lockable? && controller_name != 'unlocks'
|
||||
= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name)
|
||||
%br
|
||||
- end
|
@ -1,12 +0,0 @@
|
||||
<h2>Resend unlock instructions</h2>
|
||||
|
||||
<%= form_for(resource_name, resource, :url => unlock_path(resource_name)) do |f| %>
|
||||
<%= f.error_messages %>
|
||||
|
||||
<p><%= f.label :email %></p>
|
||||
<p><%= f.text_field :email %></p>
|
||||
|
||||
<p><%= f.submit "Resend unlock instructions" %></p>
|
||||
<% end %>
|
||||
|
||||
<%= render :partial => "devise/shared/links" %>
|
12
app/views/devise/unlocks/new.html.haml
Normal file
@ -0,0 +1,12 @@
|
||||
%h2
|
||||
Resend unlock instructions
|
||||
= form_for(resource_name, resource, :url => unlock_path(resource_name)) do |f|
|
||||
= f.error_messages
|
||||
%p
|
||||
= f.label :email
|
||||
%p
|
||||
= f.text_field :email
|
||||
%p
|
||||
= f.submit "Resend unlock instructions"
|
||||
- end
|
||||
= render :partial => "devise/shared/links"
|
@ -1,3 +0,0 @@
|
||||
<h1>Locomotive rocks !!!</h1>
|
||||
|
||||
<p><%= flash[:error] %></p>
|
4
app/views/home/show.html.haml
Normal file
@ -0,0 +1,4 @@
|
||||
%h2 Locomotive rocks !!!
|
||||
|
||||
%p
|
||||
= flash[:error]
|
7
app/views/layouts/application.html.haml
Normal file
@ -0,0 +1,7 @@
|
||||
!!! XML
|
||||
!!!
|
||||
%html{ :xmlns => 'http://www.w3.org/1999/xhtml' }
|
||||
%head
|
||||
%body
|
||||
%h1 Welcome to Locomotive
|
||||
= yield
|
15
app/views/layouts/login.html.haml
Normal file
@ -0,0 +1,15 @@
|
||||
!!! XML
|
||||
!!!
|
||||
%html{ :xmlns => 'http://www.w3.org/1999/xhtml' }
|
||||
%head
|
||||
%title= escape_once("#{Locomotive.config.name} — #{current_site.name}")
|
||||
= stylesheet_link_tag 'blueprint/screen', 'admin/login', :media => 'screen'
|
||||
/ [if IE]
|
||||
= stylesheet_link_tag('blueprint/ie', :media => 'screen')
|
||||
%body
|
||||
#wrapper
|
||||
#light.container
|
||||
#panel.container
|
||||
%h1= title
|
||||
|
||||
= yield
|
@ -43,6 +43,6 @@ module Locomotive
|
||||
# Configure sensitive parameters which will be filtered from the log file.
|
||||
config.filter_parameters << :password
|
||||
|
||||
config.cookie_secret = '968a457262807c64e3ed5609882e17a774b917f5bcf2d308bd37eac4ba4d416d5692e6b13d77523fddb94c1dd603f160db8492b86b5e0203240bf339fe2aeae4'
|
||||
config.secret_token = '968a457262807c64e3ed5609882e17a774b917f5bcf2d308bd37eac4ba4d416d5692e6b13d77523fddb94c1dd603f160db8492b86b5e0203240bf339fe2aeae4'
|
||||
end
|
||||
end
|
||||
|
@ -18,4 +18,12 @@ Locomotive::Application.configure do
|
||||
config.action_mailer.raise_delivery_errors = false
|
||||
|
||||
# config.action_mailer.default_url_options = { :host => 'localhost:3000' }
|
||||
|
||||
# MockSmtp settings
|
||||
config.action_mailer.delivery_method = :smtp
|
||||
config.action_mailer.smtp_settings = {
|
||||
:address => "localhost",
|
||||
:port => 1025,
|
||||
:domain => "example.com"
|
||||
}
|
||||
end
|
||||
|
@ -1 +0,0 @@
|
||||
# Rails.application.config.cookie_secret = '968a457262807c64e3ed5609882e17a774b917f5bcf2d308bd37eac4ba4d416d5692e6b13d77523fddb94c1dd603f160db8492b86b5e0203240bf339fe2aeae4'
|
@ -84,6 +84,7 @@ Devise.setup do |config|
|
||||
# ==> General configuration
|
||||
# Load and configure the ORM. Supports :active_record (default), :mongoid
|
||||
# (requires mongo_ext installed) and :data_mapper (experimental).
|
||||
require 'active_support/core_ext/class/attribute'
|
||||
require 'devise/orm/mongoid'
|
||||
|
||||
# Turn scoped views on. Before rendering "sessions/new", it will first check for
|
||||
|
1
config/initializers/formtastic.rb
Normal file
@ -0,0 +1 @@
|
||||
Formtastic::SemanticFormBuilder.i18n_lookups_by_default = true
|
@ -4,5 +4,5 @@ Locomotive.configure do |config|
|
||||
config.default_domain = 'example.com'
|
||||
end
|
||||
|
||||
# TODO: embed it in Locomotive
|
||||
# TODO: embed it in Locomotive right after configure
|
||||
ActionMailer::Base.default_url_options[:host] = Locomotive.config.default_domain + (Rails.env.development? ? ':3000' : '')
|
@ -1,2 +1,25 @@
|
||||
en:
|
||||
hello: "Hello world"
|
||||
admin:
|
||||
sessions:
|
||||
new:
|
||||
title: Login to
|
||||
link: "I forgot my password"
|
||||
email: "Email"
|
||||
password: "Password"
|
||||
|
||||
passwords:
|
||||
new:
|
||||
title: Forgot password
|
||||
link: "→ Back to login page"
|
||||
email: "Your email"
|
||||
edit:
|
||||
title: Update my password
|
||||
link: "→ Back to login page"
|
||||
password: "Your new password"
|
||||
password_confirmation: "Confirmation of your new password"
|
||||
|
||||
buttons:
|
||||
login: Log in
|
||||
send_password: Send
|
||||
change_password: Update
|
||||
|
@ -1,2 +1,21 @@
|
||||
fr:
|
||||
hello: 'Bonjour le monde'
|
||||
admin:
|
||||
sessions:
|
||||
new:
|
||||
title: Connexion à
|
||||
link: "J'ai oublié mon mot de passe"
|
||||
email: "Email"
|
||||
password: "Mot de passe"
|
||||
passwords:
|
||||
new:
|
||||
title: Mot de passe oublié
|
||||
link: "→ Retour page de connexion"
|
||||
email: "Votre email"
|
||||
edit:
|
||||
title: Changer mon mot de passe
|
||||
link: "→ Retour page de connexion"
|
||||
|
||||
buttons:
|
||||
login: Se connecter
|
||||
send_password: Envoyer
|
||||
change_password: Changer
|
||||
|
@ -5,17 +5,20 @@ Locomotive::Application.routes.draw do |map|
|
||||
end
|
||||
|
||||
# admin authentication
|
||||
Devise.register(:accounts, {}) # bypass the devise_for :accounts
|
||||
Devise.register(:accounts, :controllers => { :sessions => 'admin/sessions', :passwords => 'admin/passwords' }) # bypass the devise_for :accounts
|
||||
scope '/admin' do
|
||||
get 'login' => 'devise/sessions#new', :as => :new_account_session
|
||||
post 'login' => 'devise/sessions#create', :as => :account_session
|
||||
get 'logout' => 'devise/sessions#destroy', :as => :destroy_account_session
|
||||
resource :password, :only => [:new, :create, :edit, :update], :controller => 'devise/passwords'
|
||||
get 'login' => 'admin/sessions#new', :as => :new_account_session
|
||||
post 'login' => 'admin/sessions#create', :as => :account_session
|
||||
get 'logout' => 'admin/sessions#destroy', :as => :destroy_account_session
|
||||
resource :password, :only => [:new, :create, :edit, :update], :controller => 'admin/passwords'
|
||||
end
|
||||
|
||||
# admin interface for each website
|
||||
namespace 'admin' do
|
||||
# TODO
|
||||
# get 'login' => 'sessions#new', :as => :new_account_session
|
||||
# post 'login' => 'sessions#create', :as => :account_session
|
||||
# get 'logout' => 'sessions#destroy', :as => :destroy_account_session
|
||||
# resource :password, :only => [:new, :create, :edit, :update], :controller => 'devise/passwords'
|
||||
end
|
||||
|
||||
match '/' => 'pages#show'
|
||||
|
@ -1,49 +0,0 @@
|
||||
module Devise
|
||||
module Orm
|
||||
module MongoMapper
|
||||
module Hook
|
||||
def devise_modules_hook!
|
||||
extend Schema
|
||||
include Compatibility
|
||||
yield
|
||||
return unless Devise.apply_schema
|
||||
devise_modules.each { |m| send(m) if respond_to?(m, true) }
|
||||
end
|
||||
end
|
||||
|
||||
module Schema
|
||||
include Devise::Schema
|
||||
|
||||
# Tell how to apply schema methods. This automatically converts DateTime
|
||||
# to Time, since MongoMapper does not recognize the former.
|
||||
def apply_schema(name, type, options={})
|
||||
type = Time if type == DateTime
|
||||
key name, type, options
|
||||
end
|
||||
end
|
||||
|
||||
module Compatibility
|
||||
extend ActiveSupport::Concern
|
||||
|
||||
module ClassMethods
|
||||
def find(*args)
|
||||
case args.first
|
||||
when :first, :all
|
||||
send(args.shift, *args)
|
||||
else
|
||||
super
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
[MongoMapper::Document, MongoMapper::EmbeddedDocument].each do |mod|
|
||||
mod::ClassMethods.class_eval do
|
||||
include Devise::Models
|
||||
include Devise::Orm::MongoMapper::Hook
|
||||
end
|
||||
end
|
@ -1,3 +1,6 @@
|
||||
# require 'locomotive/patches'
|
||||
require 'locomotive/configuration'
|
||||
|
||||
module Locomotive
|
||||
|
||||
class << self
|
||||
@ -14,66 +17,67 @@ module Locomotive
|
||||
yield(self.config)
|
||||
end
|
||||
|
||||
class Configuration
|
||||
|
||||
@@defaults = {
|
||||
:default_domain => 'rails.local.fr',
|
||||
:reserved_subdomains => %w{www admin email blog webmail mail support help site sites}
|
||||
}
|
||||
|
||||
cattr_accessor :settings
|
||||
|
||||
def initialize
|
||||
@@settings = self.class.get_from_hash(@@defaults)
|
||||
end
|
||||
|
||||
def self.settings
|
||||
@@settings
|
||||
end
|
||||
|
||||
def method_missing(name, *args, &block)
|
||||
self.settings.send(name, *args, &block)
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
# converts a hash map into a ConfigurationHash
|
||||
def self.get_from_hash(hash)
|
||||
config = ConfigurationHash.new
|
||||
|
||||
hash.each_pair do |key, value|
|
||||
config[key] = value.is_a?(Hash) ? self.get_from_hash(value) : value
|
||||
end
|
||||
|
||||
config
|
||||
end
|
||||
end
|
||||
|
||||
# specialized hash for storing configuration settings
|
||||
class ConfigurationHash < Hash
|
||||
# ensure that default entries always produce
|
||||
# instances of the ConfigurationHash class
|
||||
def default(key=nil)
|
||||
include?(key) ? self[key] : self[key] = self.class.new
|
||||
end
|
||||
|
||||
# retrieves the specified key and yields it
|
||||
# if a block is provided
|
||||
def [](key, &block)
|
||||
block_given? ? yield(super(key)) : super(key)
|
||||
end
|
||||
|
||||
# provides member-based access to keys
|
||||
# i.e. params.id === params[:id]
|
||||
# note: all keys are converted to symbols
|
||||
def method_missing(name, *args, &block)
|
||||
if name.to_s.ends_with? '='
|
||||
send :[]=, name.to_s.chomp('=').to_sym, *args
|
||||
else
|
||||
send(:[], name.to_sym, &block)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# class Configuration
|
||||
#
|
||||
# @@defaults = {
|
||||
# :name => 'LocomotiveApp'
|
||||
# :default_domain => 'rails.local.fr',
|
||||
# :reserved_subdomains => %w{www admin email blog webmail mail support help site sites}
|
||||
# }
|
||||
#
|
||||
# cattr_accessor :settings
|
||||
#
|
||||
# def initialize
|
||||
# @@settings = self.class.get_from_hash(@@defaults)
|
||||
# end
|
||||
#
|
||||
# def self.settings
|
||||
# @@settings
|
||||
# end
|
||||
#
|
||||
# def method_missing(name, *args, &block)
|
||||
# self.settings.send(name, *args, &block)
|
||||
# end
|
||||
#
|
||||
# protected
|
||||
#
|
||||
# # converts a hash map into a ConfigurationHash
|
||||
# def self.get_from_hash(hash)
|
||||
# config = ConfigurationHash.new
|
||||
#
|
||||
# hash.each_pair do |key, value|
|
||||
# config[key] = value.is_a?(Hash) ? self.get_from_hash(value) : value
|
||||
# end
|
||||
#
|
||||
# config
|
||||
# end
|
||||
# end
|
||||
#
|
||||
# # specialized hash for storing configuration settings
|
||||
# class ConfigurationHash < Hash
|
||||
# # ensure that default entries always produce
|
||||
# # instances of the ConfigurationHash class
|
||||
# def default(key=nil)
|
||||
# include?(key) ? self[key] : self[key] = self.class.new
|
||||
# end
|
||||
#
|
||||
# # retrieves the specified key and yields it
|
||||
# # if a block is provided
|
||||
# def [](key, &block)
|
||||
# block_given? ? yield(super(key)) : super(key)
|
||||
# end
|
||||
#
|
||||
# # provides member-based access to keys
|
||||
# # i.e. params.id === params[:id]
|
||||
# # note: all keys are converted to symbols
|
||||
# def method_missing(name, *args, &block)
|
||||
# if name.to_s.ends_with? '='
|
||||
# send :[]=, name.to_s.chomp('=').to_sym, *args
|
||||
# else
|
||||
# send(:[], name.to_sym, &block)
|
||||
# end
|
||||
# end
|
||||
# end
|
||||
#
|
||||
|
||||
end
|
66
lib/locomotive/configuration.rb
Normal file
@ -0,0 +1,66 @@
|
||||
module Locomotive
|
||||
|
||||
class Configuration
|
||||
|
||||
@@defaults = {
|
||||
:name => 'LocomotiveApp',
|
||||
:default_domain => 'rails.local.fr',
|
||||
:reserved_subdomains => %w{www admin email blog webmail mail support help site sites}
|
||||
}
|
||||
|
||||
cattr_accessor :settings
|
||||
|
||||
def initialize
|
||||
@@settings = self.class.get_from_hash(@@defaults)
|
||||
end
|
||||
|
||||
def self.settings
|
||||
@@settings
|
||||
end
|
||||
|
||||
def method_missing(name, *args, &block)
|
||||
self.settings.send(name, *args, &block)
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
# converts a hash map into a ConfigurationHash
|
||||
def self.get_from_hash(hash)
|
||||
config = ConfigurationHash.new
|
||||
|
||||
hash.each_pair do |key, value|
|
||||
config[key] = value.is_a?(Hash) ? self.get_from_hash(value) : value
|
||||
end
|
||||
|
||||
config
|
||||
end
|
||||
end
|
||||
|
||||
# specialized hash for storing configuration settings
|
||||
class ConfigurationHash < Hash
|
||||
# ensure that default entries always produce
|
||||
# instances of the ConfigurationHash class
|
||||
def default(key=nil)
|
||||
include?(key) ? self[key] : self[key] = self.class.new
|
||||
end
|
||||
|
||||
# retrieves the specified key and yields it
|
||||
# if a block is provided
|
||||
def [](key, &block)
|
||||
block_given? ? yield(super(key)) : super(key)
|
||||
end
|
||||
|
||||
# provides member-based access to keys
|
||||
# i.e. params.id === params[:id]
|
||||
# note: all keys are converted to symbols
|
||||
def method_missing(name, *args, &block)
|
||||
if name.to_s.ends_with? '='
|
||||
send :[]=, name.to_s.chomp('=').to_sym, *args
|
||||
else
|
||||
send(:[], name.to_sym, &block)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
end
|
5
lib/locomotive/devise/sessions_controller.rb
Normal file
@ -0,0 +1,5 @@
|
||||
Devise::SessionsController.class_eval do
|
||||
|
||||
|
||||
|
||||
end
|
2
lib/locomotive/patches.rb
Normal file
@ -0,0 +1,2 @@
|
||||
# load patches for devise, ...etc
|
||||
require 'locomotive/devise/sessions_controller'
|
BIN
public/images/admin/login/bg.png
Normal file
After Width: | Height: | Size: 4.9 KiB |
BIN
public/images/admin/login/bottom_panel_bg.png
Normal file
After Width: | Height: | Size: 878 B |
BIN
public/images/admin/login/buttons/left_bg.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
public/images/admin/login/buttons/right_bg.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
BIN
public/images/admin/login/content_panel_bg.png
Normal file
After Width: | Height: | Size: 168 B |
BIN
public/images/admin/login/input_bg.png
Normal file
After Width: | Height: | Size: 504 B |
BIN
public/images/admin/login/light_bg.png
Normal file
After Width: | Height: | Size: 146 KiB |
BIN
public/images/admin/login/top_panel_bg.png
Normal file
After Width: | Height: | Size: 984 B |
BIN
public/images/admin/login/wrapper_bg.png
Normal file
After Width: | Height: | Size: 20 KiB |
141
public/stylesheets/admin/login.css
Normal file
@ -0,0 +1,141 @@
|
||||
body { background: #000 url(/images/admin/login/bg.png) repeat 0 0; }
|
||||
|
||||
#wrapper {
|
||||
background: transparent url(/images/admin/login/wrapper_bg.png) repeat-x 0 0;
|
||||
min-height: 400px;
|
||||
}
|
||||
|
||||
#light {
|
||||
background: transparent url(/images/admin/login/light_bg.png) no-repeat center 0;
|
||||
min-height: 400px;
|
||||
padding-top: 100px;
|
||||
}
|
||||
|
||||
#panel {
|
||||
background: transparent url(/images/admin/login/top_panel_bg.png) no-repeat center 0;
|
||||
width: 340px;
|
||||
height: 344px;
|
||||
padding: 8px 9px 0 7px;
|
||||
}
|
||||
|
||||
#panel h1 {
|
||||
height: 36px;
|
||||
margin: 0px;
|
||||
padding: 25px 0px 0 0;
|
||||
font-size: 1.2em;
|
||||
color: white;
|
||||
text-align: center;
|
||||
text-shadow: 1px 1px 1px #000;
|
||||
}
|
||||
|
||||
#panel .inner {
|
||||
background: transparent url(/images/admin/login/content_panel_bg.png) repeat-y center 0;
|
||||
padding: 5px 0px 20px 0;
|
||||
}
|
||||
|
||||
#panel fieldset {
|
||||
border: 0px;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
#panel fieldset ol {
|
||||
width: 260px;
|
||||
list-style: none;
|
||||
padding: 0px;
|
||||
margin: 0px auto 0 auto;
|
||||
}
|
||||
|
||||
#panel fieldset ol li {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#panel fieldset ol li label {
|
||||
display: block;
|
||||
font-size: 1.2em;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
#panel fieldset ol li input {
|
||||
background: white url(/images/admin/login/input_bg.png) no-repeat 0 0;
|
||||
width: 246px;
|
||||
padding: 7px;
|
||||
border: 0px;
|
||||
font-size: 1.2em;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
#panel fieldset ol li p.inline-errors {
|
||||
padding: 3px 5px;
|
||||
margin: 5px 0px;
|
||||
background: #FFE5E5;
|
||||
color: #CE2525;
|
||||
}
|
||||
|
||||
#panel p.link {
|
||||
margin: 15px 0 0 40px;
|
||||
}
|
||||
|
||||
#panel p.link a {
|
||||
color: #1f82bc;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#panel p.link a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#panel div.footer {
|
||||
background: transparent url(/images/admin/login/bottom_panel_bg.png) no-repeat center 0;
|
||||
text-align: right;
|
||||
margin: 0px 0px 0 0px;
|
||||
padding: 22px 0;
|
||||
}
|
||||
|
||||
#panel div.footer .button {
|
||||
display: inline-block;
|
||||
background: transparent url(/images/admin/login/buttons/left_bg.png) no-repeat 0 0;
|
||||
margin: 0 38px 0 0;
|
||||
padding: 0px 0px 0px 2px;
|
||||
font-size: 1.1em;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
height: 31px;
|
||||
}
|
||||
|
||||
#panel div.footer .button span {
|
||||
display: inline-block;
|
||||
background: transparent url(/images/admin/login/buttons/right_bg.png) no-repeat right top;
|
||||
position: relative;
|
||||
top: -1px;
|
||||
padding: 3px 9px 9px 4px;
|
||||
line-height: 21px;
|
||||
}
|
||||
|
||||
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
||||
#panel div.footer .button { padding-left: 5px; }
|
||||
#panel div.footer .button span { top: 0px; padding-right: 10px; }
|
||||
}
|
||||
|
||||
/* ___ Messages ___ */
|
||||
|
||||
div.application-message {
|
||||
font-size: 1.2em;
|
||||
font-weight: bold;
|
||||
padding: 8px;
|
||||
margin: 10px 20px 0 20px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
div#flash-alert {
|
||||
background: #FFE5E5;
|
||||
color: #CE2525;
|
||||
}
|
||||
|
||||
div#flash-notice {
|
||||
background: #c7ff99;
|
||||
color: #58852b;
|
||||
}
|
||||
|
||||
|
26
public/stylesheets/blueprint/ie.css
Executable file
@ -0,0 +1,26 @@
|
||||
/* -----------------------------------------------------------------------
|
||||
|
||||
|
||||
Blueprint CSS Framework 0.8
|
||||
http://blueprintcss.org
|
||||
|
||||
* Copyright (c) 2007-Present. See LICENSE for more info.
|
||||
* See README for instructions on how to use Blueprint.
|
||||
* For credits and origins, see AUTHORS.
|
||||
* This is a compressed file. See the sources in the 'src' directory.
|
||||
|
||||
----------------------------------------------------------------------- */
|
||||
|
||||
/* ie.css */
|
||||
body {text-align:center;}
|
||||
.container {text-align:left;}
|
||||
* html .column, * html div.span-1, * html div.span-2, * html div.span-3, * html div.span-4, * html div.span-5, * html div.span-6, * html div.span-7, * html div.span-8, * html div.span-9, * html div.span-10, * html div.span-11, * html div.span-12, * html div.span-13, * html div.span-14, * html div.span-15, * html div.span-16, * html div.span-17, * html div.span-18, * html div.span-19, * html div.span-20, * html div.span-21, * html div.span-22, * html div.span-23, * html div.span-24 {overflow-x:hidden;}
|
||||
* html legend {margin:0px -8px 16px 0;padding:0;}
|
||||
ol {margin-left:2em;}
|
||||
sup {vertical-align:text-top;}
|
||||
sub {vertical-align:text-bottom;}
|
||||
html>body p code {*white-space:normal;}
|
||||
hr {margin:-8px auto 11px;}
|
||||
.clearfix, .container {display:inline-block;}
|
||||
* html .clearfix, * html .container {height:1%;}
|
||||
fieldset {padding-top:0;}
|
BIN
public/stylesheets/blueprint/plugins/buttons/icons/cross.png
Executable file
After Width: | Height: | Size: 655 B |
BIN
public/stylesheets/blueprint/plugins/buttons/icons/key.png
Executable file
After Width: | Height: | Size: 455 B |
BIN
public/stylesheets/blueprint/plugins/buttons/icons/tick.png
Executable file
After Width: | Height: | Size: 537 B |
32
public/stylesheets/blueprint/plugins/buttons/readme.txt
Executable file
@ -0,0 +1,32 @@
|
||||
Buttons
|
||||
|
||||
* Gives you great looking CSS buttons, for both <a> and <button>.
|
||||
* Demo: particletree.com/features/rediscovering-the-button-element
|
||||
|
||||
|
||||
Credits
|
||||
----------------------------------------------------------------
|
||||
|
||||
* Created by Kevin Hale [particletree.com]
|
||||
* Adapted for Blueprint by Olav Bjorkoy [bjorkoy.com]
|
||||
|
||||
|
||||
Usage
|
||||
----------------------------------------------------------------
|
||||
|
||||
1) Add this plugin to lib/settings.yml.
|
||||
See compress.rb for instructions.
|
||||
|
||||
2) Use the following HTML code to place the buttons on your site:
|
||||
|
||||
<button type="submit" class="button positive">
|
||||
<img src="css/blueprint/plugins/buttons/icons/tick.png" alt=""/> Save
|
||||
</button>
|
||||
|
||||
<a class="button" href="/password/reset/">
|
||||
<img src="css/blueprint/plugins/buttons/icons/key.png" alt=""/> Change Password
|
||||
</a>
|
||||
|
||||
<a href="#" class="button negative">
|
||||
<img src="css/blueprint/plugins/buttons/icons/cross.png" alt=""/> Cancel
|
||||
</a>
|
97
public/stylesheets/blueprint/plugins/buttons/screen.css
Executable file
@ -0,0 +1,97 @@
|
||||
/* --------------------------------------------------------------
|
||||
|
||||
buttons.css
|
||||
* Gives you some great CSS-only buttons.
|
||||
|
||||
Created by Kevin Hale [particletree.com]
|
||||
* particletree.com/features/rediscovering-the-button-element
|
||||
|
||||
See Readme.txt in this folder for instructions.
|
||||
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
a.button, button {
|
||||
display:block;
|
||||
float:left;
|
||||
margin: 0.7em 0.5em 0.7em 0;
|
||||
padding:5px 10px 5px 7px; /* Links */
|
||||
|
||||
border:1px solid #dedede;
|
||||
border-top:1px solid #eee;
|
||||
border-left:1px solid #eee;
|
||||
|
||||
background-color:#f5f5f5;
|
||||
font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
|
||||
font-size:100%;
|
||||
line-height:130%;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
color:#565656;
|
||||
cursor:pointer;
|
||||
}
|
||||
button {
|
||||
width:auto;
|
||||
overflow:visible;
|
||||
padding:4px 10px 3px 7px; /* IE6 */
|
||||
}
|
||||
button[type] {
|
||||
padding:4px 10px 4px 7px; /* Firefox */
|
||||
line-height:17px; /* Safari */
|
||||
}
|
||||
*:first-child+html button[type] {
|
||||
padding:4px 10px 3px 7px; /* IE7 */
|
||||
}
|
||||
button img, a.button img{
|
||||
margin:0 3px -3px 0 !important;
|
||||
padding:0;
|
||||
border:none;
|
||||
width:16px;
|
||||
height:16px;
|
||||
float:none;
|
||||
}
|
||||
|
||||
|
||||
/* Button colors
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* Standard */
|
||||
button:hover, a.button:hover{
|
||||
background-color:#dff4ff;
|
||||
border:1px solid #c2e1ef;
|
||||
color:#336699;
|
||||
}
|
||||
a.button:active{
|
||||
background-color:#6299c5;
|
||||
border:1px solid #6299c5;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
/* Positive */
|
||||
body .positive {
|
||||
color:#529214;
|
||||
}
|
||||
a.positive:hover, button.positive:hover {
|
||||
background-color:#E6EFC2;
|
||||
border:1px solid #C6D880;
|
||||
color:#529214;
|
||||
}
|
||||
a.positive:active {
|
||||
background-color:#529214;
|
||||
border:1px solid #529214;
|
||||
color:#fff;
|
||||
}
|
||||
|
||||
/* Negative */
|
||||
body .negative {
|
||||
color:#d12f19;
|
||||
}
|
||||
a.negative:hover, button.negative:hover {
|
||||
background-color:#fbe3e4;
|
||||
border:1px solid #fbc2c4;
|
||||
color:#d12f19;
|
||||
}
|
||||
a.negative:active {
|
||||
background-color:#d12f19;
|
||||
border:1px solid #d12f19;
|
||||
color:#fff;
|
||||
}
|
14
public/stylesheets/blueprint/plugins/fancy-type/readme.txt
Executable file
@ -0,0 +1,14 @@
|
||||
Fancy Type
|
||||
|
||||
* Gives you classes to use if you'd like some
|
||||
extra fancy typography.
|
||||
|
||||
Credits and instructions are specified above each class
|
||||
in the fancy-type.css file in this directory.
|
||||
|
||||
|
||||
Usage
|
||||
----------------------------------------------------------------
|
||||
|
||||
1) Add this plugin to lib/settings.yml.
|
||||
See compress.rb for instructions.
|
71
public/stylesheets/blueprint/plugins/fancy-type/screen.css
Executable file
@ -0,0 +1,71 @@
|
||||
/* --------------------------------------------------------------
|
||||
|
||||
fancy-type.css
|
||||
* Lots of pretty advanced classes for manipulating text.
|
||||
|
||||
See the Readme file in this folder for additional instructions.
|
||||
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* Indentation instead of line shifts for sibling paragraphs. */
|
||||
p + p { text-indent:2em; margin-top:-1.5em; }
|
||||
form p + p { text-indent: 0; } /* Don't want this in forms. */
|
||||
|
||||
|
||||
/* For great looking type, use this code instead of asdf:
|
||||
<span class="alt">asdf</span>
|
||||
Best used on prepositions and ampersands. */
|
||||
|
||||
.alt {
|
||||
color: #666;
|
||||
font-family: "Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua", Georgia, serif;
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
|
||||
/* For great looking quote marks in titles, replace "asdf" with:
|
||||
<span class="dquo">“</span>asdf”
|
||||
(That is, when the title starts with a quote mark).
|
||||
(You may have to change this value depending on your font size). */
|
||||
|
||||
.dquo { margin-left: -.5em; }
|
||||
|
||||
|
||||
/* Reduced size type with incremental leading
|
||||
(http://www.markboulton.co.uk/journal/comments/incremental_leading/)
|
||||
|
||||
This could be used for side notes. For smaller type, you don't necessarily want to
|
||||
follow the 1.5x vertical rhythm -- the line-height is too much.
|
||||
|
||||
Using this class, it reduces your font size and line-height so that for
|
||||
every four lines of normal sized type, there is five lines of the sidenote. eg:
|
||||
|
||||
New type size in em's:
|
||||
10px (wanted side note size) / 12px (existing base size) = 0.8333 (new type size in ems)
|
||||
|
||||
New line-height value:
|
||||
12px x 1.5 = 18px (old line-height)
|
||||
18px x 4 = 72px
|
||||
72px / 5 = 14.4px (new line height)
|
||||
14.4px / 10px = 1.44 (new line height in em's) */
|
||||
|
||||
p.incr, .incr p {
|
||||
font-size: 10px;
|
||||
line-height: 1.44em;
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
|
||||
/* Surround uppercase words and abbreviations with this class.
|
||||
Based on work by Jørgen Arnor Gårdsø Lom [http://twistedintellect.com/] */
|
||||
|
||||
.caps {
|
||||
font-variant: small-caps;
|
||||
letter-spacing: 1px;
|
||||
text-transform: lowercase;
|
||||
font-size:1.2em;
|
||||
line-height:1%;
|
||||
font-weight:bold;
|
||||
padding:0 2px;
|
||||
}
|
BIN
public/stylesheets/blueprint/plugins/link-icons/icons/doc.png
Executable file
After Width: | Height: | Size: 777 B |
BIN
public/stylesheets/blueprint/plugins/link-icons/icons/email.png
Executable file
After Width: | Height: | Size: 641 B |
BIN
public/stylesheets/blueprint/plugins/link-icons/icons/external.png
Executable file
After Width: | Height: | Size: 46 KiB |
BIN
public/stylesheets/blueprint/plugins/link-icons/icons/feed.png
Executable file
After Width: | Height: | Size: 691 B |
BIN
public/stylesheets/blueprint/plugins/link-icons/icons/im.png
Executable file
After Width: | Height: | Size: 741 B |
BIN
public/stylesheets/blueprint/plugins/link-icons/icons/pdf.png
Executable file
After Width: | Height: | Size: 591 B |
BIN
public/stylesheets/blueprint/plugins/link-icons/icons/visited.png
Executable file
After Width: | Height: | Size: 46 KiB |
BIN
public/stylesheets/blueprint/plugins/link-icons/icons/xls.png
Executable file
After Width: | Height: | Size: 663 B |
18
public/stylesheets/blueprint/plugins/link-icons/readme.txt
Executable file
@ -0,0 +1,18 @@
|
||||
Link Icons
|
||||
* Icons for links based on protocol or file type.
|
||||
|
||||
This is not supported in IE versions < 7.
|
||||
|
||||
|
||||
Credits
|
||||
----------------------------------------------------------------
|
||||
|
||||
* Marc Morgan
|
||||
* Olav Bjorkoy [bjorkoy.com]
|
||||
|
||||
|
||||
Usage
|
||||
----------------------------------------------------------------
|
||||
|
||||
1) Add this line to your HTML:
|
||||
<link rel="stylesheet" href="css/blueprint/plugins/link-icons/screen.css" type="text/css" media="screen, projection">
|
40
public/stylesheets/blueprint/plugins/link-icons/screen.css
Executable file
@ -0,0 +1,40 @@
|
||||
/* --------------------------------------------------------------
|
||||
|
||||
link-icons.css
|
||||
* Icons for links based on protocol or file type.
|
||||
|
||||
See the Readme file in this folder for additional instructions.
|
||||
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* Use this class if a link gets an icon when it shouldn't. */
|
||||
body a.noicon {
|
||||
background:transparent none !important;
|
||||
padding:0 !important;
|
||||
margin:0 !important;
|
||||
}
|
||||
|
||||
/* Make sure the icons are not cut */
|
||||
a[href^="http:"], a[href^="mailto:"], a[href^="http:"]:visited,
|
||||
a[href$=".pdf"], a[href$=".doc"], a[href$=".xls"], a[href$=".rss"],
|
||||
a[href$=".rdf"], a[href^="aim:"] {
|
||||
padding:2px 22px 2px 0;
|
||||
margin:-2px 0;
|
||||
background-repeat: no-repeat;
|
||||
background-position: right center;
|
||||
}
|
||||
|
||||
/* External links */
|
||||
a[href^="http:"] { background-image: url(icons/external.png); }
|
||||
a[href^="mailto:"] { background-image: url(icons/email.png); }
|
||||
a[href^="http:"]:visited { background-image: url(icons/visited.png); }
|
||||
|
||||
/* Files */
|
||||
a[href$=".pdf"] { background-image: url(icons/pdf.png); }
|
||||
a[href$=".doc"] { background-image: url(icons/doc.png); }
|
||||
a[href$=".xls"] { background-image: url(icons/xls.png); }
|
||||
|
||||
/* Misc */
|
||||
a[href$=".rss"],
|
||||
a[href$=".rdf"] { background-image: url(icons/feed.png); }
|
||||
a[href^="aim:"] { background-image: url(icons/im.png); }
|
10
public/stylesheets/blueprint/plugins/rtl/readme.txt
Executable file
@ -0,0 +1,10 @@
|
||||
RTL
|
||||
* Mirrors Blueprint, so it can be used with Right-to-Left languages.
|
||||
|
||||
By Ran Yaniv Hartstein, ranh.co.il
|
||||
|
||||
Usage
|
||||
----------------------------------------------------------------
|
||||
|
||||
1) Add this line to your HTML:
|
||||
<link rel="stylesheet" href="css/blueprint/plugins/rtl/screen.css" type="text/css" media="screen, projection">
|
109
public/stylesheets/blueprint/plugins/rtl/screen.css
Executable file
@ -0,0 +1,109 @@
|
||||
/* --------------------------------------------------------------
|
||||
|
||||
rtl.css
|
||||
* Mirrors Blueprint for left-to-right languages
|
||||
|
||||
By Ran Yaniv Hartstein [ranh.co.il]
|
||||
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
body .container { direction: rtl; }
|
||||
body .column {
|
||||
float: right;
|
||||
margin-right: 0;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
body div.last { margin-left: 0; }
|
||||
body table .last { padding-left: 0; }
|
||||
|
||||
body .append-1 { padding-right: 0; padding-left: 40px; }
|
||||
body .append-2 { padding-right: 0; padding-left: 80px; }
|
||||
body .append-3 { padding-right: 0; padding-left: 120px; }
|
||||
body .append-4 { padding-right: 0; padding-left: 160px; }
|
||||
body .append-5 { padding-right: 0; padding-left: 200px; }
|
||||
body .append-6 { padding-right: 0; padding-left: 240px; }
|
||||
body .append-7 { padding-right: 0; padding-left: 280px; }
|
||||
body .append-8 { padding-right: 0; padding-left: 320px; }
|
||||
body .append-9 { padding-right: 0; padding-left: 360px; }
|
||||
body .append-10 { padding-right: 0; padding-left: 400px; }
|
||||
body .append-11 { padding-right: 0; padding-left: 440px; }
|
||||
body .append-12 { padding-right: 0; padding-left: 480px; }
|
||||
body .append-13 { padding-right: 0; padding-left: 520px; }
|
||||
body .append-14 { padding-right: 0; padding-left: 560px; }
|
||||
body .append-15 { padding-right: 0; padding-left: 600px; }
|
||||
body .append-16 { padding-right: 0; padding-left: 640px; }
|
||||
body .append-17 { padding-right: 0; padding-left: 680px; }
|
||||
body .append-18 { padding-right: 0; padding-left: 720px; }
|
||||
body .append-19 { padding-right: 0; padding-left: 760px; }
|
||||
body .append-20 { padding-right: 0; padding-left: 800px; }
|
||||
body .append-21 { padding-right: 0; padding-left: 840px; }
|
||||
body .append-22 { padding-right: 0; padding-left: 880px; }
|
||||
body .append-23 { padding-right: 0; padding-left: 920px; }
|
||||
|
||||
body .prepend-1 { padding-left: 0; padding-right: 40px; }
|
||||
body .prepend-2 { padding-left: 0; padding-right: 80px; }
|
||||
body .prepend-3 { padding-left: 0; padding-right: 120px; }
|
||||
body .prepend-4 { padding-left: 0; padding-right: 160px; }
|
||||
body .prepend-5 { padding-left: 0; padding-right: 200px; }
|
||||
body .prepend-6 { padding-left: 0; padding-right: 240px; }
|
||||
body .prepend-7 { padding-left: 0; padding-right: 280px; }
|
||||
body .prepend-8 { padding-left: 0; padding-right: 320px; }
|
||||
body .prepend-9 { padding-left: 0; padding-right: 360px; }
|
||||
body .prepend-10 { padding-left: 0; padding-right: 400px; }
|
||||
body .prepend-11 { padding-left: 0; padding-right: 440px; }
|
||||
body .prepend-12 { padding-left: 0; padding-right: 480px; }
|
||||
body .prepend-13 { padding-left: 0; padding-right: 520px; }
|
||||
body .prepend-14 { padding-left: 0; padding-right: 560px; }
|
||||
body .prepend-15 { padding-left: 0; padding-right: 600px; }
|
||||
body .prepend-16 { padding-left: 0; padding-right: 640px; }
|
||||
body .prepend-17 { padding-left: 0; padding-right: 680px; }
|
||||
body .prepend-18 { padding-left: 0; padding-right: 720px; }
|
||||
body .prepend-19 { padding-left: 0; padding-right: 760px; }
|
||||
body .prepend-20 { padding-left: 0; padding-right: 800px; }
|
||||
body .prepend-21 { padding-left: 0; padding-right: 840px; }
|
||||
body .prepend-22 { padding-left: 0; padding-right: 880px; }
|
||||
body .prepend-23 { padding-left: 0; padding-right: 920px; }
|
||||
|
||||
body .border {
|
||||
padding-right: 0;
|
||||
padding-left: 4px;
|
||||
margin-right: 0;
|
||||
margin-left: 5px;
|
||||
border-right: none;
|
||||
border-left: 1px solid #eee;
|
||||
}
|
||||
|
||||
body .colborder {
|
||||
padding-right: 0;
|
||||
padding-left: 24px;
|
||||
margin-right: 0;
|
||||
margin-left: 25px;
|
||||
border-right: none;
|
||||
border-left: 1px solid #eee;
|
||||
}
|
||||
|
||||
body .pull-1 { margin-left: 0; margin-right: -40px; }
|
||||
body .pull-2 { margin-left: 0; margin-right: -80px; }
|
||||
body .pull-3 { margin-left: 0; margin-right: -120px; }
|
||||
body .pull-4 { margin-left: 0; margin-right: -160px; }
|
||||
|
||||
body .push-0 { margin: 0 18px 0 0; }
|
||||
body .push-1 { margin: 0 18px 0 -40px; }
|
||||
body .push-2 { margin: 0 18px 0 -80px; }
|
||||
body .push-3 { margin: 0 18px 0 -120px; }
|
||||
body .push-4 { margin: 0 18px 0 -160px; }
|
||||
body .push-0, body .push-1, body .push-2,
|
||||
body .push-3, body .push-4 { float: left; }
|
||||
|
||||
|
||||
/* Typography with RTL support */
|
||||
body h1,body h2,body h3,
|
||||
body h4,body h5,body h6 { font-family: Arial, sans-serif; }
|
||||
html body { font-family: Arial, sans-serif; }
|
||||
body pre,body code,body tt { font-family: monospace; }
|
||||
|
||||
/* Mirror floats and margins on typographic elements */
|
||||
body p img { float: right; margin: 1.5em 0 1.5em 1.5em; }
|
||||
body dd, body ul, body ol { margin-left: 0; margin-right: 1.5em;}
|
||||
body td, body th { text-align:right; }
|
30
public/stylesheets/blueprint/print.css
Executable file
@ -0,0 +1,30 @@
|
||||
/* -----------------------------------------------------------------------
|
||||
|
||||
|
||||
Blueprint CSS Framework 0.8
|
||||
http://blueprintcss.org
|
||||
|
||||
* Copyright (c) 2007-Present. See LICENSE for more info.
|
||||
* See README for instructions on how to use Blueprint.
|
||||
* For credits and origins, see AUTHORS.
|
||||
* This is a compressed file. See the sources in the 'src' directory.
|
||||
|
||||
----------------------------------------------------------------------- */
|
||||
|
||||
/* print.css */
|
||||
body {line-height:1.5;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;color:#000;background:none;font-size:10pt;}
|
||||
.container {background:none;}
|
||||
hr {background:#ccc;color:#ccc;width:100%;height:2px;margin:2em 0;padding:0;border:none;}
|
||||
hr.space {background:#fff;color:#fff;}
|
||||
h1, h2, h3, h4, h5, h6 {font-family:"Helvetica Neue", Arial, "Lucida Grande", sans-serif;}
|
||||
code {font:.9em "Courier New", Monaco, Courier, monospace;}
|
||||
img {float:left;margin:1.5em 1.5em 1.5em 0;}
|
||||
a img {border:none;}
|
||||
p img.top {margin-top:0;}
|
||||
blockquote {margin:1.5em;padding:1em;font-style:italic;font-size:.9em;}
|
||||
.small {font-size:.9em;}
|
||||
.large {font-size:1.1em;}
|
||||
.quiet {color:#999;}
|
||||
.hide {display:none;}
|
||||
a:link, a:visited {background:transparent;font-weight:700;text-decoration:underline;}
|
||||
a:link:after, a:visited:after {content:" (" attr(href) ")";font-size:90%;}
|
253
public/stylesheets/blueprint/screen.css
Executable file
@ -0,0 +1,253 @@
|
||||
/* -----------------------------------------------------------------------
|
||||
|
||||
|
||||
Blueprint CSS Framework 0.8
|
||||
http://blueprintcss.org
|
||||
|
||||
* Copyright (c) 2007-Present. See LICENSE for more info.
|
||||
* See README for instructions on how to use Blueprint.
|
||||
* For credits and origins, see AUTHORS.
|
||||
* This is a compressed file. See the sources in the 'src' directory.
|
||||
|
||||
----------------------------------------------------------------------- */
|
||||
|
||||
/* reset.css */
|
||||
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}
|
||||
body {line-height:1.5;}
|
||||
table {border-collapse:separate;border-spacing:0;}
|
||||
caption, th, td {text-align:left;font-weight:normal;}
|
||||
table, td, th {vertical-align:middle;}
|
||||
blockquote:before, blockquote:after, q:before, q:after {content:"";}
|
||||
blockquote, q {quotes:"" "";}
|
||||
a img {border:none;}
|
||||
|
||||
/* typography.css */
|
||||
body {font-size:75%;color:#222;background:#fff;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;}
|
||||
h1, h2, h3, h4, h5, h6 {font-weight:normal;color:#111;}
|
||||
h1 {font-size:3em;line-height:1;margin-bottom:0.5em;}
|
||||
h2 {font-size:2em;margin-bottom:0.75em;}
|
||||
h3 {font-size:1.5em;line-height:1;margin-bottom:1em;}
|
||||
h4 {font-size:1.2em;line-height:1.25;margin-bottom:1.25em;}
|
||||
h5 {font-size:1em;font-weight:bold;margin-bottom:1.5em;}
|
||||
h6 {font-size:1em;font-weight:bold;}
|
||||
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {margin:0;}
|
||||
p {margin:0 0 1.5em;}
|
||||
p img.left {float:left;margin:1.5em 1.5em 1.5em 0;padding:0;}
|
||||
p img.right {float:right;margin:1.5em 0 1.5em 1.5em;}
|
||||
a:focus, a:hover {color:#000;}
|
||||
a {color:#009;text-decoration:underline;}
|
||||
blockquote {margin:1.5em;color:#666;font-style:italic;}
|
||||
strong {font-weight:bold;}
|
||||
em, dfn {font-style:italic;}
|
||||
dfn {font-weight:bold;}
|
||||
sup, sub {line-height:0;}
|
||||
abbr, acronym {border-bottom:1px dotted #666;}
|
||||
address {margin:0 0 1.5em;font-style:italic;}
|
||||
del {color:#666;}
|
||||
pre {margin:1.5em 0;white-space:pre;}
|
||||
pre, code, tt {font:1em 'andale mono', 'lucida console', monospace;line-height:1.5;}
|
||||
li ul, li ol {margin:0 1.5em;}
|
||||
ul, ol {margin:0 1.5em 1.5em 1.5em;}
|
||||
ul {list-style-type:disc;}
|
||||
ol {list-style-type:decimal;}
|
||||
dl {margin:0 0 1.5em 0;}
|
||||
dl dt {font-weight:bold;}
|
||||
dd {margin-left:1.5em;}
|
||||
table {margin-bottom:1.4em;width:100%;}
|
||||
th {font-weight:bold;}
|
||||
thead th {background:#c3d9ff;}
|
||||
th, td, caption {padding:4px 10px 4px 5px;}
|
||||
tr.even td {background:#e5ecf9;}
|
||||
tfoot {font-style:italic;}
|
||||
caption {background:#eee;}
|
||||
.small {font-size:.8em;margin-bottom:1.875em;line-height:1.875em;}
|
||||
.large {font-size:1.2em;line-height:2.5em;margin-bottom:1.25em;}
|
||||
.hide {display:none;}
|
||||
.quiet {color:#666;}
|
||||
.loud {color:#000;}
|
||||
.highlight {background:#ff0;}
|
||||
.added {background:#060;color:#fff;}
|
||||
.removed {background:#900;color:#fff;}
|
||||
.first {margin-left:0;padding-left:0;}
|
||||
.last {margin-right:0;padding-right:0;}
|
||||
.top {margin-top:0;padding-top:0;}
|
||||
.bottom {margin-bottom:0;padding-bottom:0;}
|
||||
|
||||
/* grid.css */
|
||||
.container {width:950px;margin:0 auto;}
|
||||
.showgrid {background:url(src/grid.png);}
|
||||
.column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, div.span-21, div.span-22, div.span-23, div.span-24 {float:left;margin-right:10px;}
|
||||
.last, div.last {margin-right:0;}
|
||||
.span-1 {width:30px;}
|
||||
.span-2 {width:70px;}
|
||||
.span-3 {width:110px;}
|
||||
.span-4 {width:150px;}
|
||||
.span-5 {width:190px;}
|
||||
.span-6 {width:230px;}
|
||||
.span-7 {width:270px;}
|
||||
.span-8 {width:310px;}
|
||||
.span-9 {width:350px;}
|
||||
.span-10 {width:390px;}
|
||||
.span-11 {width:430px;}
|
||||
.span-12 {width:470px;}
|
||||
.span-13 {width:510px;}
|
||||
.span-14 {width:550px;}
|
||||
.span-15 {width:590px;}
|
||||
.span-16 {width:630px;}
|
||||
.span-17 {width:670px;}
|
||||
.span-18 {width:710px;}
|
||||
.span-19 {width:750px;}
|
||||
.span-20 {width:790px;}
|
||||
.span-21 {width:830px;}
|
||||
.span-22 {width:870px;}
|
||||
.span-23 {width:910px;}
|
||||
.span-24 {width:950px;margin:0;}
|
||||
div.span-24 {width:950px;margin:0;}
|
||||
input.span-1, textarea.span-1, select.span-1 {width:30px!important;}
|
||||
input.span-2, textarea.span-2, select.span-2 {width:50px!important;}
|
||||
input.span-3, textarea.span-3, select.span-3 {width:90px!important;}
|
||||
input.span-4, textarea.span-4, select.span-4 {width:130px!important;}
|
||||
input.span-5, textarea.span-5, select.span-5 {width:170px!important;}
|
||||
input.span-6, textarea.span-6, select.span-6 {width:210px!important;}
|
||||
input.span-7, textarea.span-7, select.span-7 {width:250px!important;}
|
||||
input.span-8, textarea.span-8, select.span-8 {width:290px!important;}
|
||||
input.span-9, textarea.span-9, select.span-9 {width:330px!important;}
|
||||
input.span-10, textarea.span-10, select.span-10 {width:370px!important;}
|
||||
input.span-11, textarea.span-11, select.span-11 {width:410px!important;}
|
||||
input.span-12, textarea.span-12, select.span-12 {width:450px!important;}
|
||||
input.span-13, textarea.span-13, select.span-13 {width:490px!important;}
|
||||
input.span-14, textarea.span-14, select.span-14 {width:530px!important;}
|
||||
input.span-15, textarea.span-15, select.span-15 {width:570px!important;}
|
||||
input.span-16, textarea.span-16, select.span-16 {width:610px!important;}
|
||||
input.span-17, textarea.span-17, select.span-17 {width:650px!important;}
|
||||
input.span-18, textarea.span-18, select.span-18 {width:690px!important;}
|
||||
input.span-19, textarea.span-19, select.span-19 {width:730px!important;}
|
||||
input.span-20, textarea.span-20, select.span-20 {width:770px!important;}
|
||||
input.span-21, textarea.span-21, select.span-21 {width:810px!important;}
|
||||
input.span-22, textarea.span-22, select.span-22 {width:850px!important;}
|
||||
input.span-23, textarea.span-23, select.span-23 {width:890px!important;}
|
||||
input.span-24, textarea.span-24, select.span-24 {width:940px!important;}
|
||||
.append-1 {padding-right:40px;}
|
||||
.append-2 {padding-right:80px;}
|
||||
.append-3 {padding-right:120px;}
|
||||
.append-4 {padding-right:160px;}
|
||||
.append-5 {padding-right:200px;}
|
||||
.append-6 {padding-right:240px;}
|
||||
.append-7 {padding-right:280px;}
|
||||
.append-8 {padding-right:320px;}
|
||||
.append-9 {padding-right:360px;}
|
||||
.append-10 {padding-right:400px;}
|
||||
.append-11 {padding-right:440px;}
|
||||
.append-12 {padding-right:480px;}
|
||||
.append-13 {padding-right:520px;}
|
||||
.append-14 {padding-right:560px;}
|
||||
.append-15 {padding-right:600px;}
|
||||
.append-16 {padding-right:640px;}
|
||||
.append-17 {padding-right:680px;}
|
||||
.append-18 {padding-right:720px;}
|
||||
.append-19 {padding-right:760px;}
|
||||
.append-20 {padding-right:800px;}
|
||||
.append-21 {padding-right:840px;}
|
||||
.append-22 {padding-right:880px;}
|
||||
.append-23 {padding-right:920px;}
|
||||
.prepend-1 {padding-left:40px;}
|
||||
.prepend-2 {padding-left:80px;}
|
||||
.prepend-3 {padding-left:120px;}
|
||||
.prepend-4 {padding-left:160px;}
|
||||
.prepend-5 {padding-left:200px;}
|
||||
.prepend-6 {padding-left:240px;}
|
||||
.prepend-7 {padding-left:280px;}
|
||||
.prepend-8 {padding-left:320px;}
|
||||
.prepend-9 {padding-left:360px;}
|
||||
.prepend-10 {padding-left:400px;}
|
||||
.prepend-11 {padding-left:440px;}
|
||||
.prepend-12 {padding-left:480px;}
|
||||
.prepend-13 {padding-left:520px;}
|
||||
.prepend-14 {padding-left:560px;}
|
||||
.prepend-15 {padding-left:600px;}
|
||||
.prepend-16 {padding-left:640px;}
|
||||
.prepend-17 {padding-left:680px;}
|
||||
.prepend-18 {padding-left:720px;}
|
||||
.prepend-19 {padding-left:760px;}
|
||||
.prepend-20 {padding-left:800px;}
|
||||
.prepend-21 {padding-left:840px;}
|
||||
.prepend-22 {padding-left:880px;}
|
||||
.prepend-23 {padding-left:920px;}
|
||||
div.border {padding-right:4px;margin-right:5px;border-right:1px solid #eee;}
|
||||
div.colborder {padding-right:24px;margin-right:25px;border-right:1px solid #eee;}
|
||||
.pull-1 {margin-left:-40px;}
|
||||
.pull-2 {margin-left:-80px;}
|
||||
.pull-3 {margin-left:-120px;}
|
||||
.pull-4 {margin-left:-160px;}
|
||||
.pull-5 {margin-left:-200px;}
|
||||
.pull-6 {margin-left:-240px;}
|
||||
.pull-7 {margin-left:-280px;}
|
||||
.pull-8 {margin-left:-320px;}
|
||||
.pull-9 {margin-left:-360px;}
|
||||
.pull-10 {margin-left:-400px;}
|
||||
.pull-11 {margin-left:-440px;}
|
||||
.pull-12 {margin-left:-480px;}
|
||||
.pull-13 {margin-left:-520px;}
|
||||
.pull-14 {margin-left:-560px;}
|
||||
.pull-15 {margin-left:-600px;}
|
||||
.pull-16 {margin-left:-640px;}
|
||||
.pull-17 {margin-left:-680px;}
|
||||
.pull-18 {margin-left:-720px;}
|
||||
.pull-19 {margin-left:-760px;}
|
||||
.pull-20 {margin-left:-800px;}
|
||||
.pull-21 {margin-left:-840px;}
|
||||
.pull-22 {margin-left:-880px;}
|
||||
.pull-23 {margin-left:-920px;}
|
||||
.pull-24 {margin-left:-960px;}
|
||||
.pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9, .pull-10, .pull-11, .pull-12, .pull-13, .pull-14, .pull-15, .pull-16, .pull-17, .pull-18, .pull-19, .pull-20, .pull-21, .pull-22, .pull-23, .pull-24 {float:left;position:relative;}
|
||||
.push-1 {margin:0 -40px 1.5em 40px;}
|
||||
.push-2 {margin:0 -80px 1.5em 80px;}
|
||||
.push-3 {margin:0 -120px 1.5em 120px;}
|
||||
.push-4 {margin:0 -160px 1.5em 160px;}
|
||||
.push-5 {margin:0 -200px 1.5em 200px;}
|
||||
.push-6 {margin:0 -240px 1.5em 240px;}
|
||||
.push-7 {margin:0 -280px 1.5em 280px;}
|
||||
.push-8 {margin:0 -320px 1.5em 320px;}
|
||||
.push-9 {margin:0 -360px 1.5em 360px;}
|
||||
.push-10 {margin:0 -400px 1.5em 400px;}
|
||||
.push-11 {margin:0 -440px 1.5em 440px;}
|
||||
.push-12 {margin:0 -480px 1.5em 480px;}
|
||||
.push-13 {margin:0 -520px 1.5em 520px;}
|
||||
.push-14 {margin:0 -560px 1.5em 560px;}
|
||||
.push-15 {margin:0 -600px 1.5em 600px;}
|
||||
.push-16 {margin:0 -640px 1.5em 640px;}
|
||||
.push-17 {margin:0 -680px 1.5em 680px;}
|
||||
.push-18 {margin:0 -720px 1.5em 720px;}
|
||||
.push-19 {margin:0 -760px 1.5em 760px;}
|
||||
.push-20 {margin:0 -800px 1.5em 800px;}
|
||||
.push-21 {margin:0 -840px 1.5em 840px;}
|
||||
.push-22 {margin:0 -880px 1.5em 880px;}
|
||||
.push-23 {margin:0 -920px 1.5em 920px;}
|
||||
.push-24 {margin:0 -960px 1.5em 960px;}
|
||||
.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21, .push-22, .push-23, .push-24 {float:right;position:relative;}
|
||||
.prepend-top {margin-top:1.5em;}
|
||||
.append-bottom {margin-bottom:1.5em;}
|
||||
.box {padding:1.5em;margin-bottom:1.5em;background:#E5ECF9;}
|
||||
hr {background:#ddd;color:#ddd;clear:both;float:none;width:100%;height:.1em;margin:0 0 1.45em;border:none;}
|
||||
hr.space {background:#fff;color:#fff;}
|
||||
.clearfix:after, .container:after {content:"\0020";display:block;height:0;clear:both;visibility:hidden;overflow:hidden;}
|
||||
.clearfix, .container {display:block;}
|
||||
.clear {clear:both;}
|
||||
|
||||
/* forms.css */
|
||||
label {font-weight:bold;}
|
||||
fieldset {padding:1.4em;margin:0 0 1.5em 0;border:1px solid #ccc;}
|
||||
legend {font-weight:bold;font-size:1.2em;}
|
||||
input.text, input.title, textarea, select {margin:0.5em 0;border:1px solid #bbb;}
|
||||
input.text:focus, input.title:focus, textarea:focus, select:focus {border:1px solid #666;}
|
||||
input.text, input.title {width:300px;padding:5px;}
|
||||
input.title {font-size:1.5em;}
|
||||
textarea {width:390px;height:250px;padding:5px;}
|
||||
|
||||
/*.error, .notice, .success {padding:.8em;margin-bottom:1em;border:2px solid #ddd;}
|
||||
.error {background:#FBE3E4;color:#8a1f11;border-color:#FBC2C4;}
|
||||
.notice {background:#FFF6BF;color:#514721;border-color:#FFD324;}
|
||||
.success {background:#E6EFC2;color:#264409;border-color:#C6D880;}
|
||||
.error a {color:#8a1f11;}
|
||||
.notice a {color:#514721;}
|
||||
.success a {color:#264409;}*/
|
49
public/stylesheets/blueprint/src/forms.css
Executable file
@ -0,0 +1,49 @@
|
||||
/* --------------------------------------------------------------
|
||||
|
||||
forms.css
|
||||
* Sets up some default styling for forms
|
||||
* Gives you classes to enhance your forms
|
||||
|
||||
Usage:
|
||||
* For text fields, use class .title or .text
|
||||
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
label { font-weight: bold; }
|
||||
fieldset { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
|
||||
legend { font-weight: bold; font-size:1.2em; }
|
||||
|
||||
|
||||
/* Form fields
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
input.text, input.title,
|
||||
textarea, select {
|
||||
margin:0.5em 0;
|
||||
border:1px solid #bbb;
|
||||
}
|
||||
|
||||
input.text:focus, input.title:focus,
|
||||
textarea:focus, select:focus {
|
||||
border:1px solid #666;
|
||||
}
|
||||
|
||||
input.text,
|
||||
input.title { width: 300px; padding:5px; }
|
||||
input.title { font-size:1.5em; }
|
||||
textarea { width: 390px; height: 250px; padding:5px; }
|
||||
|
||||
|
||||
/* Success, notice and error boxes
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
.error,
|
||||
.notice,
|
||||
.success { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
|
||||
|
||||
.error { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
|
||||
.notice { background: #FFF6BF; color: #514721; border-color: #FFD324; }
|
||||
.success { background: #E6EFC2; color: #264409; border-color: #C6D880; }
|
||||
.error a { color: #8a1f11; }
|
||||
.notice a { color: #514721; }
|
||||
.success a { color: #264409; }
|
213
public/stylesheets/blueprint/src/grid.css
Executable file
@ -0,0 +1,213 @@
|
||||
/* --------------------------------------------------------------
|
||||
|
||||
grid.css
|
||||
* Sets up an easy-to-use grid of 24 columns.
|
||||
|
||||
By default, the grid is 950px wide, with 24 columns
|
||||
spanning 30px, and a 10px margin between columns.
|
||||
|
||||
If you need fewer or more columns, namespaces or semantic
|
||||
element names, use the compressor script (lib/compress.rb)
|
||||
|
||||
Note: Changes made in this file will not be applied when
|
||||
using the compressor: make changes in lib/blueprint/grid.css.rb
|
||||
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* A container should group all your columns. */
|
||||
.container {
|
||||
width: 950px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* Use this class on any .span / container to see the grid. */
|
||||
.showgrid { background: url(src/grid.png); }
|
||||
|
||||
|
||||
/* Columns
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* Sets up basic grid floating and margin. */
|
||||
.column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5,
|
||||
div.span-6, div.span-7, div.span-8, div.span-9, div.span-10,
|
||||
div.span-11, div.span-12, div.span-13, div.span-14, div.span-15,
|
||||
div.span-16, div.span-17, div.span-18, div.span-19, div.span-20,
|
||||
div.span-21, div.span-22, div.span-23, div.span-24 {
|
||||
float: left;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
/* The last column in a row needs this class. */
|
||||
.last, div.last { margin-right: 0; }
|
||||
|
||||
/* Use these classes to set the width of a column. */
|
||||
.span-1 { width: 30px; }
|
||||
.span-2 { width: 70px; }
|
||||
.span-3 { width: 110px; }
|
||||
.span-4 { width: 150px; }
|
||||
.span-5 { width: 190px; }
|
||||
.span-6 { width: 230px; }
|
||||
.span-7 { width: 270px; }
|
||||
.span-8 { width: 310px; }
|
||||
.span-9 { width: 350px; }
|
||||
.span-10 { width: 390px; }
|
||||
.span-11 { width: 430px; }
|
||||
.span-12 { width: 470px; }
|
||||
.span-13 { width: 510px; }
|
||||
.span-14 { width: 550px; }
|
||||
.span-15 { width: 590px; }
|
||||
.span-16 { width: 630px; }
|
||||
.span-17 { width: 670px; }
|
||||
.span-18 { width: 710px; }
|
||||
.span-19 { width: 750px; }
|
||||
.span-20 { width: 790px; }
|
||||
.span-21 { width: 830px; }
|
||||
.span-22 { width: 870px; }
|
||||
.span-23 { width: 910px; }
|
||||
.span-24 { width: 950px; margin: 0; }
|
||||
|
||||
/* Add these to a column to append empty cols. */
|
||||
.append-1 { padding-right: 40px; }
|
||||
.append-2 { padding-right: 80px; }
|
||||
.append-3 { padding-right: 120px; }
|
||||
.append-4 { padding-right: 160px; }
|
||||
.append-5 { padding-right: 200px; }
|
||||
.append-6 { padding-right: 240px; }
|
||||
.append-7 { padding-right: 280px; }
|
||||
.append-8 { padding-right: 320px; }
|
||||
.append-9 { padding-right: 360px; }
|
||||
.append-10 { padding-right: 400px; }
|
||||
.append-11 { padding-right: 440px; }
|
||||
.append-12 { padding-right: 480px; }
|
||||
.append-13 { padding-right: 520px; }
|
||||
.append-14 { padding-right: 560px; }
|
||||
.append-15 { padding-right: 600px; }
|
||||
.append-16 { padding-right: 640px; }
|
||||
.append-17 { padding-right: 680px; }
|
||||
.append-18 { padding-right: 720px; }
|
||||
.append-19 { padding-right: 760px; }
|
||||
.append-20 { padding-right: 800px; }
|
||||
.append-21 { padding-right: 840px; }
|
||||
.append-22 { padding-right: 880px; }
|
||||
.append-23 { padding-right: 920px; }
|
||||
|
||||
/* Add these to a column to prepend empty cols. */
|
||||
.prepend-1 { padding-left: 40px; }
|
||||
.prepend-2 { padding-left: 80px; }
|
||||
.prepend-3 { padding-left: 120px; }
|
||||
.prepend-4 { padding-left: 160px; }
|
||||
.prepend-5 { padding-left: 200px; }
|
||||
.prepend-6 { padding-left: 240px; }
|
||||
.prepend-7 { padding-left: 280px; }
|
||||
.prepend-8 { padding-left: 320px; }
|
||||
.prepend-9 { padding-left: 360px; }
|
||||
.prepend-10 { padding-left: 400px; }
|
||||
.prepend-11 { padding-left: 440px; }
|
||||
.prepend-12 { padding-left: 480px; }
|
||||
.prepend-13 { padding-left: 520px; }
|
||||
.prepend-14 { padding-left: 560px; }
|
||||
.prepend-15 { padding-left: 600px; }
|
||||
.prepend-16 { padding-left: 640px; }
|
||||
.prepend-17 { padding-left: 680px; }
|
||||
.prepend-18 { padding-left: 720px; }
|
||||
.prepend-19 { padding-left: 760px; }
|
||||
.prepend-20 { padding-left: 800px; }
|
||||
.prepend-21 { padding-left: 840px; }
|
||||
.prepend-22 { padding-left: 880px; }
|
||||
.prepend-23 { padding-left: 920px; }
|
||||
|
||||
|
||||
/* Border on right hand side of a column. */
|
||||
div.border {
|
||||
padding-right: 4px;
|
||||
margin-right: 5px;
|
||||
border-right: 1px solid #eee;
|
||||
}
|
||||
|
||||
/* Border with more whitespace, spans one column. */
|
||||
div.colborder {
|
||||
padding-right: 24px;
|
||||
margin-right: 25px;
|
||||
border-right: 1px solid #eee;
|
||||
}
|
||||
|
||||
|
||||
/* Use these classes on an element to push it into the
|
||||
next column, or to pull it into the previous column. */
|
||||
|
||||
.pull-1 { margin-left: -40px; }
|
||||
.pull-2 { margin-left: -80px; }
|
||||
.pull-3 { margin-left: -120px; }
|
||||
.pull-4 { margin-left: -160px; }
|
||||
.pull-5 { margin-left: -200px; }
|
||||
|
||||
.pull-1, .pull-2, .pull-3, .pull-4, .pull-5 {
|
||||
float:left;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
.push-1 { margin: 0 -40px 1.5em 40px; }
|
||||
.push-2 { margin: 0 -80px 1.5em 80px; }
|
||||
.push-3 { margin: 0 -120px 1.5em 120px; }
|
||||
.push-4 { margin: 0 -160px 1.5em 160px; }
|
||||
.push-5 { margin: 0 -200px 1.5em 200px; }
|
||||
|
||||
.push-1, .push-2, .push-3, .push-4, .push-5 {
|
||||
float: right;
|
||||
position:relative;
|
||||
}
|
||||
|
||||
|
||||
/* Misc classes and elements
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* In case you need to add a gutter above/below an element */
|
||||
.prepend-top {
|
||||
margin-top:1.5em;
|
||||
}
|
||||
.append-bottom {
|
||||
margin-bottom:1.5em;
|
||||
}
|
||||
|
||||
/* Use a .box to create a padded box inside a column. */
|
||||
.box {
|
||||
padding: 1.5em;
|
||||
margin-bottom: 1.5em;
|
||||
background: #E5ECF9;
|
||||
}
|
||||
|
||||
/* Use this to create a horizontal ruler across a column. */
|
||||
hr {
|
||||
background: #ddd;
|
||||
color: #ddd;
|
||||
clear: both;
|
||||
float: none;
|
||||
width: 100%;
|
||||
height: .1em;
|
||||
margin: 0 0 1.45em;
|
||||
border: none;
|
||||
}
|
||||
hr.space {
|
||||
background: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
/* Clearing floats without extra markup
|
||||
Based on How To Clear Floats Without Structural Markup by PiE
|
||||
[http://www.positioniseverything.net/easyclearing.html] */
|
||||
|
||||
.clearfix:after, .container:after {
|
||||
content: "\0020";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
overflow:hidden;
|
||||
}
|
||||
.clearfix, .container {display: block;}
|
||||
|
||||
/* Regular clearing
|
||||
apply to column that should drop below previous ones. */
|
||||
|
||||
.clear { clear:both; }
|
BIN
public/stylesheets/blueprint/src/grid.png
Executable file
After Width: | Height: | Size: 161 B |
59
public/stylesheets/blueprint/src/ie.css
Executable file
@ -0,0 +1,59 @@
|
||||
/* --------------------------------------------------------------
|
||||
|
||||
ie.css
|
||||
|
||||
Contains every hack for Internet Explorer,
|
||||
so that our core files stay sweet and nimble.
|
||||
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* Make sure the layout is centered in IE5 */
|
||||
body { text-align: center; }
|
||||
.container { text-align: left; }
|
||||
|
||||
/* Fixes IE margin bugs */
|
||||
* html .column, * html div.span-1, * html div.span-2,
|
||||
* html div.span-3, * html div.span-4, * html div.span-5,
|
||||
* html div.span-6, * html div.span-7, * html div.span-8,
|
||||
* html div.span-9, * html div.span-10, * html div.span-11,
|
||||
* html div.span-12, * html div.span-13, * html div.span-14,
|
||||
* html div.span-15, * html div.span-16, * html div.span-17,
|
||||
* html div.span-18, * html div.span-19, * html div.span-20,
|
||||
* html div.span-21, * html div.span-22, * html div.span-23,
|
||||
* html div.span-24 { overflow-x: hidden; }
|
||||
|
||||
|
||||
/* Elements
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* Fixes incorrect styling of legend in IE6. */
|
||||
* html legend { margin:0px -8px 16px 0; padding:0; }
|
||||
|
||||
/* Fixes incorrect placement of ol numbers in IE6/7. */
|
||||
ol { margin-left:2em; }
|
||||
|
||||
/* Fixes wrong line-height on sup/sub in IE. */
|
||||
sup { vertical-align: text-top; }
|
||||
sub { vertical-align: text-bottom; }
|
||||
|
||||
/* Fixes IE7 missing wrapping of code elements. */
|
||||
html>body p code { *white-space: normal; }
|
||||
|
||||
/* IE 6&7 has problems with setting proper <hr> margins. */
|
||||
hr { margin: -8px auto 11px; }
|
||||
|
||||
|
||||
/* Clearing
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* Makes clearfix actually work in IE */
|
||||
.clearfix, .container {display: inline-block;}
|
||||
* html .clearfix,
|
||||
* html .container {height: 1%;}
|
||||
|
||||
|
||||
/* Forms
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* Fixes padding on fieldset */
|
||||
fieldset {padding-top: 0;}
|
85
public/stylesheets/blueprint/src/print.css
Executable file
@ -0,0 +1,85 @@
|
||||
/* --------------------------------------------------------------
|
||||
|
||||
print.css
|
||||
* Gives you some sensible styles for printing pages.
|
||||
* See Readme file in this directory for further instructions.
|
||||
|
||||
Some additions you'll want to make, customized to your markup:
|
||||
#header, #footer, #navigation { display:none; }
|
||||
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
body {
|
||||
line-height: 1.5;
|
||||
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||
color:#000;
|
||||
background: none;
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
|
||||
/* Layout
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
.container {
|
||||
background: none;
|
||||
}
|
||||
|
||||
hr {
|
||||
background:#ccc;
|
||||
color:#ccc;
|
||||
width:100%;
|
||||
height:2px;
|
||||
margin:2em 0;
|
||||
padding:0;
|
||||
border:none;
|
||||
}
|
||||
hr.space {
|
||||
background: #fff;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
/* Text
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
h1,h2,h3,h4,h5,h6 { font-family: "Helvetica Neue", Arial, "Lucida Grande", sans-serif; }
|
||||
code { font:.9em "Courier New", Monaco, Courier, monospace; }
|
||||
|
||||
img { float:left; margin:1.5em 1.5em 1.5em 0; }
|
||||
a img { border:none; }
|
||||
p img.top { margin-top: 0; }
|
||||
|
||||
blockquote {
|
||||
margin:1.5em;
|
||||
padding:1em;
|
||||
font-style:italic;
|
||||
font-size:.9em;
|
||||
}
|
||||
|
||||
.small { font-size: .9em; }
|
||||
.large { font-size: 1.1em; }
|
||||
.quiet { color: #999; }
|
||||
.hide { display:none; }
|
||||
|
||||
|
||||
/* Links
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
a:link, a:visited {
|
||||
background: transparent;
|
||||
font-weight:700;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
a:link:after, a:visited:after {
|
||||
content: " (" attr(href) ")";
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
/* If you're having trouble printing relative links, uncomment and customize this:
|
||||
(note: This is valid CSS3, but it still won't go through the W3C CSS Validator) */
|
||||
|
||||
/* a[href^="/"]:after {
|
||||
content: " (http://www.yourdomain.com" attr(href) ") ";
|
||||
} */
|
38
public/stylesheets/blueprint/src/reset.css
Executable file
@ -0,0 +1,38 @@
|
||||
/* --------------------------------------------------------------
|
||||
|
||||
reset.css
|
||||
* Resets default browser CSS.
|
||||
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
html, body, div, span, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, code,
|
||||
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-weight: inherit;
|
||||
font-style: inherit;
|
||||
font-size: 100%;
|
||||
font-family: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
body {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* Tables still need 'cellspacing="0"' in the markup. */
|
||||
table { border-collapse: separate; border-spacing: 0; }
|
||||
caption, th, td { text-align: left; font-weight: normal; }
|
||||
table, td, th { vertical-align: middle; }
|
||||
|
||||
/* Remove possible quote marks (") from <q>, <blockquote>. */
|
||||
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
|
||||
blockquote, q { quotes: "" ""; }
|
||||
|
||||
/* Remove annoying border on linked images. */
|
||||
a img { border: none; }
|
105
public/stylesheets/blueprint/src/typography.css
Executable file
@ -0,0 +1,105 @@
|
||||
/* --------------------------------------------------------------
|
||||
|
||||
typography.css
|
||||
* Sets up some sensible default typography.
|
||||
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* Default font settings.
|
||||
The font-size percentage is of 16px. (0.75 * 16px = 12px) */
|
||||
body {
|
||||
font-size: 75%;
|
||||
color: #222;
|
||||
background: #fff;
|
||||
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
|
||||
/* Headings
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }
|
||||
|
||||
h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
|
||||
h2 { font-size: 2em; margin-bottom: 0.75em; }
|
||||
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
|
||||
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
|
||||
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
|
||||
h6 { font-size: 1em; font-weight: bold; }
|
||||
|
||||
h1 img, h2 img, h3 img,
|
||||
h4 img, h5 img, h6 img {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
/* Text elements
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
p { margin: 0 0 1.5em; }
|
||||
p img.left { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
|
||||
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }
|
||||
|
||||
a:focus,
|
||||
a:hover { color: #000; }
|
||||
a { color: #009; text-decoration: underline; }
|
||||
|
||||
blockquote { margin: 1.5em; color: #666; font-style: italic; }
|
||||
strong { font-weight: bold; }
|
||||
em,dfn { font-style: italic; }
|
||||
dfn { font-weight: bold; }
|
||||
sup, sub { line-height: 0; }
|
||||
|
||||
abbr,
|
||||
acronym { border-bottom: 1px dotted #666; }
|
||||
address { margin: 0 0 1.5em; font-style: italic; }
|
||||
del { color:#666; }
|
||||
|
||||
pre { margin: 1.5em 0; white-space: pre; }
|
||||
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }
|
||||
|
||||
|
||||
/* Lists
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
li ul,
|
||||
li ol { margin:0 1.5em; }
|
||||
ul, ol { margin: 0 1.5em 1.5em 1.5em; }
|
||||
|
||||
ul { list-style-type: disc; }
|
||||
ol { list-style-type: decimal; }
|
||||
|
||||
dl { margin: 0 0 1.5em 0; }
|
||||
dl dt { font-weight: bold; }
|
||||
dd { margin-left: 1.5em;}
|
||||
|
||||
|
||||
/* Tables
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
table { margin-bottom: 1.4em; width:100%; }
|
||||
th { font-weight: bold; }
|
||||
thead th { background: #c3d9ff; }
|
||||
th,td,caption { padding: 4px 10px 4px 5px; }
|
||||
tr.even td { background: #e5ecf9; }
|
||||
tfoot { font-style: italic; }
|
||||
caption { background: #eee; }
|
||||
|
||||
|
||||
/* Misc classes
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
.small { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
|
||||
.large { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
|
||||
.hide { display: none; }
|
||||
|
||||
.quiet { color: #666; }
|
||||
.loud { color: #000; }
|
||||
.highlight { background:#ff0; }
|
||||
.added { background:#060; color: #fff; }
|
||||
.removed { background:#900; color: #fff; }
|
||||
|
||||
.first { margin-left:0; padding-left:0; }
|
||||
.last { margin-right:0; padding-right:0; }
|
||||
.top { margin-top:0; padding-top:0; }
|
||||
.bottom { margin-bottom:0; padding-bottom:0; }
|