bones-rails 0.0.2 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +29 -7
- data/app/assets/stylesheets/bones.scss +65 -0
- data/app/assets/stylesheets/bones/config/bones_config.scss +262 -0
- data/app/assets/stylesheets/bones/helpers/_background.scss +138 -0
- data/app/assets/stylesheets/bones/helpers/_border.scss +138 -0
- data/app/assets/stylesheets/bones/helpers/_color.scss +138 -0
- data/app/assets/stylesheets/bones/helpers/_margin.scss +82 -0
- data/app/assets/stylesheets/bones/helpers/_padding.scss +82 -0
- data/app/assets/stylesheets/bones/helpers/_positioning.scss +24 -0
- data/app/assets/stylesheets/bones/helpers/_size.scss +34 -0
- data/app/assets/stylesheets/bones/mixins/_buttons.scss +19 -0
- data/app/assets/stylesheets/bones/mixins/_forms.scss +15 -0
- data/app/assets/stylesheets/bones/mixins/_globals.scss +15 -0
- data/app/assets/stylesheets/bones/mixins/_grid.scss +4 -0
- data/app/assets/stylesheets/bones/mixins/_nav.scss +41 -0
- data/app/assets/stylesheets/bones/mixins/_typography.scss +15 -0
- data/app/assets/stylesheets/bones/partials/_buttons.scss +86 -0
- data/app/assets/stylesheets/bones/partials/_code.scss +99 -0
- data/app/assets/stylesheets/bones/partials/_components.scss +22 -0
- data/app/assets/stylesheets/bones/partials/_forms.scss +49 -0
- data/app/assets/stylesheets/bones/partials/_globals.scss +27 -0
- data/app/assets/stylesheets/bones/partials/_grid.scss +112 -0
- data/app/assets/stylesheets/bones/partials/_images.scss +52 -0
- data/app/assets/stylesheets/bones/partials/_nav.scss +111 -0
- data/app/assets/stylesheets/bones/partials/_tables.scss +19 -0
- data/app/assets/stylesheets/bones/partials/_typography.scss +174 -0
- data/app/assets/stylesheets/bones/variables/_buttons.scss +16 -0
- data/app/assets/stylesheets/bones/variables/_code.scss +15 -0
- data/app/assets/stylesheets/bones/variables/_colors.scss +122 -0
- data/app/assets/stylesheets/bones/variables/_forms.scss +12 -0
- data/app/assets/stylesheets/bones/variables/_globals.scss +12 -0
- data/app/assets/stylesheets/bones/variables/_grid.scss +8 -0
- data/app/assets/stylesheets/bones/variables/_helpers.scss +9 -0
- data/app/assets/stylesheets/bones/variables/_images.scss +13 -0
- data/app/assets/stylesheets/bones/variables/_nav.scss +40 -0
- data/app/assets/stylesheets/bones/variables/_tables.scss +7 -0
- data/app/assets/stylesheets/bones/variables/_typography.scss +61 -0
- data/app/assets/stylesheets/bones/vendor/_normalize.scss +406 -0
- data/bones-rails.gemspec +11 -10
- data/lib/bones/generators/install_generator.rb +18 -0
- data/lib/bones/rails.rb +2 -3
- data/lib/bones/rails/version.rb +1 -3
- metadata +67 -8
- checksums.yaml +0 -15
- data/app/assets/stylesheets/bones.css +0 -1
data/bones-rails.gemspec
CHANGED
@@ -1,23 +1,24 @@
|
|
1
|
-
#
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
3
|
-
|
4
|
-
require 'bones/rails/version'
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
#lib = File.expand_path('../lib', __FILE__)
|
3
|
+
#$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require File.expand_path('../lib/bones/rails/version', __FILE__)
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "bones-rails"
|
8
|
-
spec.version = Bones::
|
9
|
-
spec.authors = ["Sean Davis"]
|
10
|
-
spec.email = ["
|
8
|
+
spec.version = Bones::VERSION
|
9
|
+
spec.authors = ["Sean C. Davis"]
|
10
|
+
spec.email = ["sean@rocktreedesign.com"]
|
11
11
|
spec.description = ""
|
12
12
|
spec.summary = ""
|
13
13
|
spec.homepage = ""
|
14
14
|
spec.license = "MIT"
|
15
|
-
|
15
|
+
|
16
16
|
spec.files = `git ls-files`.split($/)
|
17
17
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
19
|
spec.require_paths = ["lib"]
|
20
|
-
|
20
|
+
|
21
|
+
spec.add_dependency "sass"
|
21
22
|
spec.add_development_dependency "bundler", "~> 1.3"
|
22
23
|
spec.add_development_dependency "rake"
|
23
|
-
end
|
24
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'rails/generators'
|
3
|
+
|
4
|
+
module Bones
|
5
|
+
module Generators
|
6
|
+
class InstallGenerator < Rails::Generators::Base
|
7
|
+
#source_root File.expand_path('../templates', __FILE__)
|
8
|
+
|
9
|
+
desc "This is the description"
|
10
|
+
def add_assets
|
11
|
+
prepend_to_file "app/assets/stylesheets/application.scss", "@import 'bones';\n"
|
12
|
+
settings_file = File.join(File.dirname(__FILE__),"..","..","..","app","assets","stylesheets","bones","config","bones_config.scss")
|
13
|
+
create_file "app/assets/stylesheets/bones_config.scss", File.read(settings_file)
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/lib/bones/rails.rb
CHANGED
data/lib/bones/rails/version.rb
CHANGED
metadata
CHANGED
@@ -1,18 +1,36 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bones-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
|
-
- Sean Davis
|
8
|
+
- Sean C. Davis
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2013-
|
12
|
+
date: 2013-11-21 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: sass
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
13
30
|
- !ruby/object:Gem::Dependency
|
14
31
|
name: bundler
|
15
32
|
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
16
34
|
requirements:
|
17
35
|
- - ~>
|
18
36
|
- !ruby/object:Gem::Version
|
@@ -20,6 +38,7 @@ dependencies:
|
|
20
38
|
type: :development
|
21
39
|
prerelease: false
|
22
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
23
42
|
requirements:
|
24
43
|
- - ~>
|
25
44
|
- !ruby/object:Gem::Version
|
@@ -27,6 +46,7 @@ dependencies:
|
|
27
46
|
- !ruby/object:Gem::Dependency
|
28
47
|
name: rake
|
29
48
|
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
30
50
|
requirements:
|
31
51
|
- - ! '>='
|
32
52
|
- !ruby/object:Gem::Version
|
@@ -34,13 +54,14 @@ dependencies:
|
|
34
54
|
type: :development
|
35
55
|
prerelease: false
|
36
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
37
58
|
requirements:
|
38
59
|
- - ! '>='
|
39
60
|
- !ruby/object:Gem::Version
|
40
61
|
version: '0'
|
41
62
|
description: ''
|
42
63
|
email:
|
43
|
-
-
|
64
|
+
- sean@rocktreedesign.com
|
44
65
|
executables: []
|
45
66
|
extensions: []
|
46
67
|
extra_rdoc_files: []
|
@@ -51,32 +72,70 @@ files:
|
|
51
72
|
- README.md
|
52
73
|
- Rakefile
|
53
74
|
- app/assets/javascripts/bones.js
|
54
|
-
- app/assets/stylesheets/bones.
|
75
|
+
- app/assets/stylesheets/bones.scss
|
76
|
+
- app/assets/stylesheets/bones/config/bones_config.scss
|
77
|
+
- app/assets/stylesheets/bones/helpers/_background.scss
|
78
|
+
- app/assets/stylesheets/bones/helpers/_border.scss
|
79
|
+
- app/assets/stylesheets/bones/helpers/_color.scss
|
80
|
+
- app/assets/stylesheets/bones/helpers/_margin.scss
|
81
|
+
- app/assets/stylesheets/bones/helpers/_padding.scss
|
82
|
+
- app/assets/stylesheets/bones/helpers/_positioning.scss
|
83
|
+
- app/assets/stylesheets/bones/helpers/_size.scss
|
84
|
+
- app/assets/stylesheets/bones/mixins/_buttons.scss
|
85
|
+
- app/assets/stylesheets/bones/mixins/_forms.scss
|
86
|
+
- app/assets/stylesheets/bones/mixins/_globals.scss
|
87
|
+
- app/assets/stylesheets/bones/mixins/_grid.scss
|
88
|
+
- app/assets/stylesheets/bones/mixins/_nav.scss
|
89
|
+
- app/assets/stylesheets/bones/mixins/_typography.scss
|
90
|
+
- app/assets/stylesheets/bones/partials/_buttons.scss
|
91
|
+
- app/assets/stylesheets/bones/partials/_code.scss
|
92
|
+
- app/assets/stylesheets/bones/partials/_components.scss
|
93
|
+
- app/assets/stylesheets/bones/partials/_forms.scss
|
94
|
+
- app/assets/stylesheets/bones/partials/_globals.scss
|
95
|
+
- app/assets/stylesheets/bones/partials/_grid.scss
|
96
|
+
- app/assets/stylesheets/bones/partials/_images.scss
|
97
|
+
- app/assets/stylesheets/bones/partials/_nav.scss
|
98
|
+
- app/assets/stylesheets/bones/partials/_tables.scss
|
99
|
+
- app/assets/stylesheets/bones/partials/_typography.scss
|
100
|
+
- app/assets/stylesheets/bones/variables/_buttons.scss
|
101
|
+
- app/assets/stylesheets/bones/variables/_code.scss
|
102
|
+
- app/assets/stylesheets/bones/variables/_colors.scss
|
103
|
+
- app/assets/stylesheets/bones/variables/_forms.scss
|
104
|
+
- app/assets/stylesheets/bones/variables/_globals.scss
|
105
|
+
- app/assets/stylesheets/bones/variables/_grid.scss
|
106
|
+
- app/assets/stylesheets/bones/variables/_helpers.scss
|
107
|
+
- app/assets/stylesheets/bones/variables/_images.scss
|
108
|
+
- app/assets/stylesheets/bones/variables/_nav.scss
|
109
|
+
- app/assets/stylesheets/bones/variables/_tables.scss
|
110
|
+
- app/assets/stylesheets/bones/variables/_typography.scss
|
111
|
+
- app/assets/stylesheets/bones/vendor/_normalize.scss
|
55
112
|
- bones-rails.gemspec
|
113
|
+
- lib/bones/generators/install_generator.rb
|
56
114
|
- lib/bones/rails.rb
|
57
115
|
- lib/bones/rails/version.rb
|
58
116
|
homepage: ''
|
59
117
|
licenses:
|
60
118
|
- MIT
|
61
|
-
metadata: {}
|
62
119
|
post_install_message:
|
63
120
|
rdoc_options: []
|
64
121
|
require_paths:
|
65
122
|
- lib
|
66
123
|
required_ruby_version: !ruby/object:Gem::Requirement
|
124
|
+
none: false
|
67
125
|
requirements:
|
68
126
|
- - ! '>='
|
69
127
|
- !ruby/object:Gem::Version
|
70
128
|
version: '0'
|
71
129
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
130
|
+
none: false
|
72
131
|
requirements:
|
73
132
|
- - ! '>='
|
74
133
|
- !ruby/object:Gem::Version
|
75
134
|
version: '0'
|
76
135
|
requirements: []
|
77
136
|
rubyforge_project:
|
78
|
-
rubygems_version:
|
137
|
+
rubygems_version: 1.8.23
|
79
138
|
signing_key:
|
80
|
-
specification_version:
|
139
|
+
specification_version: 3
|
81
140
|
summary: ''
|
82
141
|
test_files: []
|
checksums.yaml
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
---
|
2
|
-
!binary "U0hBMQ==":
|
3
|
-
metadata.gz: !binary |-
|
4
|
-
Njk1YjExODhjNjUwOWQyZmY3NGQ0NzUwZGYzN2E1ODNmYjI3NTE2OA==
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
ZjMwZGE3YWQwZGY5OTgxOWVhZTAwYWJiMjM4YTU4YzE3ZmQyZWJlZA==
|
7
|
-
!binary "U0hBNTEy":
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
OTJlZGYzZGMwZmMwNWYzNGVhNzVkNGY3OWQ0ODAwYzFjZDdkODUxZTA2OWQy
|
10
|
-
NzQzYzVkMmFlNjYzYmFmYWYwNTVmODBkZjgyMDVlNzI4MTZiNjMzMzdmMzYy
|
11
|
-
ODI2N2JiOWVkZjMwNzM5NzA3MWEzZmIxZWNiYTg1ZDRmZTgzNWU=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
MGEwYTRmZDMxNjdhZTZkODEwNGQ2YWU1MzA3NGY0MDBiMjM0MjBlYTVjNDlk
|
14
|
-
ODIwMWNhZDRhZWI5ZDNlYzIwZDg5YTg4MjE3OTM1ZmJmNjZmY2NiY2I0NThi
|
15
|
-
YzM1MTVkOGM3ZjZlOTQ2ZTRjZWU3OTM4YWJhNDk4ZGU0OWQ4OTI=
|
@@ -1 +0,0 @@
|
|
1
|
-
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}html{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;font-weight:normal;vertical-align:middle}q,blockquote{quotes:none}q:before,q:after,blockquote:before,blockquote:after{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary{display:block}body{font:15px Helvetica, arial, freesans, clean, sans-serif;font-weight:200;line-height:normal;color:#444;width:100%;position:absolute}.container{padding:20px 25px;max-width:960px;margin:auto;background:white}.full-width-container{padding:20px 25px}::selection{color:#efefef;background:#009b77}.clearfix{display:inline-block}.clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}html[xmlns] .clearfix{display:block}* html .clearfix{height:1%}hr{border:none;background:#efefef;margin:0.75em 0;height:1px}.nav-container{display:inline-block;display:block;background:#444;width:100%}.nav-container:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.nav-container .nav-toggle{color:#afafaf;padding:5px 20px;float:left;display:none}.nav-container .nav-toggle:hover{cursor:pointer;color:#efefef}.nav-container .nav{list-style:none;margin:0}.nav-container .nav li{display:inline-block;margin:0}.nav-container .nav li a{display:block;color:#afafaf;padding:12px 20px}.nav-container .nav li a:hover{text-decoration:none;color:#efefef;background:#009b77}.nav-container .nav li:hover>.dropdown{display:block}.nav-container .nav .dropdown,.nav-container .nav .sub-dropdown{display:none;position:absolute;background:#444;margin:0;box-shadow:1px 1px 5px #444}.nav-container .nav .dropdown li,.nav-container .nav .sub-dropdown li{display:block}.nav-container .nav .dropdown li a,.nav-container .nav .sub-dropdown li a{padding:7px 20px}.nav-container .nav .dropdown li a:hover,.nav-container .nav .sub-dropdown li a:hover{color:#afafaf;background:#5e5e5e}.nav-container .nav .dropdown li:hover>.sub-dropdown{display:block}.nav-container .nav .sub-dropdown{left:100%;top:31px;min-width:100%}h1,h2,h3,h4,h5,h6{font-weight:600;margin:0.75em 0 0.6em 0}h1{font-size:2.3em}h2{font-size:1.9em;margin:1.0em 0 0.25em 0}h3{font-size:1.65em;font-weight:400;margin:1.0em 0 0.25em 0}h4{font-size:1.1em;text-transform:uppercase;margin:1.1em 0 0 0}h5{font-size:0.9em;font-weight:400}h6{font-size:0.8em}.subheading{font-weight:200;color:#777}p{margin:0 0 0.75em 0;line-height:1.35em}code{font-family:Monaco, Menlo, Consolas, "Courier New", monospace;color:#d14;font-size:13px;background:#efefef;padding:2px 4px;border:1px solid #d5d5d5}pre{margin:1.25em 0;padding:0.75em;font-family:Monaco, Menlo, Consolas, "Courier New", monospace;background:#efefef;border:1px solid #d5d5d5;display:block;font-size:13px;line-height:20px;word-break:break-all;word-wrap:break-word;white-space:pre;white-space:pre-wrap}pre code{color:#444;background:transparent;padding:0;border:none}blockquote{padding:0.75em;color:#444;background:#efefef;border:1px solid #d5d5d5;font-size:110%;font-weight:200}blockquote cite{font-size:88%;font-weight:400;color:#777;display:block;margin:0.75em 0 0.25em 0}blockquote cite:before{content:"\2014 \00A0"}a{color:#009b77;text-decoration:none}a:hover{text-decoration:underline}small{font-size:60%;color:#777}big{font-size:140%}em{font-style:italic}strong{font-weight:600}ul,ol{margin:0 0 0 1em;line-height:1.25em}ul li,ol li{margin:0.25em 0}ul ul,ul ol,ol ul,ol ol{margin:0 0 0 1.5em}ul{list-style-type:disc}ol{list-style-type:decimal}.row{display:inline-block;width:100%}.row:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.row .column,.row .columns{float:left;margin:1em 0.5%}.row .column:first-child,.row .columns:first-child{margin:1em 0.5% 1em 0}.row .column:last-child,.row .columns:last-child{margin:1em 0 1em 0.5%}.one{width:7.41666666%}.two{width:15.8333333%}.three{width:24.25%}.four{width:32.6666666%}.five{width:41.08333333%}.six{width:49.5%}.seven{width:57.9166666%}.eight{width:66.33333333%}.nine{width:74.75%}.ten{width:83.16666666%}.eleven{width:91.58333333%}.twelve{width:100%;margin:1em 0 !important}table{width:100%;vertical-align:middle}table tr td{padding:10px 0}ul.tabs{list-style-type:none;margin:0 0 10px 0;border-bottom:1px solid #bcbcbc}ul.tabs li{display:inline-block;padding:8px 10px;margin:0 0 -1px 10px;border:1px solid #d5d5d5;border-bottom-color:#bcbcbc;border-radius:4px 4px 0 0}ul.tabs li:hover{cursor:pointer;border:1px solid #bcbcbc;border-bottom-color:transparent}ul.tabs li.active{border:1px solid #bcbcbc;border-bottom-color:white}.tab-content{display:none}.first-tab{display:inherit}.bones-tooltip{display:none;position:absolute;max-width:200px;font:normal 11px "Helvetica Neue", Sans-Serif;padding:10px;border-radius:3px;background:#009b77;color:#efefef;box-shadow:0 0 2px #444}div.arrow-bottom{width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-top:10px solid #009b77;position:absolute;left:50%;margin:0 0 0 -10px;bottom:-10px}div.arrow-bottom:after{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);box-shadow:0 0 2px #444}.define{border-bottom:1px dotted #444}.define:hover{cursor:help}.button{display:inline-block;color:#efefef;background:#515151;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}.button:hover{background:#009b77;text-decoration:none;cursor:pointer}.button-primary{display:inline-block;color:#efefef;background:#009b77;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}.button-primary:hover{background:#008263;text-decoration:none;cursor:pointer}.button-secondary{display:inline-block;color:#efefef;background:#515151;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}.button-secondary:hover{background:#373737;text-decoration:none;cursor:pointer}.button-warning{display:inline-block;color:#efefef;background:#cca300;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}.button-warning:hover{background:#b38f00;text-decoration:none;cursor:pointer}.button-danger{display:inline-block;color:#efefef;background:#c00;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}.button-danger:hover{background:#b30000;text-decoration:none;cursor:pointer}.button-success{display:inline-block;color:#efefef;background:#008a2e;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}.button-success:hover{background:#007126;text-decoration:none;cursor:pointer}.button-group{margin:5px 15px 5px 0}.button-group a{margin:0 -4px 0 0}form label{display:block}form input,form textarea{display:block;font-size:1em;color:#444;font-family:Helvetica, arial, freesans, clean, sans-serif;font-weight:200;border-radius:0;border:1px solid #efefef}form input:focus,form textarea:focus{background-color:#efefef;outline:none}form input[type=submit],form textarea[type=submit]{display:inline-block;color:#efefef;background:#009b77;text-shadow:none;border-radius:0;box-shadow:none;border:none;font-size:13px;margin:5px 5px 0 0;padding:10px}form input[type=submit]:hover,form textarea[type=submit]:hover{background:#008263;text-decoration:none;cursor:pointer}.alert-primary{display:block;margin:5px 0;padding:10px;background:#009b77;color:#efefef}.alert-success{display:block;margin:5px 0;padding:10px;background:#008a2e;color:#efefef}.alert-warning{display:block;margin:5px 0;padding:10px;background:#cca300;color:#efefef}.alert-danger{display:block;margin:5px 0;padding:10px;background:#c00;color:#efefef}img{margin:5px}img.small{width:150px}img.medium{width:300px}img.large{width:450px}.rounded{border-radius:10px}.polaroid{border:5px solid #FFFFFF;outline:1px solid #d5d5d5}div.crop{display:inline-block;overflow:hidden;position:relative;margin:5px}div.crop img{width:100%;margin:0;position:absolute}div.img-small{width:150px;height:150px}div.img-medium{width:300px;height:300px}div.img-large{width:450px;height:450px}div.img-panoramic{margin:0;width:100%;height:200px}.bkg-primary{background:#009b77;color:#efefef}.float-left{float:left}.float-right{float:right}.text-center{text-align:center}@font-face{font-family:'icomoon';src:url("fonts/icomoon.eot");src:url("fonts/icomoon.eot?#iefix") format("embedded-opentype"),url("fonts/icomoon.woff") format("woff"),url("fonts/icomoon.ttf") format("truetype"),url("fonts/icomoon.svg#icomoon") format("svg");font-weight:normal;font-style:normal}[data-icon]:before{font-family:'icomoon';content:attr(data-icon);speak:none;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.icon-email,.icon-paintbrush,.icon-dam,.icon-briefcase{font-family:'icomoon';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.icon-email:before{content:"\e000"}.icon-paintbrush:before{content:"\e001"}.icon-dam:before{content:"\e002"}.icon-briefcase:before{content:"\e003"}@media (max-width: 767px){body{font-size:13px}.column,.columns{width:100%;margin:10px 0}.nav-container .nav-toggle{display:inline-block}.nav-container .nav{position:fixed;top:0;left:0;background:#444;height:100%;width:200px;z-index:-9999}.nav-container .nav li{display:block}.nav-container .nav li .dropdown,.nav-container .nav li .sub-dropdown{box-shadow:none;position:relative;display:inherit;top:0;left:0;margin:0}.nav-container .nav li .dropdown li,.nav-container .nav li .sub-dropdown li{display:block}.nav-container .nav li .dropdown li a,.nav-container .nav li .sub-dropdown li a{padding:7px 0 7px 35px}.nav-container .nav li .sub-dropdown li a{padding:7px 0 7px 50px}}
|