staticmatic 0.11.0 → 0.11.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -2
- data/VERSION.yml +1 -1
- data/lib/staticmatic/helpers/assets_helper.rb +1 -0
- data/spec/helpers/asset_helper_spec.rb +4 -0
- data/staticmatic.gemspec +158 -0
- data/website/Gemfile +1 -0
- data/website/config/site.rb +17 -0
- data/website/site/docs/compass_integration.html +70 -0
- data/website/site/docs/getting_started.html +49 -0
- data/website/site/docs/helpers.html +22 -0
- data/website/site/images/bycurve21.gif +0 -0
- data/website/site/images/curve21.jpg +0 -0
- data/website/site/images/homepage-build.jpg +0 -0
- data/website/site/images/homepage-previewing.jpg +0 -0
- data/website/site/images/homepage-templating.jpg +0 -0
- data/website/site/stylesheets/ie.css +5 -0
- data/website/site/stylesheets/print.css +372 -0
- data/website/site/stylesheets/screen.css +488 -0
- data/website/src/helpers/content_helper.rb +10 -0
- data/website/src/layouts/default.haml +15 -0
- data/website/src/pages/development.haml +9 -0
- data/website/src/pages/docs/_menu.haml +4 -0
- data/website/src/pages/docs/_requires_prerelease.haml +4 -0
- data/website/src/pages/docs/compass_integration.haml +54 -0
- data/website/src/pages/docs/getting_started.haml +31 -0
- data/website/src/pages/docs/helpers.haml +1 -0
- data/website/src/pages/index.haml +27 -0
- data/website/src/stylesheets/_base.scss +43 -0
- data/website/src/stylesheets/_defaults.scss +260 -0
- data/website/src/stylesheets/ie.scss +10 -0
- data/website/src/stylesheets/print.scss +33 -0
- data/website/src/stylesheets/screen.scss +73 -0
- metadata +32 -17
- data/spec/sandbox/test_site/site/images/grid.png +0 -0
- data/spec/sandbox/test_site/site/index +0 -3
- data/spec/sandbox/test_site/site/layout_test +0 -1
- data/spec/sandbox/test_site/site/sub_folder/another_sub_folder/index.html +0 -1
- data/spec/sandbox/test_site/site/sub_folder/another_sub_folder/index.html.html +0 -1
- data/spec/sandbox/test_site/site/sub_folder/index.html +0 -1
- data/spec/sandbox/tmp/Rakefile +0 -2
- data/spec/sandbox/tmp/src/layouts/default.haml +0 -7
- data/spec/sandbox/tmp/src/layouts/site.haml +0 -7
- data/spec/sandbox/tmp/src/pages/index.haml +0 -1
- data/spec/sandbox/tmp/src/stylesheets/screen.sass +0 -4
data/Rakefile
CHANGED
@@ -15,8 +15,8 @@ begin
|
|
15
15
|
gem.authors = ["Stephen Bartholomew"]
|
16
16
|
gem.rubyforge_project = "staticmatic"
|
17
17
|
|
18
|
-
gem.files
|
19
|
-
|
18
|
+
gem.files.include "[A-Z]*", "{bin,lib,spec}/**/*"
|
19
|
+
gem.files.exclude "spec/sandbox/tmp", "spec/sandbox/test_site/site/*"
|
20
20
|
gem.add_dependency("haml", ">=2.0.0")
|
21
21
|
gem.add_dependency("rack", ">=1.0")
|
22
22
|
gem.add_dependency("compass", ">=0.10.0")
|
data/VERSION.yml
CHANGED
@@ -59,6 +59,7 @@ module StaticMatic
|
|
59
59
|
#specific files requested and in a specific order
|
60
60
|
params.each do |file|
|
61
61
|
if File.exist?(File.join(@staticmatic.src_dir, 'stylesheets', "#{file}.sass")) ||
|
62
|
+
File.exist?(File.join(@staticmatic.src_dir, 'stylesheets', "#{file}.scss")) ||
|
62
63
|
File.exist?(File.join(@staticmatic.site_dir, 'stylesheets', "#{file}.css"))
|
63
64
|
options[:href] = File.join(relative_path, "stylesheets", "#{file}.css")
|
64
65
|
output << tag(:link, options)
|
@@ -24,6 +24,10 @@ describe "Helpers:" do
|
|
24
24
|
it "should not link to partials" do
|
25
25
|
@links.should_not match(/\_forms.css/)
|
26
26
|
end
|
27
|
+
|
28
|
+
it "should setup links for specified stylesheets" do
|
29
|
+
stylesheets(:sassy).should match(/stylesheets\/sassy\.css/)
|
30
|
+
end
|
27
31
|
end
|
28
32
|
|
29
33
|
context "When using the stylesheet helper from a sub page" do
|
data/staticmatic.gemspec
ADDED
@@ -0,0 +1,158 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{staticmatic}
|
8
|
+
s.version = "0.11.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Stephen Bartholomew"]
|
12
|
+
s.date = %q{2010-11-15}
|
13
|
+
s.default_executable = %q{staticmatic}
|
14
|
+
s.description = %q{Lightweight Static Site Framework}
|
15
|
+
s.email = %q{steve@curve21.com}
|
16
|
+
s.executables = ["staticmatic"]
|
17
|
+
s.extra_rdoc_files = [
|
18
|
+
"LICENSE",
|
19
|
+
"README.markdown"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
"LICENSE",
|
23
|
+
"README.markdown",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION.yml",
|
26
|
+
"bin/staticmatic",
|
27
|
+
"lib/staticmatic.rb",
|
28
|
+
"lib/staticmatic/base.rb",
|
29
|
+
"lib/staticmatic/compass.rb",
|
30
|
+
"lib/staticmatic/compass/app_integration.rb",
|
31
|
+
"lib/staticmatic/compass/configuration_defaults.rb",
|
32
|
+
"lib/staticmatic/compass/installer.rb",
|
33
|
+
"lib/staticmatic/configuration.rb",
|
34
|
+
"lib/staticmatic/error.rb",
|
35
|
+
"lib/staticmatic/helpers.rb",
|
36
|
+
"lib/staticmatic/helpers/assets_helper.rb",
|
37
|
+
"lib/staticmatic/helpers/current_path_helper.rb",
|
38
|
+
"lib/staticmatic/helpers/form_helper.rb",
|
39
|
+
"lib/staticmatic/helpers/render_helper.rb",
|
40
|
+
"lib/staticmatic/helpers/tag_helper.rb",
|
41
|
+
"lib/staticmatic/helpers/url_helper.rb",
|
42
|
+
"lib/staticmatic/mixins/build.rb",
|
43
|
+
"lib/staticmatic/mixins/helpers.rb",
|
44
|
+
"lib/staticmatic/mixins/render.rb",
|
45
|
+
"lib/staticmatic/mixins/rescue.rb",
|
46
|
+
"lib/staticmatic/mixins/server.rb",
|
47
|
+
"lib/staticmatic/mixins/setup.rb",
|
48
|
+
"lib/staticmatic/server.rb",
|
49
|
+
"lib/staticmatic/template_error.rb",
|
50
|
+
"lib/staticmatic/templates/project/config/compass.rb",
|
51
|
+
"lib/staticmatic/templates/project/config/site.rb",
|
52
|
+
"lib/staticmatic/templates/project/src/layouts/default.haml",
|
53
|
+
"lib/staticmatic/templates/project/src/pages/index.haml",
|
54
|
+
"lib/staticmatic/templates/project/src/stylesheets/screen.sass",
|
55
|
+
"lib/staticmatic/templates/rescues/default.haml",
|
56
|
+
"lib/staticmatic/templates/rescues/template.haml",
|
57
|
+
"spec/base_spec.rb",
|
58
|
+
"spec/compass_integration_spec.rb",
|
59
|
+
"spec/helpers/asset_helper_spec.rb",
|
60
|
+
"spec/helpers/custom_helper_spec.rb",
|
61
|
+
"spec/render_spec.rb",
|
62
|
+
"spec/rescue_spec.rb",
|
63
|
+
"spec/sandbox/test_site/config/compass.rb",
|
64
|
+
"spec/sandbox/test_site/config/site.rb",
|
65
|
+
"spec/sandbox/test_site/src/helpers/application_helper.rb",
|
66
|
+
"spec/sandbox/test_site/src/layouts/alternate_layout.haml",
|
67
|
+
"spec/sandbox/test_site/src/layouts/default.haml",
|
68
|
+
"spec/sandbox/test_site/src/layouts/projects.haml",
|
69
|
+
"spec/sandbox/test_site/src/pages/hello_world.erb",
|
70
|
+
"spec/sandbox/test_site/src/pages/index.haml",
|
71
|
+
"spec/sandbox/test_site/src/pages/layout_test.haml",
|
72
|
+
"spec/sandbox/test_site/src/pages/page_one.haml",
|
73
|
+
"spec/sandbox/test_site/src/pages/page_two.haml",
|
74
|
+
"spec/sandbox/test_site/src/pages/page_with_error.haml",
|
75
|
+
"spec/sandbox/test_site/src/pages/page_with_partial_error.haml",
|
76
|
+
"spec/sandbox/test_site/src/partials/menu.haml",
|
77
|
+
"spec/sandbox/test_site/src/partials/partial_with_error.haml",
|
78
|
+
"spec/sandbox/test_site/src/stylesheets/application.sass",
|
79
|
+
"spec/sandbox/test_site/src/stylesheets/css_with_error.sass",
|
80
|
+
"spec/sandbox/test_site/src/stylesheets/nested/a_nested_stylesheet.sass",
|
81
|
+
"spec/sandbox/test_site/src/stylesheets/partials/_forms.sass",
|
82
|
+
"spec/sandbox/test_site/src/stylesheets/sassy.scss",
|
83
|
+
"spec/server_spec.rb",
|
84
|
+
"spec/setup_spec.rb",
|
85
|
+
"spec/spec_helper.rb",
|
86
|
+
"spec/template_error_spec.rb",
|
87
|
+
"staticmatic.gemspec",
|
88
|
+
"website/Gemfile",
|
89
|
+
"website/config/site.rb",
|
90
|
+
"website/site/docs/compass_integration.html",
|
91
|
+
"website/site/docs/getting_started.html",
|
92
|
+
"website/site/docs/helpers.html",
|
93
|
+
"website/site/images/bycurve21.gif",
|
94
|
+
"website/site/images/curve21.jpg",
|
95
|
+
"website/site/images/homepage-build.jpg",
|
96
|
+
"website/site/images/homepage-previewing.jpg",
|
97
|
+
"website/site/images/homepage-templating.jpg",
|
98
|
+
"website/site/stylesheets/ie.css",
|
99
|
+
"website/site/stylesheets/print.css",
|
100
|
+
"website/site/stylesheets/screen.css",
|
101
|
+
"website/src/helpers/content_helper.rb",
|
102
|
+
"website/src/layouts/default.haml",
|
103
|
+
"website/src/pages/development.haml",
|
104
|
+
"website/src/pages/docs/_menu.haml",
|
105
|
+
"website/src/pages/docs/_requires_prerelease.haml",
|
106
|
+
"website/src/pages/docs/compass_integration.haml",
|
107
|
+
"website/src/pages/docs/getting_started.haml",
|
108
|
+
"website/src/pages/docs/helpers.haml",
|
109
|
+
"website/src/pages/index.haml",
|
110
|
+
"website/src/stylesheets/_base.scss",
|
111
|
+
"website/src/stylesheets/_defaults.scss",
|
112
|
+
"website/src/stylesheets/ie.scss",
|
113
|
+
"website/src/stylesheets/print.scss",
|
114
|
+
"website/src/stylesheets/screen.scss"
|
115
|
+
]
|
116
|
+
s.homepage = %q{http://staticmatic.net}
|
117
|
+
s.require_paths = ["lib"]
|
118
|
+
s.rubyforge_project = %q{staticmatic}
|
119
|
+
s.rubygems_version = %q{1.3.6}
|
120
|
+
s.summary = %q{Lightweight Static Site Framework}
|
121
|
+
s.test_files = [
|
122
|
+
"spec/base_spec.rb",
|
123
|
+
"spec/compass_integration_spec.rb",
|
124
|
+
"spec/helpers/asset_helper_spec.rb",
|
125
|
+
"spec/helpers/custom_helper_spec.rb",
|
126
|
+
"spec/render_spec.rb",
|
127
|
+
"spec/rescue_spec.rb",
|
128
|
+
"spec/sandbox/test_site/config/compass.rb",
|
129
|
+
"spec/sandbox/test_site/config/site.rb",
|
130
|
+
"spec/sandbox/test_site/src/helpers/application_helper.rb",
|
131
|
+
"spec/sandbox/tmp/config/compass.rb",
|
132
|
+
"spec/sandbox/tmp/config/site.rb",
|
133
|
+
"spec/server_spec.rb",
|
134
|
+
"spec/setup_spec.rb",
|
135
|
+
"spec/spec_helper.rb",
|
136
|
+
"spec/template_error_spec.rb"
|
137
|
+
]
|
138
|
+
|
139
|
+
if s.respond_to? :specification_version then
|
140
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
141
|
+
s.specification_version = 3
|
142
|
+
|
143
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
144
|
+
s.add_runtime_dependency(%q<haml>, [">= 2.0.0"])
|
145
|
+
s.add_runtime_dependency(%q<rack>, [">= 1.0"])
|
146
|
+
s.add_runtime_dependency(%q<compass>, [">= 0.10.0"])
|
147
|
+
else
|
148
|
+
s.add_dependency(%q<haml>, [">= 2.0.0"])
|
149
|
+
s.add_dependency(%q<rack>, [">= 1.0"])
|
150
|
+
s.add_dependency(%q<compass>, [">= 0.10.0"])
|
151
|
+
end
|
152
|
+
else
|
153
|
+
s.add_dependency(%q<haml>, [">= 2.0.0"])
|
154
|
+
s.add_dependency(%q<rack>, [">= 1.0"])
|
155
|
+
s.add_dependency(%q<compass>, [">= 0.10.0"])
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
data/website/Gemfile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
gem
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# Default is 3000
|
2
|
+
# configuration.preview_server_port = 3000
|
3
|
+
|
4
|
+
# Default is localhost
|
5
|
+
# configuration.preview_server_host = "localhost"
|
6
|
+
|
7
|
+
# Default is true
|
8
|
+
# When false .html & index.html get stripped off generated urls
|
9
|
+
# configuration.use_extensions_for_page_links = true
|
10
|
+
|
11
|
+
# Default is an empty hash
|
12
|
+
# configuration.sass_options = {}
|
13
|
+
|
14
|
+
# Default is an empty hash
|
15
|
+
# http://haml-lang.com/docs/yardoc/file.HAML_REFERENCE.html#options
|
16
|
+
# configuration.haml_options = {}
|
17
|
+
require "susy"
|
@@ -0,0 +1,70 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>StaticMatic Documentation</title>
|
5
|
+
<link href='/stylesheets/screen.css' media='screen' rel='stylesheet' />
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<div id='page'>
|
9
|
+
<div id='header'>
|
10
|
+
<div id='logo'>StaticMatic</div>
|
11
|
+
<div id='menu'>
|
12
|
+
<ul>
|
13
|
+
<li><a href="/">Home</a></li>
|
14
|
+
<li><a href="/docs/getting_started.html">Documentation</a></li>
|
15
|
+
<li><a href="../development.html">Development</a></li>
|
16
|
+
</ul>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
<div id='content'>
|
20
|
+
<h1>Compass Integration</h1>
|
21
|
+
<p class='notice'>
|
22
|
+
You'll need to install the pre-release version of StaticMatic to use this feature:
|
23
|
+
<kbd>gem install staticmatic --pre</kbd>
|
24
|
+
</p>
|
25
|
+
<ul><li><a href="#what_is_compass">What is Compass?</a></li><li><a href="#using_compass_with_staticmatic">Using Compass with StaticMatic</a></li><li><a href="#using_compasss_css_frameworks">Using Compass's CSS Frameworks</a></li></ul>
|
26
|
+
<p><a id="what_is_compass"></a></p>
|
27
|
+
|
28
|
+
<h2>What is Compass?</h2>
|
29
|
+
|
30
|
+
<p>Compass is simply awesome. It gives you a access huge amount of stylesheet libraries that take much of the duplication out of authoring stylesheets.</p>
|
31
|
+
|
32
|
+
<p>Check out the code for adding borders to a box:</p>
|
33
|
+
|
34
|
+
<pre><code>.box {
 @include border-radius(5px)
}
</code></pre>
|
35
|
+
|
36
|
+
<p>This compiles to:</p>
|
37
|
+
|
38
|
+
<pre><code>.box {
 -moz-border-radius: 5px;
 -webkit-border-radius: 5px;
 -o-border-radius: 5px;
 -ms-border-radius: 5px;
 -khtml-border-radius: 5px;
 border-radius: 5px;
}
</code></pre>
|
39
|
+
|
40
|
+
<p>Compass also comes with a port of the popular <a href="http://www.blueprintcss.org/">Blueprint</a> CSS framework and has many plugin frameworks such as <a href="http://susy.oddbird.net/">Susy</a> & <a href="http://960.gs/">960.gs</a>.</p>
|
41
|
+
|
42
|
+
<p><a id="using_compass_with_staticmatic"></a></p>
|
43
|
+
|
44
|
+
<h2>Using Compass with StaticMatic</h2>
|
45
|
+
|
46
|
+
<p>StaticMatic works with Compass out of the box. You can start using all the great features Compass provides (<a href="http://compass-style.org/docs/reference/compass/">read about Compass's core framework here</a>).</p>
|
47
|
+
|
48
|
+
<p>It's also simple to customize the way Compass work. When you <a href="getting_started.html">setup your project</a>, you'll have a file called <kbd>config/compass.rb</kbd>. You can use this file to configure Compass:</p>
|
49
|
+
|
50
|
+
<pre><code>output_style = :compressed
</code></pre>
|
51
|
+
|
52
|
+
<p>For a run down of what you can configure in <kbd>config/compass.rb</kbd>, see <a href="http://compass-style.org/docs/tutorials/configuration-reference/">The Compass Configuration Reference</a></p>
|
53
|
+
|
54
|
+
<p><a id="using_compasss_css_frameworks"></a></p>
|
55
|
+
|
56
|
+
<h2>Using Compass's CSS Frameworks</h2>
|
57
|
+
|
58
|
+
<p>Compass's command line tool can generate CSS framework base files for you. This works seemlessly with StaticMatic.</p>
|
59
|
+
|
60
|
+
<p>For example, if you'd like to use the Blueprint framework for your project simply run:</p>
|
61
|
+
|
62
|
+
<pre><code>> compass install blueprint
</code></pre>
|
63
|
+
|
64
|
+
<p>in your project directory. Compass will then install all of the base stylesheets you need to get started.</p>
|
65
|
+
|
66
|
+
<p><a href="http://compass-style.org/docs/tutorials/command-line/">Read more about Compass's command line tool here</a>.</p>
|
67
|
+
</div>
|
68
|
+
</div>
|
69
|
+
</body>
|
70
|
+
</html>
|
@@ -0,0 +1,49 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>StaticMatic Documentation</title>
|
5
|
+
<link href='/stylesheets/screen.css' media='screen' rel='stylesheet' />
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<div id='page'>
|
9
|
+
<div id='header'>
|
10
|
+
<div id='logo'>StaticMatic</div>
|
11
|
+
<div id='menu'>
|
12
|
+
<ul>
|
13
|
+
<li><a href="/">Home</a></li>
|
14
|
+
<li><a href="/docs/getting_started.html">Documentation</a></li>
|
15
|
+
<li><a href="../development.html">Development</a></li>
|
16
|
+
</ul>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
<div id='content'>
|
20
|
+
<h1>Getting Started</h1>
|
21
|
+
<p>StaticMatic is designed to be quick & easy to get up and running.</p>
|
22
|
+
|
23
|
+
<h2>Installing</h2>
|
24
|
+
|
25
|
+
<p>You'll need to have (Ruby)[http://ruby-lang.org] installed along with Ruby's package manager (RubyGems)[http://rubygems.org/pages/download]. If you're using OSX or Linux, chances are you're ready to go. If you're using Windows, you may need to install Rubyy using one of the packages found (here)[http://www.ruby-lang.org/en/downloads/].</p>
|
26
|
+
|
27
|
+
<p>To install StaticMatic, open a terminal window and run:</p>
|
28
|
+
|
29
|
+
<pre><code>> gem install staticmatic
</code></pre>
|
30
|
+
|
31
|
+
<p>If everything is set up correctly, you should now be able to run:</p>
|
32
|
+
|
33
|
+
<pre><code>> staticmatic -v
</code></pre>
|
34
|
+
|
35
|
+
<p>and see a version number.</p>
|
36
|
+
|
37
|
+
<p>Congratulations - you're ready to start creating your first StaticMatic site!</p>
|
38
|
+
|
39
|
+
<h2>Creating a site</h2>
|
40
|
+
|
41
|
+
<p>Open a terminal and run:</p>
|
42
|
+
|
43
|
+
<pre><code>> staticmatic setup my-first-site
</code></pre>
|
44
|
+
|
45
|
+
<p>and StaticMatic will create a set of files for you to get started.</p>
|
46
|
+
</div>
|
47
|
+
</div>
|
48
|
+
</body>
|
49
|
+
</html>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>StaticMatic Documentation</title>
|
5
|
+
<link href='/stylesheets/screen.css' media='screen' rel='stylesheet' />
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<div id='page'>
|
9
|
+
<div id='header'>
|
10
|
+
<div id='logo'>StaticMatic</div>
|
11
|
+
<div id='menu'>
|
12
|
+
<ul>
|
13
|
+
<li><a href="/">Home</a></li>
|
14
|
+
<li><a href="/docs/getting_started.html">Documentation</a></li>
|
15
|
+
<li><a href="../development.html">Development</a></li>
|
16
|
+
</ul>
|
17
|
+
</div>
|
18
|
+
</div>
|
19
|
+
<div id='content'><h1>Helpers</h1></div>
|
20
|
+
</div>
|
21
|
+
</body>
|
22
|
+
</html>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,372 @@
|
|
1
|
+
/* Welcome to Susy. Use this file to define print styles.
|
2
|
+
* Import this file using the following HTML or equivalent:
|
3
|
+
* <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" /> */
|
4
|
+
/* Reset --------------------------------------------------------------*/
|
5
|
+
/* line 14, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
6
|
+
html, body, div, span, applet, object, iframe,
|
7
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
8
|
+
a, abbr, acronym, address, big, cite, code,
|
9
|
+
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
10
|
+
small, strike, strong, sub, sup, tt, var,
|
11
|
+
dl, dt, dd, ol, ul, li,
|
12
|
+
fieldset, form, label, legend,
|
13
|
+
table, caption, tbody, tfoot, thead, tr, th, td {
|
14
|
+
margin: 0;
|
15
|
+
padding: 0;
|
16
|
+
border: 0;
|
17
|
+
outline: 0;
|
18
|
+
font-weight: inherit;
|
19
|
+
font-style: inherit;
|
20
|
+
font-size: 100%;
|
21
|
+
font-family: inherit;
|
22
|
+
vertical-align: baseline;
|
23
|
+
}
|
24
|
+
|
25
|
+
/* line 17, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
26
|
+
body {
|
27
|
+
line-height: 1;
|
28
|
+
color: black;
|
29
|
+
background: white;
|
30
|
+
}
|
31
|
+
|
32
|
+
/* line 19, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
33
|
+
ol, ul {
|
34
|
+
list-style: none;
|
35
|
+
}
|
36
|
+
|
37
|
+
/* line 21, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
38
|
+
table {
|
39
|
+
border-collapse: separate;
|
40
|
+
border-spacing: 0;
|
41
|
+
vertical-align: middle;
|
42
|
+
}
|
43
|
+
|
44
|
+
/* line 23, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
45
|
+
caption, th, td {
|
46
|
+
text-align: left;
|
47
|
+
font-weight: normal;
|
48
|
+
vertical-align: middle;
|
49
|
+
}
|
50
|
+
|
51
|
+
/* line 25, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
52
|
+
q, blockquote {
|
53
|
+
quotes: "" "";
|
54
|
+
}
|
55
|
+
/* line 96, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
56
|
+
q:before, q:after, blockquote:before, blockquote:after {
|
57
|
+
content: "";
|
58
|
+
}
|
59
|
+
|
60
|
+
/* line 27, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
61
|
+
a img {
|
62
|
+
border: none;
|
63
|
+
}
|
64
|
+
|
65
|
+
/* HTML5 Reset --------------------------------------------------------------*/
|
66
|
+
/* line 107, /Users/stephenbartholomew/.rvm/gems/ruby-1.8.7-p249/gems/compass-0.10.2/frameworks/compass/stylesheets/compass/reset/_utilities.scss */
|
67
|
+
section, article, aside, header, footer, nav, dialog, figure {
|
68
|
+
display: block;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* Body --------------------------------------------------------------*/
|
72
|
+
/* line 13, website/src/stylesheets/./_defaults.scss */
|
73
|
+
body {
|
74
|
+
font-family: 'Adobe Caslon Pro', Caslon, Baskerville, Palatino, 'Palatino Linotype', "Hoefler Text", Garamond, "URW Palladio L", "Book Antiqua", Georgia, serif;
|
75
|
+
color: #4c4c4c;
|
76
|
+
}
|
77
|
+
|
78
|
+
/* Links --------------------------------------------------------------*/
|
79
|
+
/* line 21, website/src/stylesheets/./_defaults.scss */
|
80
|
+
a:link, a:visited {
|
81
|
+
color: #005498;
|
82
|
+
}
|
83
|
+
/* line 24, website/src/stylesheets/./_defaults.scss */
|
84
|
+
a:focus, a:hover, a:active {
|
85
|
+
color: #00467f;
|
86
|
+
text-decoration: none;
|
87
|
+
}
|
88
|
+
/* line 28, website/src/stylesheets/./_defaults.scss */
|
89
|
+
a img {
|
90
|
+
border: none;
|
91
|
+
}
|
92
|
+
|
93
|
+
/* Headings --------------------------------------------------------------*/
|
94
|
+
/* line 35, website/src/stylesheets/./_defaults.scss */
|
95
|
+
h1, h2, h3, h4, h5, h6 {
|
96
|
+
font-weight: normal;
|
97
|
+
}
|
98
|
+
/* line 37, website/src/stylesheets/./_defaults.scss */
|
99
|
+
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
|
100
|
+
margin: 0;
|
101
|
+
}
|
102
|
+
|
103
|
+
/* line 42, website/src/stylesheets/./_defaults.scss */
|
104
|
+
h1 {
|
105
|
+
font-size: 2em;
|
106
|
+
line-height: 1.5em;
|
107
|
+
margin-bottom: 0.75em;
|
108
|
+
}
|
109
|
+
|
110
|
+
/* line 47, website/src/stylesheets/./_defaults.scss */
|
111
|
+
h2 {
|
112
|
+
font-size: 1.5em;
|
113
|
+
line-height: 1em;
|
114
|
+
margin-bottom: 1em;
|
115
|
+
}
|
116
|
+
|
117
|
+
/* line 52, website/src/stylesheets/./_defaults.scss */
|
118
|
+
h3 {
|
119
|
+
font-size: 1.125em;
|
120
|
+
line-height: 1.333em;
|
121
|
+
margin-bottom: 1.333em;
|
122
|
+
}
|
123
|
+
|
124
|
+
/* line 57, website/src/stylesheets/./_defaults.scss */
|
125
|
+
h4 {
|
126
|
+
font-size: 1em;
|
127
|
+
line-height: 1.5em;
|
128
|
+
margin-bottom: 1.5em;
|
129
|
+
}
|
130
|
+
|
131
|
+
/* line 62, website/src/stylesheets/./_defaults.scss */
|
132
|
+
h5, h6 {
|
133
|
+
margin-bottom: 1.5em;
|
134
|
+
font-weight: bold;
|
135
|
+
}
|
136
|
+
|
137
|
+
/* Text --------------------------------------------------------------*/
|
138
|
+
/* line 69, website/src/stylesheets/./_defaults.scss */
|
139
|
+
cite, em, dfn {
|
140
|
+
font-style: italic;
|
141
|
+
}
|
142
|
+
|
143
|
+
/* line 73, website/src/stylesheets/./_defaults.scss */
|
144
|
+
strong, dfn {
|
145
|
+
font-weight: bold;
|
146
|
+
}
|
147
|
+
|
148
|
+
/* line 77, website/src/stylesheets/./_defaults.scss */
|
149
|
+
sup, sub {
|
150
|
+
line-height: 0;
|
151
|
+
}
|
152
|
+
|
153
|
+
/* line 81, website/src/stylesheets/./_defaults.scss */
|
154
|
+
abbr, acronym {
|
155
|
+
border-bottom: 1px dotted;
|
156
|
+
cursor: help;
|
157
|
+
}
|
158
|
+
|
159
|
+
/* line 86, website/src/stylesheets/./_defaults.scss */
|
160
|
+
address {
|
161
|
+
margin-bottom: 1.5em;
|
162
|
+
font-style: italic;
|
163
|
+
}
|
164
|
+
|
165
|
+
/* line 91, website/src/stylesheets/./_defaults.scss */
|
166
|
+
ins {
|
167
|
+
text-decoration: underline;
|
168
|
+
}
|
169
|
+
|
170
|
+
/* line 95, website/src/stylesheets/./_defaults.scss */
|
171
|
+
del {
|
172
|
+
text-decoration: line-through;
|
173
|
+
}
|
174
|
+
|
175
|
+
/* line 99, website/src/stylesheets/./_defaults.scss */
|
176
|
+
pre, code, tt, kbd {
|
177
|
+
font-family: Consolas, Menlo, Monaco, "Lucida Console", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace, serif;
|
178
|
+
font-size: 0.9em;
|
179
|
+
}
|
180
|
+
|
181
|
+
/* line 111, website/src/stylesheets/./_defaults.scss */
|
182
|
+
pre {
|
183
|
+
white-space: pre;
|
184
|
+
}
|
185
|
+
|
186
|
+
/* line 115, website/src/stylesheets/./_defaults.scss */
|
187
|
+
code {
|
188
|
+
display: block;
|
189
|
+
}
|
190
|
+
|
191
|
+
/* line 119, website/src/stylesheets/./_defaults.scss */
|
192
|
+
q {
|
193
|
+
font-style: italic;
|
194
|
+
}
|
195
|
+
/* line 121, website/src/stylesheets/./_defaults.scss */
|
196
|
+
q em {
|
197
|
+
font-style: normal;
|
198
|
+
}
|
199
|
+
|
200
|
+
/* line 126, website/src/stylesheets/./_defaults.scss */
|
201
|
+
p {
|
202
|
+
margin-bottom: 1.5em;
|
203
|
+
}
|
204
|
+
|
205
|
+
/* line 130, website/src/stylesheets/./_defaults.scss */
|
206
|
+
blockquote, q {
|
207
|
+
quotes: "" "";
|
208
|
+
}
|
209
|
+
|
210
|
+
/* line 134, website/src/stylesheets/./_defaults.scss */
|
211
|
+
blockquote {
|
212
|
+
margin: 1.5em;
|
213
|
+
margin-left: -1.5em;
|
214
|
+
padding-left: 1.5em;
|
215
|
+
border-left: 1px solid;
|
216
|
+
font-family: 'Adobe Caslon Pro', Caslon, Baskerville, Palatino, 'Palatino Linotype', "Hoefler Text", Garamond, "URW Palladio L", "Book Antiqua", Georgia, serif;
|
217
|
+
font-style: italic;
|
218
|
+
}
|
219
|
+
|
220
|
+
/* line 145, website/src/stylesheets/./_defaults.scss */
|
221
|
+
blockquote:before, blockquote:after, q:before, q:after {
|
222
|
+
content: "";
|
223
|
+
}
|
224
|
+
|
225
|
+
/* Replaced --------------------------------------------------------------*/
|
226
|
+
/* line 152, website/src/stylesheets/./_defaults.scss */
|
227
|
+
img {
|
228
|
+
vertical-align: bottom;
|
229
|
+
}
|
230
|
+
|
231
|
+
/* Lists --------------------------------------------------------------*/
|
232
|
+
/* line 173, website/src/stylesheets/./_defaults.scss */
|
233
|
+
ol {
|
234
|
+
margin: 0 1.5em 1.5em 0;
|
235
|
+
list-style: decimal;
|
236
|
+
}
|
237
|
+
|
238
|
+
/* line 177, website/src/stylesheets/./_defaults.scss */
|
239
|
+
ul {
|
240
|
+
margin: 0 1.5em 1.5em 0;
|
241
|
+
list-style: disc;
|
242
|
+
}
|
243
|
+
|
244
|
+
/* line 182, website/src/stylesheets/./_defaults.scss */
|
245
|
+
li ul, li ol {
|
246
|
+
list-style-type: circle;
|
247
|
+
margin: 0 1.5em 0.75em;
|
248
|
+
}
|
249
|
+
|
250
|
+
/* line 188, website/src/stylesheets/./_defaults.scss */
|
251
|
+
dl {
|
252
|
+
margin-bottom: 1.5em;
|
253
|
+
border-top-style: solid;
|
254
|
+
border-top-width: 0.063em;
|
255
|
+
padding-top: 1.438em;
|
256
|
+
}
|
257
|
+
/* line 191, website/src/stylesheets/./_defaults.scss */
|
258
|
+
dl dt {
|
259
|
+
font-size: 1.125em;
|
260
|
+
line-height: 1.333em;
|
261
|
+
margin-bottom: 0.667em;
|
262
|
+
}
|
263
|
+
|
264
|
+
/* line 197, website/src/stylesheets/./_defaults.scss */
|
265
|
+
dd {
|
266
|
+
margin-bottom: 1.5em;
|
267
|
+
border-bottom-style: solid;
|
268
|
+
border-bottom-width: 0.063em;
|
269
|
+
padding-bottom: 1.438em;
|
270
|
+
}
|
271
|
+
|
272
|
+
/* Tables --------------------------------------------------------------*/
|
273
|
+
/* tables still need 'cellspacing="0"' in the markup */
|
274
|
+
/* line 205, website/src/stylesheets/./_defaults.scss */
|
275
|
+
table {
|
276
|
+
margin-bottom: 1.5em;
|
277
|
+
width: 100%;
|
278
|
+
border-collapse: separate;
|
279
|
+
border-spacing: 0;
|
280
|
+
}
|
281
|
+
|
282
|
+
/* line 212, website/src/stylesheets/./_defaults.scss */
|
283
|
+
table, td, th {
|
284
|
+
vertical-align: top;
|
285
|
+
}
|
286
|
+
|
287
|
+
/* line 216, website/src/stylesheets/./_defaults.scss */
|
288
|
+
th, thead th {
|
289
|
+
font-weight: bold;
|
290
|
+
}
|
291
|
+
|
292
|
+
/* line 220, website/src/stylesheets/./_defaults.scss */
|
293
|
+
th, td, caption {
|
294
|
+
padding: 0.75em;
|
295
|
+
text-align: left;
|
296
|
+
font-weight: normal;
|
297
|
+
}
|
298
|
+
|
299
|
+
/* line 226, website/src/stylesheets/./_defaults.scss */
|
300
|
+
th, td {
|
301
|
+
border-bottom-style: solid;
|
302
|
+
border-bottom-width: 0.063em;
|
303
|
+
padding-bottom: 0.688em;
|
304
|
+
}
|
305
|
+
|
306
|
+
/* line 230, website/src/stylesheets/./_defaults.scss */
|
307
|
+
tfoot {
|
308
|
+
font-size: 0.875em;
|
309
|
+
line-height: 1.714em;
|
310
|
+
}
|
311
|
+
|
312
|
+
/* line 234, website/src/stylesheets/./_defaults.scss */
|
313
|
+
caption {
|
314
|
+
font-size: 1.5em;
|
315
|
+
line-height: 1em;
|
316
|
+
margin-bottom: 1em;
|
317
|
+
}
|
318
|
+
|
319
|
+
/* Forms --------------------------------------------------------------*/
|
320
|
+
/* line 241, website/src/stylesheets/./_defaults.scss */
|
321
|
+
fieldset {
|
322
|
+
margin-bottom: 1.5em;
|
323
|
+
border-style: solid;
|
324
|
+
border-width: 0.063em;
|
325
|
+
padding: 1.438em;
|
326
|
+
}
|
327
|
+
|
328
|
+
/* line 246, website/src/stylesheets/./_defaults.scss */
|
329
|
+
legend {
|
330
|
+
font-size: 1.125em;
|
331
|
+
line-height: 1.333em;
|
332
|
+
font-weight: bold;
|
333
|
+
}
|
334
|
+
|
335
|
+
/* line 251, website/src/stylesheets/./_defaults.scss */
|
336
|
+
label {
|
337
|
+
font-weight: bold;
|
338
|
+
}
|
339
|
+
|
340
|
+
/* line 255, website/src/stylesheets/./_defaults.scss */
|
341
|
+
textarea, input:not([type="radio"]) {
|
342
|
+
-moz-box-sizing: border-box;
|
343
|
+
-webkit-box-sizing: border-box;
|
344
|
+
-ms-box-sizing: border-box;
|
345
|
+
box-sizing: border-box;
|
346
|
+
width: 100%;
|
347
|
+
}
|
348
|
+
|
349
|
+
/* Print Defaults --------------------------------------------------------------*/
|
350
|
+
/* line 12 */
|
351
|
+
nav {
|
352
|
+
display: none;
|
353
|
+
}
|
354
|
+
|
355
|
+
/* line 16 */
|
356
|
+
* {
|
357
|
+
float: none !important;
|
358
|
+
background: none;
|
359
|
+
}
|
360
|
+
|
361
|
+
/* line 21 */
|
362
|
+
body {
|
363
|
+
font-family: 'Adobe Caslon Pro', Caslon, Baskerville, Palatino, 'Palatino Linotype', "Hoefler Text", Garamond, "URW Palladio L", "Book Antiqua", Georgia, serif;
|
364
|
+
font-size: 12pt;
|
365
|
+
background: white;
|
366
|
+
color: black;
|
367
|
+
}
|
368
|
+
|
369
|
+
/* line 27 */
|
370
|
+
a:link:after, a:visited:after {
|
371
|
+
content: " (" attr(href) ") ";
|
372
|
+
}
|