admin_fu 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +11 -0
- data/.metrics +5 -0
- data/.rspec +3 -0
- data/Gemfile +13 -0
- data/Gemfile.lock +133 -0
- data/LICENSE +20 -0
- data/LICENSE_ADMIN_TEMPLATE +10 -0
- data/README.rdoc +3 -0
- data/Rakefile +44 -0
- data/VERSION +1 -0
- data/app/controllers/admin_fu/application_controller.rb +4 -0
- data/app/controllers/admin_fu/dashboards_controller.rb +4 -0
- data/app/controllers/admin_fu/samples_controller.rb +7 -0
- data/app/helpers/admin_fu_helper.rb +20 -0
- data/app/stylesheets/_colors.sass +73 -0
- data/app/stylesheets/_template.sass +71 -0
- data/app/stylesheets/_typography.sass +60 -0
- data/app/stylesheets/_utils.sass +7 -0
- data/app/stylesheets/styles.sass +51 -0
- data/app/views/admin_fu/dashboards/show.html.haml +35 -0
- data/app/views/admin_fu/samples/form.html.haml +25 -0
- data/app/views/admin_fu/samples/list.html.haml +33 -0
- data/app/views/admin_fu/samples/text.html.haml +12 -0
- data/app/views/layouts/_flash.html.haml +4 -0
- data/app/views/layouts/admin_fu.html.haml +27 -0
- data/config/compass.rb +7 -0
- data/config/routes.rb +9 -0
- data/lib/admin_fu.rb +4 -0
- data/lib/admin_fu/config.rb +41 -0
- data/lib/admin_fu/engine.rb +11 -0
- data/lib/admin_fu/rails/routes.rb +8 -0
- data/public/images/admin_fu/body.png +0 -0
- data/public/images/admin_fu/box-h2.png +0 -0
- data/public/images/admin_fu/edit.png +0 -0
- data/public/images/admin_fu/error.png +0 -0
- data/public/images/admin_fu/gradient.png +0 -0
- data/public/images/admin_fu/trash.png +0 -0
- data/public/javascripts/admin_fu/html5.js +2 -0
- data/public/stylesheets/admin_fu/styles.css +1005 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +44 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +26 -0
- data/spec/dummy/config/environments/production.rb +49 -0
- data/spec/dummy/config/environments/test.rb +35 -0
- data/spec/dummy/config/initializers/admin_fu.rb +7 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/locales/en.yml +10 -0
- data/spec/dummy/config/routes.rb +6 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/javascripts/application.js +2 -0
- data/spec/dummy/public/javascripts/controls.js +965 -0
- data/spec/dummy/public/javascripts/dragdrop.js +974 -0
- data/spec/dummy/public/javascripts/effects.js +1123 -0
- data/spec/dummy/public/javascripts/prototype.js +6001 -0
- data/spec/dummy/public/javascripts/rails.js +175 -0
- data/spec/dummy/public/stylesheets/.gitkeep +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/requests/menu_spec.rb +25 -0
- data/spec/requests/routes_spec.rb +21 -0
- data/spec/requests/samples_spec.rb +23 -0
- data/spec/spec_helper.rb +32 -0
- metadata +239 -0
@@ -0,0 +1,60 @@
|
|
1
|
+
h1, h2, h3, h4, h5, h6
|
2
|
+
border-bottom: 1px solid
|
3
|
+
|
4
|
+
body, textarea
|
5
|
+
font: normal normal normal 13px/1.5 'Helvetica Neue', Arial, 'Liberation Sans', FreeSans, sans-serif
|
6
|
+
|
7
|
+
a:focus
|
8
|
+
outline: 1px dotted
|
9
|
+
|
10
|
+
hr
|
11
|
+
border: 0 solid
|
12
|
+
border-top-width: 1px
|
13
|
+
clear: both
|
14
|
+
height: 0
|
15
|
+
|
16
|
+
h1
|
17
|
+
font-size: 25px
|
18
|
+
|
19
|
+
h2
|
20
|
+
font-size: 23px
|
21
|
+
|
22
|
+
h3
|
23
|
+
font-size: 21px
|
24
|
+
|
25
|
+
h4
|
26
|
+
font-size: 19px
|
27
|
+
|
28
|
+
h5
|
29
|
+
font-size: 17px
|
30
|
+
|
31
|
+
h6
|
32
|
+
font-size: 15px
|
33
|
+
|
34
|
+
ol
|
35
|
+
list-style: decimal
|
36
|
+
|
37
|
+
ul
|
38
|
+
list-style: disc
|
39
|
+
|
40
|
+
li
|
41
|
+
margin-left: 30px
|
42
|
+
|
43
|
+
p,dl,hr,h1,h2,h3,h4,h5,h6,ol,ul,pre,table,address,fieldset
|
44
|
+
margin-bottom: 20px
|
45
|
+
|
46
|
+
label, nav, .error, .success
|
47
|
+
font-weight: bold
|
48
|
+
|
49
|
+
input
|
50
|
+
&[type="submit"], &[type="reset"]
|
51
|
+
font-weight: bold
|
52
|
+
|
53
|
+
a
|
54
|
+
padding: 4px
|
55
|
+
&:hover
|
56
|
+
text-decoration: none
|
57
|
+
&.edit, &.delete
|
58
|
+
padding-left: 25px
|
59
|
+
background-repeat: no-repeat
|
60
|
+
background-position: left center
|
@@ -0,0 +1,51 @@
|
|
1
|
+
@import "compass/utilities"
|
2
|
+
@import "compass/css3/border-radius"
|
3
|
+
@import "52/reset"
|
4
|
+
@import "52/general"
|
5
|
+
@import "52/grid"
|
6
|
+
@import "utils"
|
7
|
+
@import "typography"
|
8
|
+
@import "template"
|
9
|
+
@import "colors"
|
10
|
+
|
11
|
+
body
|
12
|
+
padding-top: 10px
|
13
|
+
@include light2-background
|
14
|
+
|
15
|
+
header
|
16
|
+
@include row
|
17
|
+
@include dark4-background
|
18
|
+
@include border-top-right-radius(5px)
|
19
|
+
padding: 10px 30px
|
20
|
+
h1
|
21
|
+
border: 0px
|
22
|
+
margin: 0
|
23
|
+
a
|
24
|
+
@include light-anchor
|
25
|
+
|
26
|
+
nav[role=mainmenu]
|
27
|
+
@include row
|
28
|
+
@include border-bottom-left-radius(5px)
|
29
|
+
@include dark2-background
|
30
|
+
padding: 10px 30px
|
31
|
+
a
|
32
|
+
@include light-anchor
|
33
|
+
@include curved
|
34
|
+
padding: 5px 10px
|
35
|
+
&:hover
|
36
|
+
@include dark3-background
|
37
|
+
&.active
|
38
|
+
@include dark1-background
|
39
|
+
ul
|
40
|
+
@include inline_list
|
41
|
+
|
42
|
+
article[role=content]
|
43
|
+
@include row
|
44
|
+
@include light1-background
|
45
|
+
margin-top: 10px
|
46
|
+
padding: 25px
|
47
|
+
|
48
|
+
footer
|
49
|
+
@include row
|
50
|
+
padding: 5px 30px
|
51
|
+
margin: 10px auto
|
@@ -0,0 +1,35 @@
|
|
1
|
+
%div.grid_16
|
2
|
+
%h2 Submit News Article
|
3
|
+
|
4
|
+
%div.grid_5
|
5
|
+
%p
|
6
|
+
%label{:for => 'title'}
|
7
|
+
Title
|
8
|
+
%small Must contain alpha-numeric characters
|
9
|
+
%input{:type => 'text', :name => 'title'}
|
10
|
+
|
11
|
+
%div.grid_5
|
12
|
+
%p
|
13
|
+
%label{:for => 'title'}
|
14
|
+
Slug
|
15
|
+
%small Must contain alpha-numeric characters
|
16
|
+
%input{:type => 'text', :name => 'title'}
|
17
|
+
|
18
|
+
%div.grid_6
|
19
|
+
%p
|
20
|
+
%label{:for => 'title'}
|
21
|
+
Category
|
22
|
+
%select
|
23
|
+
%option Draft
|
24
|
+
%option Published
|
25
|
+
%option Private
|
26
|
+
|
27
|
+
%div.grid_16
|
28
|
+
%p
|
29
|
+
%label
|
30
|
+
Article
|
31
|
+
%small Markdown Syntax
|
32
|
+
%textarea.big
|
33
|
+
%p
|
34
|
+
%input{:type => 'reset', :value => 'Reset'}
|
35
|
+
%input{:type => 'submit', :value => 'Post'}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
%form
|
2
|
+
%h2 Submit News Article
|
3
|
+
%p.col_5
|
4
|
+
%label{:for => 'title'} Title <small>Must contain alpha-numeric characters.</small>
|
5
|
+
%input{:type => 'text', :name => 'title'}
|
6
|
+
%p.col_5
|
7
|
+
%label{:for => 'slug'} Slug <small>Must contain alpha-numeric characters.</small>
|
8
|
+
%input{:type => 'text', :name => 'slug'}
|
9
|
+
|
10
|
+
%p.col_6
|
11
|
+
%label{:for => 'category'} Category
|
12
|
+
%select{:name => 'category'}
|
13
|
+
%option Draft
|
14
|
+
%option Published
|
15
|
+
%option Private
|
16
|
+
%p.col_16
|
17
|
+
%label Summary <small>Will be displayed in search engine results.</small>
|
18
|
+
%textarea
|
19
|
+
|
20
|
+
%p.col_16
|
21
|
+
%label Article <small>Markdown Syntax.</small>
|
22
|
+
%textarea.big
|
23
|
+
%p.col_16
|
24
|
+
%input{:type => 'reset', :value => 'Reset'}
|
25
|
+
%input{:type => 'submit', :value => 'Post'}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
%form
|
2
|
+
%p.col_5
|
3
|
+
%input{:type => 'text'}
|
4
|
+
%p.col_5
|
5
|
+
%input{:type => 'submit', :value => 'Search'}
|
6
|
+
%table
|
7
|
+
%thead
|
8
|
+
%tr
|
9
|
+
%th Username
|
10
|
+
%th Manager
|
11
|
+
%th Department
|
12
|
+
%th{:colspan => 2, :width => '10%'} Actions
|
13
|
+
%tfoot
|
14
|
+
%tr
|
15
|
+
%td.pagination{:colspan => 4}
|
16
|
+
%span.active.curved 1
|
17
|
+
%a.curved{:href => '#'} 2
|
18
|
+
%a.curved{:href => '#'} 3
|
19
|
+
%a.curved{:href => '#'} 4
|
20
|
+
%span ...
|
21
|
+
%a.curved{:href => '#'} 100
|
22
|
+
%tbody
|
23
|
+
- names = ['Philip', 'Claire', 'Thomas', 'Ben', 'Richard', 'Alex']
|
24
|
+
- departments = ['Development', 'Marketing', 'IT', 'Design']
|
25
|
+
- (1..15).each do |i|
|
26
|
+
%tr
|
27
|
+
%td= names.sample
|
28
|
+
%td= names.sample
|
29
|
+
%td= departments.sample
|
30
|
+
%td
|
31
|
+
%a.edit{:href => '#'} Edit
|
32
|
+
%td
|
33
|
+
%a.delete{:href => '#'} Delete
|
@@ -0,0 +1,12 @@
|
|
1
|
+
.col_11
|
2
|
+
%h2 About
|
3
|
+
%p After looking for a decent admin template and not having any success I decided to knock this one up. It's released under the creative commons license, so make sure you look at that before using it in your project.
|
4
|
+
%h3 Credits
|
5
|
+
%p I would like to thank Nathan Smith for creating the 960.gs CSS framework which made this project a <i>little</i> easier.
|
6
|
+
|
7
|
+
.col_5
|
8
|
+
%h2 Mock Examples
|
9
|
+
%ol
|
10
|
+
%li= link_to('Home (Dashboard)', '#')
|
11
|
+
%li= link_to('Submit News Article (Forms)', '#')
|
12
|
+
%li= link_to('User Listing (Tables & Pagination)', '#')
|
@@ -0,0 +1,27 @@
|
|
1
|
+
!!!
|
2
|
+
%html.no-js
|
3
|
+
%head
|
4
|
+
%meta{:charset => "utf-8"}
|
5
|
+
%title
|
6
|
+
= t('admin.title')
|
7
|
+
= yield(:title)
|
8
|
+
= csrf_meta_tag
|
9
|
+
= stylesheet_link_tag 'admin_fu/styles', :media => 'all'
|
10
|
+
%body
|
11
|
+
%header
|
12
|
+
%h1= link_to t('admin.title'), admin_fu_root_path
|
13
|
+
|
14
|
+
%nav{:role => 'mainmenu'}
|
15
|
+
%ul
|
16
|
+
- AdminFu.menu.each do |key, entry|
|
17
|
+
%li
|
18
|
+
= link_to t("admin.menu.#{key}"), evaluate_path(entry.path)
|
19
|
+
|
20
|
+
%article{:role => 'content'}
|
21
|
+
= render 'layouts/flash'
|
22
|
+
= yield
|
23
|
+
|
24
|
+
%footer
|
25
|
+
%a{:href => '#'} Contact me
|
26
|
+
|
27
|
+
= javascript_include_tag 'admin_fu/html5'
|
data/config/compass.rb
ADDED
data/config/routes.rb
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
Rails.application.routes.draw do
|
2
|
+
|
3
|
+
admin_fu_namespace do
|
4
|
+
resource :dashboard, :only => [:show]
|
5
|
+
resources :samples, :only => [:show], :constraints => {:id => /form|text|list/} if Rails.env.development? || Rails.env.test?
|
6
|
+
root :to => 'dashboards#show'
|
7
|
+
end
|
8
|
+
|
9
|
+
end
|
data/lib/admin_fu.rb
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
require 'singleton'
|
2
|
+
|
3
|
+
module AdminFu
|
4
|
+
|
5
|
+
mattr_accessor :route_namespace
|
6
|
+
|
7
|
+
#defaults
|
8
|
+
@route_namespace = :admin_fu
|
9
|
+
|
10
|
+
class Menu < Hash
|
11
|
+
include Singleton
|
12
|
+
|
13
|
+
class Entry < Hash
|
14
|
+
attr_accessor :path
|
15
|
+
|
16
|
+
def initialize(path)
|
17
|
+
@path = path
|
18
|
+
end
|
19
|
+
|
20
|
+
def action(action, path)
|
21
|
+
store(action, path)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def entry(name, path = nil)
|
26
|
+
store(name, Entry.new(path))
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def self.menu(&block)
|
31
|
+
if block_given?
|
32
|
+
AdminFu::Menu.instance.instance_eval(&block)
|
33
|
+
end
|
34
|
+
|
35
|
+
AdminFu::Menu.instance
|
36
|
+
end
|
37
|
+
|
38
|
+
def self.clear_menu()
|
39
|
+
AdminFu::Menu.instance.clear
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
module ActionDispatch::Routing
|
2
|
+
class Mapper
|
3
|
+
def admin_fu_namespace
|
4
|
+
namespace(AdminFu.route_namespace, :module => :admin_fu, :as => AdminFu.route_namespace) { yield }
|
5
|
+
namespace(AdminFu.route_namespace, :module => :admin_fu, :as => :admin_fu) { yield }
|
6
|
+
end
|
7
|
+
end
|
8
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,2 @@
|
|
1
|
+
// For discussion and comments, see: http://remysharp.com/2009/01/07/html5-enabling-script/
|
2
|
+
(function(){if(!/*@cc_on!@*/0)return;var e = "abbr,article,aside,audio,canvas,datalist,details,eventsource,figure,footer,header,hgroup,mark,menu,meter,nav,output,progress,section,time,video".split(','),i=e.length;while(i--){document.createElement(e[i])}})()
|
@@ -0,0 +1,1005 @@
|
|
1
|
+
/*
|
2
|
+
html5doctor.com Reset Stylesheet
|
3
|
+
v1.4
|
4
|
+
2009-07-27
|
5
|
+
Author: Richard Clark - http://richclarkdesign.com
|
6
|
+
*/
|
7
|
+
/* line 8, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
8
|
+
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
|
9
|
+
margin: 0;
|
10
|
+
padding: 0;
|
11
|
+
border: 0;
|
12
|
+
outline: 0;
|
13
|
+
font-size: 100%;
|
14
|
+
vertical-align: baseline;
|
15
|
+
background: transparent;
|
16
|
+
}
|
17
|
+
|
18
|
+
/* line 18, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
19
|
+
body {
|
20
|
+
line-height: 1;
|
21
|
+
font: 75%/1.5em Arial, Helvetica, "Liberation sans", "Bitstream Vera Sans", sans-serif;
|
22
|
+
}
|
23
|
+
|
24
|
+
/* line 23, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
25
|
+
article, aside, dialog, figure, footer, header, hgroup, nav, section {
|
26
|
+
display: block;
|
27
|
+
}
|
28
|
+
|
29
|
+
/* line 27, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
30
|
+
nav ul {
|
31
|
+
list-style: none;
|
32
|
+
}
|
33
|
+
|
34
|
+
/* line 31, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
35
|
+
blockquote, q {
|
36
|
+
quotes: none;
|
37
|
+
}
|
38
|
+
|
39
|
+
/* line 36, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
40
|
+
blockquote:before, blockquote:after {
|
41
|
+
content: '';
|
42
|
+
content: none;
|
43
|
+
}
|
44
|
+
|
45
|
+
/* line 43, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
46
|
+
q:before, q:after {
|
47
|
+
content: '';
|
48
|
+
content: none;
|
49
|
+
}
|
50
|
+
|
51
|
+
/* line 49, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
52
|
+
a {
|
53
|
+
margin: 0;
|
54
|
+
padding: 0;
|
55
|
+
border: 0;
|
56
|
+
font-size: 100%;
|
57
|
+
vertical-align: baseline;
|
58
|
+
background: transparent;
|
59
|
+
}
|
60
|
+
|
61
|
+
/* line 58, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
62
|
+
ins {
|
63
|
+
background-color: #ff9;
|
64
|
+
color: #000;
|
65
|
+
text-decoration: none;
|
66
|
+
}
|
67
|
+
|
68
|
+
/* line 64, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
69
|
+
mark {
|
70
|
+
background-color: #ff9;
|
71
|
+
color: #000;
|
72
|
+
font-style: italic;
|
73
|
+
font-weight: bold;
|
74
|
+
}
|
75
|
+
|
76
|
+
/* line 71, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
77
|
+
del {
|
78
|
+
text-decoration: line-through;
|
79
|
+
}
|
80
|
+
|
81
|
+
/* line 75, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
82
|
+
abbr[title], dfn[title] {
|
83
|
+
border-bottom: 1px dotted #000;
|
84
|
+
cursor: help;
|
85
|
+
}
|
86
|
+
|
87
|
+
/* line 80, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
88
|
+
table {
|
89
|
+
border-collapse: collapse;
|
90
|
+
border-spacing: 0;
|
91
|
+
}
|
92
|
+
|
93
|
+
/* line 85, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
94
|
+
hr {
|
95
|
+
display: block;
|
96
|
+
height: 1px;
|
97
|
+
border: 0;
|
98
|
+
border-top: 1px solid #cccccc;
|
99
|
+
margin: 1em 0;
|
100
|
+
padding: 0;
|
101
|
+
}
|
102
|
+
|
103
|
+
/* line 94, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_reset.scss */
|
104
|
+
input, select {
|
105
|
+
vertical-align: middle;
|
106
|
+
}
|
107
|
+
|
108
|
+
/* 52framework General StyleSheet - contains styles for all the HTML elements this framework supports */
|
109
|
+
/* line 3, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
110
|
+
body {
|
111
|
+
font-family: Arial, Helvetica, sans-serif;
|
112
|
+
font-size: 52%/1.52em;
|
113
|
+
}
|
114
|
+
|
115
|
+
/* ** ** Common Addative Classes ** ** */
|
116
|
+
/* line 10, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
117
|
+
.left {
|
118
|
+
float: left;
|
119
|
+
}
|
120
|
+
|
121
|
+
/* line 14, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
122
|
+
.right {
|
123
|
+
float: right;
|
124
|
+
}
|
125
|
+
|
126
|
+
/* line 18, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
127
|
+
.clear {
|
128
|
+
clear: both;
|
129
|
+
display: block;
|
130
|
+
overflow: hidden;
|
131
|
+
visibility: hidden;
|
132
|
+
width: 0px;
|
133
|
+
height: 0px;
|
134
|
+
}
|
135
|
+
|
136
|
+
/* line 27, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
137
|
+
.hide {
|
138
|
+
display: none;
|
139
|
+
}
|
140
|
+
|
141
|
+
/* line 31, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
142
|
+
.align_right {
|
143
|
+
text-align: right;
|
144
|
+
}
|
145
|
+
|
146
|
+
/* line 35, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
147
|
+
.align_left {
|
148
|
+
text-align: left;
|
149
|
+
}
|
150
|
+
|
151
|
+
/* line 39, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
152
|
+
.align_center {
|
153
|
+
text-align: center;
|
154
|
+
}
|
155
|
+
|
156
|
+
/* line 43, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
157
|
+
.align_justify {
|
158
|
+
text-align: justify;
|
159
|
+
}
|
160
|
+
|
161
|
+
/* line 47, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
162
|
+
a {
|
163
|
+
color: #525252;
|
164
|
+
}
|
165
|
+
/* line 49, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
166
|
+
a:hover, a:focus {
|
167
|
+
text-decoration: underline;
|
168
|
+
}
|
169
|
+
|
170
|
+
/* line 54, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
171
|
+
blockquote {
|
172
|
+
font-family: Georgia,"Times New Roman", Times, serif;
|
173
|
+
margin: 5px;
|
174
|
+
padding: 10px;
|
175
|
+
font-size: 1.52em;
|
176
|
+
color: #999;
|
177
|
+
font-style: italic;
|
178
|
+
line-height: 1.3em;
|
179
|
+
width: 100%;
|
180
|
+
quotes: none;
|
181
|
+
}
|
182
|
+
/* line 64, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
183
|
+
blockquote.left {
|
184
|
+
border-right: 1px dashed #ccc;
|
185
|
+
width: 35%;
|
186
|
+
}
|
187
|
+
/* line 68, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
188
|
+
blockquote.right {
|
189
|
+
border-left: 1px dashed #ccc;
|
190
|
+
width: 35%;
|
191
|
+
}
|
192
|
+
|
193
|
+
/* ** ** Header Styles ** ** */
|
194
|
+
/* line 76, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
195
|
+
h1, h2, h3, h4, h5 {
|
196
|
+
margin: 0 0 0.5em;
|
197
|
+
line-height: 1.1em;
|
198
|
+
}
|
199
|
+
|
200
|
+
/* line 81, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
201
|
+
h1 {
|
202
|
+
font-size: 2.52em;
|
203
|
+
}
|
204
|
+
|
205
|
+
/* line 85, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
206
|
+
h2 {
|
207
|
+
font-size: 1.952em;
|
208
|
+
}
|
209
|
+
|
210
|
+
/* line 89, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
211
|
+
h3 {
|
212
|
+
font-size: 1.652em;
|
213
|
+
}
|
214
|
+
|
215
|
+
/* line 93, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
216
|
+
h4 {
|
217
|
+
font-size: 1.452em;
|
218
|
+
}
|
219
|
+
|
220
|
+
/* line 97, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
221
|
+
h5 {
|
222
|
+
font-size: 1.252em;
|
223
|
+
}
|
224
|
+
|
225
|
+
/* line 101, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
226
|
+
h6 {
|
227
|
+
font-size: 1.52em;
|
228
|
+
}
|
229
|
+
|
230
|
+
/* ** ** ul li's ** ** */
|
231
|
+
/* line 107, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
232
|
+
ul li {
|
233
|
+
margin-left: 25px;
|
234
|
+
}
|
235
|
+
|
236
|
+
/* ** ** custom select color ** ** */
|
237
|
+
/* line 113, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
238
|
+
::selection {
|
239
|
+
background: #525252;
|
240
|
+
/* Safari */
|
241
|
+
}
|
242
|
+
|
243
|
+
/* line 117, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
244
|
+
::-moz-selection {
|
245
|
+
background: #525252;
|
246
|
+
/* Firefox */
|
247
|
+
color: #fff;
|
248
|
+
}
|
249
|
+
|
250
|
+
/* ** ** paragraph styling ** ** */
|
251
|
+
/* line 124, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
252
|
+
p {
|
253
|
+
margin: 0 0 1.52em;
|
254
|
+
}
|
255
|
+
/* line 127, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
256
|
+
p img.left {
|
257
|
+
float: left;
|
258
|
+
margin: 1.52em 1.52em 1.52em 0;
|
259
|
+
padding: 0;
|
260
|
+
}
|
261
|
+
/* line 132, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
262
|
+
p img.right {
|
263
|
+
float: right;
|
264
|
+
margin: 1.52em 0 1.52em 1.52em;
|
265
|
+
}
|
266
|
+
|
267
|
+
/* ** ** forms ** ** */
|
268
|
+
/* line 142, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
269
|
+
form fieldset {
|
270
|
+
-webkit-border-radius: 5px;
|
271
|
+
-moz-border-radius: 5px;
|
272
|
+
border-radius: 5px;
|
273
|
+
padding-top: 5px;
|
274
|
+
padding-left: 5px;
|
275
|
+
border: 1px solid #ccc;
|
276
|
+
}
|
277
|
+
/* line 149, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
278
|
+
form fieldset legend {
|
279
|
+
font-size: 1.4em;
|
280
|
+
padding: 0 5px;
|
281
|
+
}
|
282
|
+
/* line 155, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
283
|
+
form input[type=text], form input[type=email], form input[type=url] {
|
284
|
+
-moz-border-radius: 4px;
|
285
|
+
-webkit-border-radius: 4px;
|
286
|
+
border-radius: 4px;
|
287
|
+
height: 20px;
|
288
|
+
margin-bottom: 5px;
|
289
|
+
border: 1px solid #ccc;
|
290
|
+
padding: 4px 0 1px 5px;
|
291
|
+
}
|
292
|
+
/* line 165, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
293
|
+
form label {
|
294
|
+
display: block;
|
295
|
+
height: 20px;
|
296
|
+
font-size: 1.2em;
|
297
|
+
}
|
298
|
+
|
299
|
+
/* line 172, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
300
|
+
strong {
|
301
|
+
font-weight: 600;
|
302
|
+
}
|
303
|
+
|
304
|
+
/* line 176, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
305
|
+
em {
|
306
|
+
font-style: italic;
|
307
|
+
}
|
308
|
+
|
309
|
+
/* line 180, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
310
|
+
dfn {
|
311
|
+
font-style: italic;
|
312
|
+
font-weight: 600;
|
313
|
+
}
|
314
|
+
|
315
|
+
/* line 185, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
316
|
+
sup, sub {
|
317
|
+
line-height: 0;
|
318
|
+
}
|
319
|
+
|
320
|
+
/* line 189, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
321
|
+
abbr, acronym {
|
322
|
+
border-bottom: 1px dashed #ccc;
|
323
|
+
}
|
324
|
+
|
325
|
+
/* line 193, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
326
|
+
address {
|
327
|
+
margin: 0 0 1.5em;
|
328
|
+
font-style: italic;
|
329
|
+
}
|
330
|
+
|
331
|
+
/* line 198, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
332
|
+
del {
|
333
|
+
color: #666;
|
334
|
+
}
|
335
|
+
|
336
|
+
/* line 202, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
337
|
+
pre, code, tt {
|
338
|
+
font: 1em 'andale mono', 'lucida console', monospace;
|
339
|
+
line-height: 1.5;
|
340
|
+
display: block;
|
341
|
+
}
|
342
|
+
|
343
|
+
/* line 208, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
344
|
+
code {
|
345
|
+
background-color: #d5d2d8;
|
346
|
+
display: block;
|
347
|
+
padding: 0px 2px 4px 26px;
|
348
|
+
line-height: 1.67em;
|
349
|
+
}
|
350
|
+
|
351
|
+
/* line 215, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_general.scss */
|
352
|
+
pre {
|
353
|
+
margin: 1.5em 0;
|
354
|
+
white-space: pre;
|
355
|
+
}
|
356
|
+
|
357
|
+
/* 52 framework grid */
|
358
|
+
/* line 15, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
359
|
+
.col, .col_1, .col_2, .col_3, .col_4, .col_5, .col_6, .col_7, .col_8, .col_9, .col_10, .col_11, .col_12, .col_13, .col_14, .col_15, .col_16 {
|
360
|
+
margin-left: 10px;
|
361
|
+
margin-right: 10px;
|
362
|
+
display: inline;
|
363
|
+
overflow: hidden;
|
364
|
+
float: left;
|
365
|
+
position: relative;
|
366
|
+
}
|
367
|
+
|
368
|
+
/* line 24, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
369
|
+
.row, header, nav[role=mainmenu], article[role=content], footer {
|
370
|
+
overflow: hidden;
|
371
|
+
margin: 0 auto;
|
372
|
+
width: 960px;
|
373
|
+
}
|
374
|
+
|
375
|
+
/* line 30, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
376
|
+
.inner_row, .row .row, header .row, nav[role=mainmenu] .row, article[role=content] .row, footer .row, .row header, header header, nav[role=mainmenu] header, article[role=content] header, footer header, .row nav[role=mainmenu], header nav[role=mainmenu], nav[role=mainmenu] nav[role=mainmenu], article[role=content] nav[role=mainmenu], footer nav[role=mainmenu], .row article[role=content], header article[role=content], nav[role=mainmenu] article[role=content], article[role=content] article[role=content], footer article[role=content], .row footer, header footer, nav[role=mainmenu] footer, article[role=content] footer, footer footer {
|
377
|
+
margin: -10px;
|
378
|
+
display: inline-block;
|
379
|
+
width: auto;
|
380
|
+
}
|
381
|
+
|
382
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
383
|
+
.col_1 {
|
384
|
+
width: 40px;
|
385
|
+
}
|
386
|
+
|
387
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
388
|
+
.width_1 {
|
389
|
+
width: 40px;
|
390
|
+
}
|
391
|
+
|
392
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
393
|
+
.col_2 {
|
394
|
+
width: 100px;
|
395
|
+
}
|
396
|
+
|
397
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
398
|
+
.width_2 {
|
399
|
+
width: 100px;
|
400
|
+
}
|
401
|
+
|
402
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
403
|
+
.col_3 {
|
404
|
+
width: 160px;
|
405
|
+
}
|
406
|
+
|
407
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
408
|
+
.width_3 {
|
409
|
+
width: 160px;
|
410
|
+
}
|
411
|
+
|
412
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
413
|
+
.col_4 {
|
414
|
+
width: 220px;
|
415
|
+
}
|
416
|
+
|
417
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
418
|
+
.width_4 {
|
419
|
+
width: 220px;
|
420
|
+
}
|
421
|
+
|
422
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
423
|
+
.col_5 {
|
424
|
+
width: 280px;
|
425
|
+
}
|
426
|
+
|
427
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
428
|
+
.width_5 {
|
429
|
+
width: 280px;
|
430
|
+
}
|
431
|
+
|
432
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
433
|
+
.col_6 {
|
434
|
+
width: 340px;
|
435
|
+
}
|
436
|
+
|
437
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
438
|
+
.width_6 {
|
439
|
+
width: 340px;
|
440
|
+
}
|
441
|
+
|
442
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
443
|
+
.col_7 {
|
444
|
+
width: 400px;
|
445
|
+
}
|
446
|
+
|
447
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
448
|
+
.width_7 {
|
449
|
+
width: 400px;
|
450
|
+
}
|
451
|
+
|
452
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
453
|
+
.col_8 {
|
454
|
+
width: 460px;
|
455
|
+
}
|
456
|
+
|
457
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
458
|
+
.width_8 {
|
459
|
+
width: 460px;
|
460
|
+
}
|
461
|
+
|
462
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
463
|
+
.col_9 {
|
464
|
+
width: 520px;
|
465
|
+
}
|
466
|
+
|
467
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
468
|
+
.width_9 {
|
469
|
+
width: 520px;
|
470
|
+
}
|
471
|
+
|
472
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
473
|
+
.col_10 {
|
474
|
+
width: 580px;
|
475
|
+
}
|
476
|
+
|
477
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
478
|
+
.width_10 {
|
479
|
+
width: 580px;
|
480
|
+
}
|
481
|
+
|
482
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
483
|
+
.col_11 {
|
484
|
+
width: 640px;
|
485
|
+
}
|
486
|
+
|
487
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
488
|
+
.width_11 {
|
489
|
+
width: 640px;
|
490
|
+
}
|
491
|
+
|
492
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
493
|
+
.col_12 {
|
494
|
+
width: 700px;
|
495
|
+
}
|
496
|
+
|
497
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
498
|
+
.width_12 {
|
499
|
+
width: 700px;
|
500
|
+
}
|
501
|
+
|
502
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
503
|
+
.col_13 {
|
504
|
+
width: 760px;
|
505
|
+
}
|
506
|
+
|
507
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
508
|
+
.width_13 {
|
509
|
+
width: 760px;
|
510
|
+
}
|
511
|
+
|
512
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
513
|
+
.col_14 {
|
514
|
+
width: 820px;
|
515
|
+
}
|
516
|
+
|
517
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
518
|
+
.width_14 {
|
519
|
+
width: 820px;
|
520
|
+
}
|
521
|
+
|
522
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
523
|
+
.col_15 {
|
524
|
+
width: 880px;
|
525
|
+
}
|
526
|
+
|
527
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
528
|
+
.width_15 {
|
529
|
+
width: 880px;
|
530
|
+
}
|
531
|
+
|
532
|
+
/* line 53, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
533
|
+
.col_16 {
|
534
|
+
width: 940px;
|
535
|
+
}
|
536
|
+
|
537
|
+
/* line 56, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-52-plugin-0.1/stylesheets/52/_grid.scss */
|
538
|
+
.width_16 {
|
539
|
+
width: 940px;
|
540
|
+
}
|
541
|
+
|
542
|
+
/* line 1, ../../../app/stylesheets/_typography.sass */
|
543
|
+
h1, h2, h3, h4, h5, h6 {
|
544
|
+
border-bottom: 1px solid;
|
545
|
+
}
|
546
|
+
|
547
|
+
/* line 4, ../../../app/stylesheets/_typography.sass */
|
548
|
+
body, textarea {
|
549
|
+
font: normal normal normal 13px/1.5 "Helvetica Neue", Arial, "Liberation Sans", FreeSans, sans-serif;
|
550
|
+
}
|
551
|
+
|
552
|
+
/* line 7, ../../../app/stylesheets/_typography.sass */
|
553
|
+
a:focus {
|
554
|
+
outline: 1px dotted;
|
555
|
+
}
|
556
|
+
|
557
|
+
/* line 10, ../../../app/stylesheets/_typography.sass */
|
558
|
+
hr {
|
559
|
+
border: 0 solid;
|
560
|
+
border-top-width: 1px;
|
561
|
+
clear: both;
|
562
|
+
height: 0;
|
563
|
+
}
|
564
|
+
|
565
|
+
/* line 16, ../../../app/stylesheets/_typography.sass */
|
566
|
+
h1 {
|
567
|
+
font-size: 25px;
|
568
|
+
}
|
569
|
+
|
570
|
+
/* line 19, ../../../app/stylesheets/_typography.sass */
|
571
|
+
h2 {
|
572
|
+
font-size: 23px;
|
573
|
+
}
|
574
|
+
|
575
|
+
/* line 22, ../../../app/stylesheets/_typography.sass */
|
576
|
+
h3 {
|
577
|
+
font-size: 21px;
|
578
|
+
}
|
579
|
+
|
580
|
+
/* line 25, ../../../app/stylesheets/_typography.sass */
|
581
|
+
h4 {
|
582
|
+
font-size: 19px;
|
583
|
+
}
|
584
|
+
|
585
|
+
/* line 28, ../../../app/stylesheets/_typography.sass */
|
586
|
+
h5 {
|
587
|
+
font-size: 17px;
|
588
|
+
}
|
589
|
+
|
590
|
+
/* line 31, ../../../app/stylesheets/_typography.sass */
|
591
|
+
h6 {
|
592
|
+
font-size: 15px;
|
593
|
+
}
|
594
|
+
|
595
|
+
/* line 34, ../../../app/stylesheets/_typography.sass */
|
596
|
+
ol {
|
597
|
+
list-style: decimal;
|
598
|
+
}
|
599
|
+
|
600
|
+
/* line 37, ../../../app/stylesheets/_typography.sass */
|
601
|
+
ul {
|
602
|
+
list-style: disc;
|
603
|
+
}
|
604
|
+
|
605
|
+
/* line 40, ../../../app/stylesheets/_typography.sass */
|
606
|
+
li {
|
607
|
+
margin-left: 30px;
|
608
|
+
}
|
609
|
+
|
610
|
+
/* line 43, ../../../app/stylesheets/_typography.sass */
|
611
|
+
p, dl, hr, h1, h2, h3, h4, h5, h6, ol, ul, pre, table, address, fieldset {
|
612
|
+
margin-bottom: 20px;
|
613
|
+
}
|
614
|
+
|
615
|
+
/* line 46, ../../../app/stylesheets/_typography.sass */
|
616
|
+
label, nav, .error, .success {
|
617
|
+
font-weight: bold;
|
618
|
+
}
|
619
|
+
|
620
|
+
/* line 50, ../../../app/stylesheets/_typography.sass */
|
621
|
+
input[type="submit"], input[type="reset"] {
|
622
|
+
font-weight: bold;
|
623
|
+
}
|
624
|
+
|
625
|
+
/* line 53, ../../../app/stylesheets/_typography.sass */
|
626
|
+
a {
|
627
|
+
padding: 4px;
|
628
|
+
}
|
629
|
+
/* line 55, ../../../app/stylesheets/_typography.sass */
|
630
|
+
a:hover {
|
631
|
+
text-decoration: none;
|
632
|
+
}
|
633
|
+
/* line 57, ../../../app/stylesheets/_typography.sass */
|
634
|
+
a.edit, a.delete {
|
635
|
+
padding-left: 25px;
|
636
|
+
background-repeat: no-repeat;
|
637
|
+
background-position: left center;
|
638
|
+
}
|
639
|
+
|
640
|
+
/* line 1, ../../../app/stylesheets/_template.sass */
|
641
|
+
.center {
|
642
|
+
text-align: center;
|
643
|
+
}
|
644
|
+
|
645
|
+
/* line 4, ../../../app/stylesheets/_template.sass */
|
646
|
+
ol {
|
647
|
+
padding: 10px;
|
648
|
+
margin: 0;
|
649
|
+
}
|
650
|
+
|
651
|
+
/* line 8, ../../../app/stylesheets/_template.sass */
|
652
|
+
caption {
|
653
|
+
padding: 4px;
|
654
|
+
}
|
655
|
+
|
656
|
+
/* line 11, ../../../app/stylesheets/_template.sass */
|
657
|
+
table {
|
658
|
+
width: 100%;
|
659
|
+
}
|
660
|
+
|
661
|
+
/* line 14, ../../../app/stylesheets/_template.sass */
|
662
|
+
th, td {
|
663
|
+
padding: 7px 15px;
|
664
|
+
text-align: left;
|
665
|
+
}
|
666
|
+
|
667
|
+
/* line 20, ../../../app/stylesheets/_template.sass */
|
668
|
+
form label {
|
669
|
+
display: block;
|
670
|
+
font-size: 17px;
|
671
|
+
margin: 0 0 5px;
|
672
|
+
position: relative;
|
673
|
+
}
|
674
|
+
/* line 26, ../../../app/stylesheets/_template.sass */
|
675
|
+
form small {
|
676
|
+
font-size: 12px;
|
677
|
+
font-weight: normal;
|
678
|
+
padding-left: 10px;
|
679
|
+
}
|
680
|
+
/* line 31, ../../../app/stylesheets/_template.sass */
|
681
|
+
form input, form input[type="text"], form input[type="email"], form input[type="url"], form textarea {
|
682
|
+
-moz-border-radius: 0;
|
683
|
+
-webkit-border-radius: 0;
|
684
|
+
-o-border-radius: 0;
|
685
|
+
-ms-border-radius: 0;
|
686
|
+
-khtml-border-radius: 0;
|
687
|
+
border-radius: 0;
|
688
|
+
-moz-border-radius-bottomright: 5px;
|
689
|
+
-webkit-border-bottom-right-radius: 5px;
|
690
|
+
-o-border-bottom-right-radius: 5px;
|
691
|
+
-ms-border-bottom-right-radius: 5px;
|
692
|
+
-khtml-border-bottom-right-radius: 5px;
|
693
|
+
border-bottom-right-radius: 5px;
|
694
|
+
-moz-border-radius-topleft: 5px;
|
695
|
+
-webkit-border-top-left-radius: 5px;
|
696
|
+
-o-border-top-left-radius: 5px;
|
697
|
+
-ms-border-top-left-radius: 5px;
|
698
|
+
-khtml-border-top-left-radius: 5px;
|
699
|
+
border-top-left-radius: 5px;
|
700
|
+
border: 1px solid;
|
701
|
+
font-family: inherit;
|
702
|
+
font-size: inherit;
|
703
|
+
padding: 4px;
|
704
|
+
}
|
705
|
+
/* line 39, ../../../app/stylesheets/_template.sass */
|
706
|
+
form select {
|
707
|
+
-moz-border-radius-bottomright: 5px;
|
708
|
+
-webkit-border-bottom-right-radius: 5px;
|
709
|
+
-o-border-bottom-right-radius: 5px;
|
710
|
+
-ms-border-bottom-right-radius: 5px;
|
711
|
+
-khtml-border-bottom-right-radius: 5px;
|
712
|
+
border-bottom-right-radius: 5px;
|
713
|
+
-moz-border-radius-topleft: 5px;
|
714
|
+
-webkit-border-top-left-radius: 5px;
|
715
|
+
-o-border-top-left-radius: 5px;
|
716
|
+
-ms-border-top-left-radius: 5px;
|
717
|
+
-khtml-border-top-left-radius: 5px;
|
718
|
+
border-top-left-radius: 5px;
|
719
|
+
border: 1px solid;
|
720
|
+
font-family: inherit;
|
721
|
+
font-size: inherit;
|
722
|
+
padding: 4px;
|
723
|
+
padding-top: 3px;
|
724
|
+
padding-bottom: 3px;
|
725
|
+
}
|
726
|
+
/* line 49, ../../../app/stylesheets/_template.sass */
|
727
|
+
form input[type="submit"], form input[type="reset"] {
|
728
|
+
cursor: pointer;
|
729
|
+
width: auto !important;
|
730
|
+
}
|
731
|
+
|
732
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
733
|
+
.col_1 input, .col_1 select, .col_1 textarea {
|
734
|
+
width: 30px;
|
735
|
+
}
|
736
|
+
|
737
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
738
|
+
.col_2 input, .col_2 select, .col_2 textarea {
|
739
|
+
width: 90px;
|
740
|
+
}
|
741
|
+
|
742
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
743
|
+
.col_3 input, .col_3 select, .col_3 textarea {
|
744
|
+
width: 150px;
|
745
|
+
}
|
746
|
+
|
747
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
748
|
+
.col_4 input, .col_4 select, .col_4 textarea {
|
749
|
+
width: 210px;
|
750
|
+
}
|
751
|
+
|
752
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
753
|
+
.col_5 input, .col_5 select, .col_5 textarea {
|
754
|
+
width: 270px;
|
755
|
+
}
|
756
|
+
|
757
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
758
|
+
.col_6 input, .col_6 select, .col_6 textarea {
|
759
|
+
width: 330px;
|
760
|
+
}
|
761
|
+
|
762
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
763
|
+
.col_7 input, .col_7 select, .col_7 textarea {
|
764
|
+
width: 390px;
|
765
|
+
}
|
766
|
+
|
767
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
768
|
+
.col_8 input, .col_8 select, .col_8 textarea {
|
769
|
+
width: 450px;
|
770
|
+
}
|
771
|
+
|
772
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
773
|
+
.col_9 input, .col_9 select, .col_9 textarea {
|
774
|
+
width: 510px;
|
775
|
+
}
|
776
|
+
|
777
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
778
|
+
.col_10 input, .col_10 select, .col_10 textarea {
|
779
|
+
width: 570px;
|
780
|
+
}
|
781
|
+
|
782
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
783
|
+
.col_11 input, .col_11 select, .col_11 textarea {
|
784
|
+
width: 630px;
|
785
|
+
}
|
786
|
+
|
787
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
788
|
+
.col_12 input, .col_12 select, .col_12 textarea {
|
789
|
+
width: 690px;
|
790
|
+
}
|
791
|
+
|
792
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
793
|
+
.col_13 input, .col_13 select, .col_13 textarea {
|
794
|
+
width: 750px;
|
795
|
+
}
|
796
|
+
|
797
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
798
|
+
.col_14 input, .col_14 select, .col_14 textarea {
|
799
|
+
width: 810px;
|
800
|
+
}
|
801
|
+
|
802
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
803
|
+
.col_15 input, .col_15 select, .col_15 textarea {
|
804
|
+
width: 870px;
|
805
|
+
}
|
806
|
+
|
807
|
+
/* line 55, ../../../app/stylesheets/_template.sass */
|
808
|
+
.col_16 input, .col_16 select, .col_16 textarea {
|
809
|
+
width: 930px;
|
810
|
+
}
|
811
|
+
|
812
|
+
/* Error and Success messages */
|
813
|
+
/* line 60, ../../../app/stylesheets/_template.sass */
|
814
|
+
.error, .success {
|
815
|
+
-moz-border-radius-bottomleft: 5px;
|
816
|
+
-webkit-border-bottom-left-radius: 5px;
|
817
|
+
-o-border-bottom-left-radius: 5px;
|
818
|
+
-ms-border-bottom-left-radius: 5px;
|
819
|
+
-khtml-border-bottom-left-radius: 5px;
|
820
|
+
border-bottom-left-radius: 5px;
|
821
|
+
-moz-border-radius-topright: 5px;
|
822
|
+
-webkit-border-top-right-radius: 5px;
|
823
|
+
-o-border-top-right-radius: 5px;
|
824
|
+
-ms-border-top-right-radius: 5px;
|
825
|
+
-khtml-border-top-right-radius: 5px;
|
826
|
+
border-top-right-radius: 5px;
|
827
|
+
padding: 4px 8px;
|
828
|
+
}
|
829
|
+
|
830
|
+
/* Pagination */
|
831
|
+
/* line 66, ../../../app/stylesheets/_template.sass */
|
832
|
+
.pagination {
|
833
|
+
text-align: right;
|
834
|
+
}
|
835
|
+
/* line 68, ../../../app/stylesheets/_template.sass */
|
836
|
+
.pagination a, .pagination span {
|
837
|
+
display: inline-block;
|
838
|
+
margin: 0 2px;
|
839
|
+
padding: 2px 6px;
|
840
|
+
}
|
841
|
+
|
842
|
+
/* line 35, ../../../app/stylesheets/_colors.sass */
|
843
|
+
body, textarea {
|
844
|
+
color: #333333;
|
845
|
+
}
|
846
|
+
|
847
|
+
/* line 38, ../../../app/stylesheets/_colors.sass */
|
848
|
+
hr {
|
849
|
+
border-color: #cccccc;
|
850
|
+
}
|
851
|
+
|
852
|
+
/* line 41, ../../../app/stylesheets/_colors.sass */
|
853
|
+
h1, h2, h3, h4, h5, h6, select, textarea {
|
854
|
+
border-color: #dddddd;
|
855
|
+
}
|
856
|
+
|
857
|
+
/* line 45, ../../../app/stylesheets/_colors.sass */
|
858
|
+
form input, form input[type="text"], form input[type="email"], form input[type="url"], form select, form textarea {
|
859
|
+
border-color: #dddddd;
|
860
|
+
}
|
861
|
+
/* line 47, ../../../app/stylesheets/_colors.sass */
|
862
|
+
form input[type=submit] {
|
863
|
+
color: white;
|
864
|
+
}
|
865
|
+
|
866
|
+
/* line 50, ../../../app/stylesheets/_colors.sass */
|
867
|
+
small {
|
868
|
+
color: #888888;
|
869
|
+
}
|
870
|
+
|
871
|
+
/* line 53, ../../../app/stylesheets/_colors.sass */
|
872
|
+
select, textarea, input, td, article, footer {
|
873
|
+
background: white url(../../images/admin_fu/gradient.png) repeat-x 0 -28px;
|
874
|
+
}
|
875
|
+
|
876
|
+
/* line 56, ../../../app/stylesheets/_colors.sass */
|
877
|
+
th, input[type=submit], .pagination a:hover {
|
878
|
+
background: #434a48;
|
879
|
+
color: white;
|
880
|
+
}
|
881
|
+
|
882
|
+
/* line 60, ../../../app/stylesheets/_colors.sass */
|
883
|
+
.pagination a:hover {
|
884
|
+
-moz-border-radius-bottomleft: 5px;
|
885
|
+
-webkit-border-bottom-left-radius: 5px;
|
886
|
+
-o-border-bottom-left-radius: 5px;
|
887
|
+
-ms-border-bottom-left-radius: 5px;
|
888
|
+
-khtml-border-bottom-left-radius: 5px;
|
889
|
+
border-bottom-left-radius: 5px;
|
890
|
+
-moz-border-radius-topright: 5px;
|
891
|
+
-webkit-border-top-right-radius: 5px;
|
892
|
+
-o-border-top-right-radius: 5px;
|
893
|
+
-ms-border-top-right-radius: 5px;
|
894
|
+
-khtml-border-top-right-radius: 5px;
|
895
|
+
border-top-right-radius: 5px;
|
896
|
+
}
|
897
|
+
|
898
|
+
/* line 63, ../../../app/stylesheets/_colors.sass */
|
899
|
+
article {
|
900
|
+
background-position: 0 1px;
|
901
|
+
}
|
902
|
+
|
903
|
+
/* line 66, ../../../app/stylesheets/_colors.sass */
|
904
|
+
.error, .success {
|
905
|
+
color: white;
|
906
|
+
}
|
907
|
+
|
908
|
+
/* line 69, ../../../app/stylesheets/_colors.sass */
|
909
|
+
.error {
|
910
|
+
background: #901830;
|
911
|
+
}
|
912
|
+
|
913
|
+
/* line 72, ../../../app/stylesheets/_colors.sass */
|
914
|
+
.success {
|
915
|
+
background: #c2efc2;
|
916
|
+
}
|
917
|
+
|
918
|
+
/* line 11, ../../../app/stylesheets/styles.sass */
|
919
|
+
body {
|
920
|
+
padding-top: 10px;
|
921
|
+
background: #f7f4e9;
|
922
|
+
}
|
923
|
+
|
924
|
+
/* line 15, ../../../app/stylesheets/styles.sass */
|
925
|
+
header {
|
926
|
+
background: #313230;
|
927
|
+
-moz-border-radius-topright: 5px;
|
928
|
+
-webkit-border-top-right-radius: 5px;
|
929
|
+
-o-border-top-right-radius: 5px;
|
930
|
+
-ms-border-top-right-radius: 5px;
|
931
|
+
-khtml-border-top-right-radius: 5px;
|
932
|
+
border-top-right-radius: 5px;
|
933
|
+
padding: 10px 30px;
|
934
|
+
}
|
935
|
+
/* line 20, ../../../app/stylesheets/styles.sass */
|
936
|
+
header h1 {
|
937
|
+
border: 0px;
|
938
|
+
margin: 0;
|
939
|
+
}
|
940
|
+
/* line 23, ../../../app/stylesheets/styles.sass */
|
941
|
+
header h1 a {
|
942
|
+
color: white;
|
943
|
+
text-decoration: none;
|
944
|
+
}
|
945
|
+
|
946
|
+
/* line 26, ../../../app/stylesheets/styles.sass */
|
947
|
+
nav[role=mainmenu] {
|
948
|
+
-moz-border-radius-bottomleft: 5px;
|
949
|
+
-webkit-border-bottom-left-radius: 5px;
|
950
|
+
-o-border-bottom-left-radius: 5px;
|
951
|
+
-ms-border-bottom-left-radius: 5px;
|
952
|
+
-khtml-border-bottom-left-radius: 5px;
|
953
|
+
border-bottom-left-radius: 5px;
|
954
|
+
background: #434a48;
|
955
|
+
padding: 10px 30px;
|
956
|
+
}
|
957
|
+
/* line 31, ../../../app/stylesheets/styles.sass */
|
958
|
+
nav[role=mainmenu] a {
|
959
|
+
color: white;
|
960
|
+
text-decoration: none;
|
961
|
+
-moz-border-radius-bottomleft: 5px;
|
962
|
+
-webkit-border-bottom-left-radius: 5px;
|
963
|
+
-o-border-bottom-left-radius: 5px;
|
964
|
+
-ms-border-bottom-left-radius: 5px;
|
965
|
+
-khtml-border-bottom-left-radius: 5px;
|
966
|
+
border-bottom-left-radius: 5px;
|
967
|
+
-moz-border-radius-topright: 5px;
|
968
|
+
-webkit-border-top-right-radius: 5px;
|
969
|
+
-o-border-top-right-radius: 5px;
|
970
|
+
-ms-border-top-right-radius: 5px;
|
971
|
+
-khtml-border-top-right-radius: 5px;
|
972
|
+
border-top-right-radius: 5px;
|
973
|
+
padding: 5px 10px;
|
974
|
+
}
|
975
|
+
/* line 35, ../../../app/stylesheets/styles.sass */
|
976
|
+
nav[role=mainmenu] a:hover {
|
977
|
+
background: #383e3c;
|
978
|
+
}
|
979
|
+
/* line 37, ../../../app/stylesheets/styles.sass */
|
980
|
+
nav[role=mainmenu] a.active {
|
981
|
+
background: #687370;
|
982
|
+
}
|
983
|
+
/* line 39, ../../../app/stylesheets/styles.sass */
|
984
|
+
nav[role=mainmenu] ul {
|
985
|
+
list-style-type: none;
|
986
|
+
}
|
987
|
+
/* line 5, ../../../../../.rvm/gems/ruby-1.9.2-p136/gems/compass-0.10.6/frameworks/compass/stylesheets/compass/utilities/lists/_inline-list.scss */
|
988
|
+
nav[role=mainmenu] ul, nav[role=mainmenu] ul li {
|
989
|
+
margin: 0px;
|
990
|
+
padding: 0px;
|
991
|
+
display: inline;
|
992
|
+
}
|
993
|
+
|
994
|
+
/* line 42, ../../../app/stylesheets/styles.sass */
|
995
|
+
article[role=content] {
|
996
|
+
background: white;
|
997
|
+
margin-top: 10px;
|
998
|
+
padding: 25px;
|
999
|
+
}
|
1000
|
+
|
1001
|
+
/* line 48, ../../../app/stylesheets/styles.sass */
|
1002
|
+
footer {
|
1003
|
+
padding: 5px 30px;
|
1004
|
+
margin: 10px auto;
|
1005
|
+
}
|