webby 0.7.1 → 0.7.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +15 -0
- data/Manifest.txt +21 -15
- data/Rakefile +4 -2
- data/data/content/css/blueprint/compressed/print.css +76 -0
- data/data/content/css/blueprint/compressed/screen.css +696 -0
- data/data/content/css/blueprint/lib/forms.css +45 -0
- data/data/content/css/blueprint/lib/grid.css +95 -51
- data/data/content/css/blueprint/lib/grid.png +0 -0
- data/data/content/css/blueprint/lib/ie.css +30 -0
- data/data/content/css/blueprint/lib/reset.css +11 -12
- data/data/content/css/blueprint/lib/typography.css +69 -114
- data/data/content/css/blueprint/plugins/buttons/Readme +31 -0
- data/data/content/css/blueprint/{lib → plugins/buttons}/buttons.css +17 -32
- data/data/content/css/blueprint/{lib/img → plugins/buttons}/icons/cross.png +0 -0
- data/data/content/css/blueprint/{lib/img/icons/textfield_key.png → plugins/buttons/icons/key.png} +0 -0
- data/data/content/css/blueprint/{lib/img → plugins/buttons}/icons/tick.png +0 -0
- data/data/content/css/blueprint/plugins/css-classes/Readme +14 -0
- data/data/content/css/blueprint/plugins/css-classes/css-classes.css +24 -0
- data/data/content/css/blueprint/plugins/fancy-type/Readme +22 -0
- data/data/content/css/blueprint/plugins/fancy-type/fancy-type-compressed.css +5 -0
- data/data/content/css/blueprint/plugins/fancy-type/fancy-type.css +74 -0
- data/data/content/css/blueprint/print.css +35 -46
- data/data/content/css/blueprint/screen.css +10 -18
- data/data/content/css/site.css +8 -0
- data/data/content/index.txt +2 -2
- data/data/layouts/default.rhtml +4 -4
- data/data/templates/page.erb +3 -3
- data/examples/webby/content/css/blueprint/print.css +58 -61
- data/examples/webby/content/css/blueprint/screen.css +696 -30
- data/examples/webby/content/css/site.css +63 -45
- data/examples/webby/content/index.txt +2 -2
- data/examples/webby/content/manual.txt +366 -15
- data/examples/webby/content/script/jquery.corner.js +152 -0
- data/examples/webby/content/script/jquery.js +31 -0
- data/examples/webby/content/tips_and_tricks.txt +2 -2
- data/examples/webby/content/tutorial.txt +5 -5
- data/examples/webby/layouts/default.rhtml +19 -10
- data/examples/webby/templates/page.erb +5 -3
- data/lib/webby.rb +25 -3
- data/lib/webby/filters/basepath.rb +97 -0
- data/lib/webby/filters/coderay.rb +2 -2
- data/lib/webby/filters/graphviz.rb +10 -10
- data/lib/webby/filters/haml.rb +3 -7
- data/lib/webby/filters/outline.rb +194 -0
- data/lib/webby/helpers/tag_helper.rb +14 -13
- data/lib/webby/helpers/url_helper.rb +84 -13
- data/lib/webby/pages_db.rb +15 -8
- data/lib/webby/renderer.rb +2 -2
- data/lib/webby/resource.rb +6 -6
- data/lib/webby/utils.rb +17 -1
- data/lib/webby/webby_task.rb +20 -7
- data/tasks/annotations.rake +1 -1
- data/tasks/doc.rake +2 -2
- data/tasks/gem.rake +3 -3
- data/tasks/manifest.rake +5 -2
- data/tasks/post_load.rake +18 -0
- data/tasks/rubyforge.rake +1 -1
- data/tasks/setup.rb +56 -11
- data/tasks/spec.rake +4 -1
- data/tasks/svn.rake +44 -0
- data/tasks/website.rake +2 -2
- metadata +33 -18
- data/data/content/css/blueprint/lib/compressed.css +0 -137
- data/data/content/css/blueprint/lib/img/grid.png +0 -0
- data/examples/webby/content/css/blueprint/lib/buttons.css +0 -112
- data/examples/webby/content/css/blueprint/lib/compressed.css +0 -137
- data/examples/webby/content/css/blueprint/lib/grid.css +0 -149
- data/examples/webby/content/css/blueprint/lib/img/grid.png +0 -0
- data/examples/webby/content/css/blueprint/lib/img/icons/cross.png +0 -0
- data/examples/webby/content/css/blueprint/lib/img/icons/textfield_key.png +0 -0
- data/examples/webby/content/css/blueprint/lib/img/icons/tick.png +0 -0
- data/examples/webby/content/css/blueprint/lib/reset.css +0 -40
- data/examples/webby/content/css/blueprint/lib/typography.css +0 -161
data/tasks/website.rake
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# $Id: website.rake
|
1
|
+
# $Id: website.rake 115 2008-01-27 03:36:45Z tim_pease $
|
2
2
|
|
3
3
|
namespace :website do
|
4
4
|
|
@@ -7,7 +7,7 @@ namespace :website do
|
|
7
7
|
begin
|
8
8
|
olddir = pwd
|
9
9
|
chdir 'examples/webby'
|
10
|
-
sh 'rake
|
10
|
+
sh 'rake rebuild BASE="http://webby.rubyforge.org"'
|
11
11
|
cp_r 'output/.', olddir + '/doc'
|
12
12
|
ensure
|
13
13
|
chdir olddir
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: webby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Pease
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-
|
12
|
+
date: 2008-02-02 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -55,7 +55,16 @@ dependencies:
|
|
55
55
|
requirements:
|
56
56
|
- - ">="
|
57
57
|
- !ruby/object:Gem::Version
|
58
|
-
version: 1.1.
|
58
|
+
version: 1.1.3
|
59
|
+
version:
|
60
|
+
- !ruby/object:Gem::Dependency
|
61
|
+
name: RedCloth
|
62
|
+
version_requirement:
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ">="
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: 3.0.4
|
59
68
|
version:
|
60
69
|
description: Webby is a super fantastic little website management system. It would be called a _content management system_ if it were a bigger kid. But, it's just a runt with a special knack for transforming text. And that's really all it does - manages the legwork of turning text into something else, an *ASCII Alchemist* if you will.
|
61
70
|
email: tim.pease@gmail.com
|
@@ -76,15 +85,24 @@ files:
|
|
76
85
|
- data/Rakefile
|
77
86
|
- data/content/css/blueprint/License.txt
|
78
87
|
- data/content/css/blueprint/Readme.txt
|
79
|
-
- data/content/css/blueprint/
|
80
|
-
- data/content/css/blueprint/
|
88
|
+
- data/content/css/blueprint/compressed/print.css
|
89
|
+
- data/content/css/blueprint/compressed/screen.css
|
90
|
+
- data/content/css/blueprint/lib/forms.css
|
81
91
|
- data/content/css/blueprint/lib/grid.css
|
82
|
-
- data/content/css/blueprint/lib/
|
83
|
-
- data/content/css/blueprint/lib/
|
84
|
-
- data/content/css/blueprint/lib/img/icons/textfield_key.png
|
85
|
-
- data/content/css/blueprint/lib/img/icons/tick.png
|
92
|
+
- data/content/css/blueprint/lib/grid.png
|
93
|
+
- data/content/css/blueprint/lib/ie.css
|
86
94
|
- data/content/css/blueprint/lib/reset.css
|
87
95
|
- data/content/css/blueprint/lib/typography.css
|
96
|
+
- data/content/css/blueprint/plugins/buttons/Readme
|
97
|
+
- data/content/css/blueprint/plugins/buttons/buttons.css
|
98
|
+
- data/content/css/blueprint/plugins/buttons/icons/cross.png
|
99
|
+
- data/content/css/blueprint/plugins/buttons/icons/key.png
|
100
|
+
- data/content/css/blueprint/plugins/buttons/icons/tick.png
|
101
|
+
- data/content/css/blueprint/plugins/css-classes/Readme
|
102
|
+
- data/content/css/blueprint/plugins/css-classes/css-classes.css
|
103
|
+
- data/content/css/blueprint/plugins/fancy-type/Readme
|
104
|
+
- data/content/css/blueprint/plugins/fancy-type/fancy-type-compressed.css
|
105
|
+
- data/content/css/blueprint/plugins/fancy-type/fancy-type.css
|
88
106
|
- data/content/css/blueprint/print.css
|
89
107
|
- data/content/css/blueprint/screen.css
|
90
108
|
- data/content/css/coderay.css
|
@@ -98,15 +116,6 @@ files:
|
|
98
116
|
- data/tasks/setup.rb
|
99
117
|
- data/templates/page.erb
|
100
118
|
- examples/webby/Rakefile
|
101
|
-
- examples/webby/content/css/blueprint/lib/buttons.css
|
102
|
-
- examples/webby/content/css/blueprint/lib/compressed.css
|
103
|
-
- examples/webby/content/css/blueprint/lib/grid.css
|
104
|
-
- examples/webby/content/css/blueprint/lib/img/grid.png
|
105
|
-
- examples/webby/content/css/blueprint/lib/img/icons/cross.png
|
106
|
-
- examples/webby/content/css/blueprint/lib/img/icons/textfield_key.png
|
107
|
-
- examples/webby/content/css/blueprint/lib/img/icons/tick.png
|
108
|
-
- examples/webby/content/css/blueprint/lib/reset.css
|
109
|
-
- examples/webby/content/css/blueprint/lib/typography.css
|
110
119
|
- examples/webby/content/css/blueprint/print.css
|
111
120
|
- examples/webby/content/css/blueprint/screen.css
|
112
121
|
- examples/webby/content/css/coderay.css
|
@@ -115,6 +124,8 @@ files:
|
|
115
124
|
- examples/webby/content/index.txt
|
116
125
|
- examples/webby/content/manual.txt
|
117
126
|
- examples/webby/content/robots.txt
|
127
|
+
- examples/webby/content/script/jquery.corner.js
|
128
|
+
- examples/webby/content/script/jquery.js
|
118
129
|
- examples/webby/content/tips_and_tricks.txt
|
119
130
|
- examples/webby/content/tutorial.txt
|
120
131
|
- examples/webby/layouts/default.rhtml
|
@@ -129,11 +140,13 @@ files:
|
|
129
140
|
- lib/webby/builder.rb
|
130
141
|
- lib/webby/file.rb
|
131
142
|
- lib/webby/filters.rb
|
143
|
+
- lib/webby/filters/basepath.rb
|
132
144
|
- lib/webby/filters/coderay.rb
|
133
145
|
- lib/webby/filters/erb.rb
|
134
146
|
- lib/webby/filters/graphviz.rb
|
135
147
|
- lib/webby/filters/haml.rb
|
136
148
|
- lib/webby/filters/markdown.rb
|
149
|
+
- lib/webby/filters/outline.rb
|
137
150
|
- lib/webby/filters/sass.rb
|
138
151
|
- lib/webby/filters/textile.rb
|
139
152
|
- lib/webby/filters/tidy.rb
|
@@ -154,9 +167,11 @@ files:
|
|
154
167
|
- tasks/doc.rake
|
155
168
|
- tasks/gem.rake
|
156
169
|
- tasks/manifest.rake
|
170
|
+
- tasks/post_load.rake
|
157
171
|
- tasks/rubyforge.rake
|
158
172
|
- tasks/setup.rb
|
159
173
|
- tasks/spec.rake
|
174
|
+
- tasks/svn.rake
|
160
175
|
- tasks/website.rake
|
161
176
|
has_rdoc: true
|
162
177
|
homepage: http://webby.rubyforge.org/
|
@@ -1,137 +0,0 @@
|
|
1
|
-
/* Blueprint Compressed Version */
|
2
|
-
|
3
|
-
|
4
|
-
/* reset.css */
|
5
|
-
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,font,img,ins,kbd,q,s,samp, strike,strong,sub,sup,tt,var, dl,dt,dd,ol,ul,li, fieldset,form,label,legend, table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}
|
6
|
-
body{line-height:1;color:#333;background:white;}
|
7
|
-
table{border-collapse:separate;border-spacing:0;}
|
8
|
-
caption,th,td{text-align:left;font-weight:normal;}
|
9
|
-
blockquote:before,blockquote:after,q:before,q:after{content:"";}
|
10
|
-
blockquote,q{quotes:"" "";}
|
11
|
-
|
12
|
-
|
13
|
-
/* typography.css */
|
14
|
-
body{font-size:12px;line-height:18px;}
|
15
|
-
h1,h2,h3, h4,h5,h6{font-family:Constantia,"Palatino Linotype",Palatino,Georgia,"Times New Roman",Times,serif;}
|
16
|
-
body{font-family:Frutiger,Univers,"Helvetica Neue","Lucida Grande",Calibri,Helvetica,Verdana,sans-serif;}
|
17
|
-
pre{font-family:Corbel,Verdana,"Bitstream Vera Sans",sans-serif;}
|
18
|
-
code{font-family:Consolas,"Bitstream Vera Sans Mono","Courier New",Monaco,Courier,monospace;}
|
19
|
-
h1,h2,h3,h4,h5,h6{color:#111;clear:both;}
|
20
|
-
h1{font-size:30px;line-height:36px;padding:0 0 18px 0;}
|
21
|
-
h2{font-size:20px;line-height:36px;}
|
22
|
-
h3{font-size:16px;line-height:36px;}
|
23
|
-
h4{font-size:14px;font-weight:bold;}
|
24
|
-
h5{font-size:12px;font-weight:bold;}
|
25
|
-
h6{font-size:12px;}
|
26
|
-
p{margin:0 0 18px 0;text-align:justify;}
|
27
|
-
p.last{margin-bottom:0;}
|
28
|
-
p img{float:left;margin:18px 18px 18px 0;padding:0;}
|
29
|
-
p img.top{margin-top:0;}
|
30
|
-
a{color:#125AA7;text-decoration:underline;}
|
31
|
-
a:hover{color:#000;}
|
32
|
-
ul,ol{margin:0 0 18px 18px;}
|
33
|
-
ul{list-style-type:circle;}
|
34
|
-
ol{list-style-type:decimal;}
|
35
|
-
dl{margin:0 0 18px 0;}
|
36
|
-
dl dt{font-weight:bold;}
|
37
|
-
blockquote{margin:0 0 18px 18px;color:#666;font-style:italic;}
|
38
|
-
strong{font-weight:bold;}
|
39
|
-
em{font-style:italic;}
|
40
|
-
pre{margin-bottom:18px;background:#eee;border:1px solid #ddd;padding:16px;}
|
41
|
-
hr{background:#B2CCFF;color:#B2CCFF;clear:both;float:none;width:100%;height:2px;margin:0 0 16px 0;border:none;}
|
42
|
-
table{margin-bottom:16px;border-top:1px solid #ddd;border-left:1px solid #ddd;}
|
43
|
-
th,td{height:13px;padding:2px 4px;border-bottom:1px solid #ddd;border-right:1px solid #ddd;}
|
44
|
-
th{font-weight:bold;}
|
45
|
-
p.small{font-size:10px;margin-bottom:18px;}
|
46
|
-
p.large{font-size:14px;line-height:36px;}
|
47
|
-
p.quiet{color:#666;}
|
48
|
-
.hide{display:none;}
|
49
|
-
.alt{color:#666;font-family:"Warnock Pro","Goudy Old Style","Palatino","Book Antiqua",Georgia,serif;font-size:1.2em;line-height:1%;font-style:italic;}
|
50
|
-
.dquo{margin-left:-.7em;}
|
51
|
-
p.incr,.incr p{font-size:10px;line-height:1.44em;margin-bottom:18px;}
|
52
|
-
.caps{font-variant:small-caps;letter-spacing:1px;text-transform:lowercase;font-size:1.2em;line-height:1%;font-weight:bold;}
|
53
|
-
|
54
|
-
|
55
|
-
/* grid.css */
|
56
|
-
body{text-align:center;margin:36px 0;}
|
57
|
-
.container{text-align:left;position:relative;padding:0;margin:0 auto;width:950px;}
|
58
|
-
.column{float:left;margin-right:10px;padding:0;}
|
59
|
-
* html .column{overflow-x:hidden;}
|
60
|
-
.border{padding-right:4px;margin-right:5px;border-right:1px solid #ddd;}
|
61
|
-
.span-1{width:30px;}
|
62
|
-
.span-2{width:70px;}
|
63
|
-
.span-3{width:110px;}
|
64
|
-
.span-4{width:150px;}
|
65
|
-
.span-5{width:190px;}
|
66
|
-
.span-6{width:230px;}
|
67
|
-
.span-7{width:270px;}
|
68
|
-
.span-8{width:310px;}
|
69
|
-
.span-9{width:350px;}
|
70
|
-
.span-10{width:390px;}
|
71
|
-
.span-11{width:430px;}
|
72
|
-
.span-12{width:470px;}
|
73
|
-
.span-13{width:510px;}
|
74
|
-
.span-14{width:550px;}
|
75
|
-
.span-15{width:590px;}
|
76
|
-
.span-16{width:630px;}
|
77
|
-
.span-17{width:670px;}
|
78
|
-
.span-18{width:710px;}
|
79
|
-
.span-19{width:750px;}
|
80
|
-
.span-20{width:790px;}
|
81
|
-
.span-21{width:830px;}
|
82
|
-
.span-22{width:870px;}
|
83
|
-
.span-23{width:910px;}
|
84
|
-
.span-24{width:950px;margin:0;}
|
85
|
-
.last{margin-right:0;}
|
86
|
-
.append-1{padding-right:40px;}
|
87
|
-
.append-2{padding-right:80px;}
|
88
|
-
.append-3{padding-right:120px;}
|
89
|
-
.append-4{padding-right:160px;}
|
90
|
-
.append-5{padding-right:200px;}
|
91
|
-
.append-6{padding-right:240px;}
|
92
|
-
.append-7{padding-right:280px;}
|
93
|
-
.append-8{padding-right:320px;}
|
94
|
-
.append-9{padding-right:360px;}
|
95
|
-
.append-10{padding-right:400px;}
|
96
|
-
.append-11{padding-right:440px;}
|
97
|
-
.append-12{padding-right:480px;}
|
98
|
-
.prepend-1{padding-left:40px;}
|
99
|
-
.prepend-2{padding-left:80px;}
|
100
|
-
.prepend-3{padding-left:120px;}
|
101
|
-
.prepend-4{padding-left:160px;}
|
102
|
-
.prepend-5{padding-left:200px;}
|
103
|
-
.prepend-6{padding-left:240px;}
|
104
|
-
.prepend-7{padding-left:280px;}
|
105
|
-
.prepend-8{padding-left:320px;}
|
106
|
-
.prepend-9{padding-left:360px;}
|
107
|
-
.prepend-10{padding-left:400px;}
|
108
|
-
.prepend-11{padding-left:440px;}
|
109
|
-
.prepend-12{padding-left:480px;}
|
110
|
-
img{margin:0 0 18px 0;}
|
111
|
-
.pull-1{margin-left:-40px;}
|
112
|
-
.pull-2{margin-left:-80px;}
|
113
|
-
.pull-3{margin-left:-120px;}
|
114
|
-
.pull-4{margin-left:-160px;}
|
115
|
-
.push-0{margin:0 0 0 18px;float:right;}
|
116
|
-
.push-1{margin:0 -40px 0 18px;float:right;}
|
117
|
-
.push-2{margin:0 -80px 0 18px;float:right;}
|
118
|
-
.push-3{margin:0 -120px 0 18px;float:right;}
|
119
|
-
.push-4{margin:0 -160px 0 18px;float:right;}
|
120
|
-
.pull-1,.pull-2,.pull-3,.pull-4, .push-1,.push-2,.push-3,.push-4{overflow-x:visible;}
|
121
|
-
|
122
|
-
|
123
|
-
/* buttons.css */
|
124
|
-
a.button,button{display:block;float:left;margin:0 0.583em 0.667em 0;padding:5px 10px 6px 7px;border:0.1em solid #dedede;border-top:0.1em solid #eee;border-left:0.1em solid #eee;background-color:#f5f5f5;font-family:"Lucida Grande",Tahoma,Arial,Verdana,sans-serif;font-size:100%;line-height:130%;text-decoration:none;font-weight:bold;color:#565656;cursor:pointer;}
|
125
|
-
button{width:auto;overflow:visible;padding:4px 10px 3px 7px;}
|
126
|
-
button[type]{padding:5px 10px 5px 7px;line-height:17px;}
|
127
|
-
*:first-child+html button[type]{padding:4px 10px 3px 7px;}
|
128
|
-
button img,a.button img{margin:0 3px -3px 0 !important;padding:0;border:none;width:16px;height:16px;}
|
129
|
-
button:hover,a.button:hover{background-color:#dff4ff;border:0.1em solid #c2e1ef;color:#336699;}
|
130
|
-
a.button:active{background-color:#6299c5;border:1px solid #6299c5;color:#fff;}
|
131
|
-
.positive{color:#529214;}
|
132
|
-
a.positive:hover,button.positive:hover{background-color:#E6EFC2;border:0.1em solid #C6D880;color:#529214;}
|
133
|
-
a.positive:active{background-color:#529214;border:0.1em solid #529214;color:#fff;}
|
134
|
-
.negative{color:#d12f19;}
|
135
|
-
a.negative:hover,button.negative:hover{background:#fbe3e4;border:0.1em solid #fbc2c4;}
|
136
|
-
a.negative:active{background-color:#d12f19;border:0.1em solid #d12f19;color:#fff;}
|
137
|
-
|
Binary file
|
@@ -1,112 +0,0 @@
|
|
1
|
-
/* --------------------------------------------------------------
|
2
|
-
|
3
|
-
Buttons.css
|
4
|
-
* Version: 0.5 (28/8/2007)
|
5
|
-
* Website: http://code.google.com/p/blueprintcss/
|
6
|
-
|
7
|
-
Created by Kevin Hale [particletree.com]
|
8
|
-
* particletree.com/features/rediscovering-the-button-element
|
9
|
-
|
10
|
-
W3C: "Buttons created with the BUTTON element function
|
11
|
-
just like buttons created with the INPUT element,
|
12
|
-
but they offer richer rendering possibilities."
|
13
|
-
|
14
|
-
Usage:
|
15
|
-
|
16
|
-
<button type="submit" class="button positive">
|
17
|
-
<img src="css/blueprint/lib/img/icons/tick.png" alt=""/> Save
|
18
|
-
</button>
|
19
|
-
|
20
|
-
<a class="button" href="/password/reset/">
|
21
|
-
<img src="css/blueprint/lib/img/icons/textfield_key.png" alt=""/> Change Password
|
22
|
-
</a>
|
23
|
-
|
24
|
-
<a href="#" class="button negative">
|
25
|
-
<img src="css/blueprint/lib/img/icons/cross.png" alt=""/> Cancel
|
26
|
-
</a>
|
27
|
-
|
28
|
-
-------------------------------------------------------------- */
|
29
|
-
|
30
|
-
a.button, button {
|
31
|
-
display:block;
|
32
|
-
float:left;
|
33
|
-
margin:0 0.583em 0.667em 0;
|
34
|
-
padding:5px 10px 6px 7px; /* Links */
|
35
|
-
|
36
|
-
border:0.1em solid #dedede;
|
37
|
-
border-top:0.1em solid #eee;
|
38
|
-
border-left:0.1em solid #eee;
|
39
|
-
|
40
|
-
background-color:#f5f5f5;
|
41
|
-
font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
|
42
|
-
font-size:100%;
|
43
|
-
line-height:130%;
|
44
|
-
text-decoration:none;
|
45
|
-
font-weight:bold;
|
46
|
-
color:#565656;
|
47
|
-
cursor:pointer;
|
48
|
-
}
|
49
|
-
button {
|
50
|
-
width:auto;
|
51
|
-
overflow:visible;
|
52
|
-
padding:4px 10px 3px 7px; /* IE6 */
|
53
|
-
}
|
54
|
-
button[type] {
|
55
|
-
padding:5px 10px 5px 7px; /* Firefox */
|
56
|
-
line-height:17px; /* Safari */
|
57
|
-
}
|
58
|
-
*:first-child+html button[type] {
|
59
|
-
padding:4px 10px 3px 7px; /* IE7 */
|
60
|
-
}
|
61
|
-
button img, a.button img{
|
62
|
-
margin:0 3px -3px 0 !important;
|
63
|
-
padding:0;
|
64
|
-
border:none;
|
65
|
-
width:16px;
|
66
|
-
height:16px;
|
67
|
-
}
|
68
|
-
|
69
|
-
|
70
|
-
/* Button colors
|
71
|
-
-------------------------------------------------------------- */
|
72
|
-
|
73
|
-
/* Standard */
|
74
|
-
button:hover, a.button:hover{
|
75
|
-
background-color:#dff4ff;
|
76
|
-
border:0.1em solid #c2e1ef;
|
77
|
-
color:#336699;
|
78
|
-
}
|
79
|
-
a.button:active{
|
80
|
-
background-color:#6299c5;
|
81
|
-
border:1px solid #6299c5;
|
82
|
-
color:#fff;
|
83
|
-
}
|
84
|
-
|
85
|
-
/* Positive */
|
86
|
-
.positive {
|
87
|
-
color:#529214;
|
88
|
-
}
|
89
|
-
a.positive:hover, button.positive:hover {
|
90
|
-
background-color:#E6EFC2;
|
91
|
-
border:0.1em solid #C6D880;
|
92
|
-
color:#529214;
|
93
|
-
}
|
94
|
-
a.positive:active {
|
95
|
-
background-color:#529214;
|
96
|
-
border:0.1em solid #529214;
|
97
|
-
color:#fff;
|
98
|
-
}
|
99
|
-
|
100
|
-
/* Negative */
|
101
|
-
.negative {
|
102
|
-
color:#d12f19;
|
103
|
-
}
|
104
|
-
a.negative:hover, button.negative:hover {
|
105
|
-
background:#fbe3e4;
|
106
|
-
border:0.1em solid #fbc2c4;
|
107
|
-
}
|
108
|
-
a.negative:active {
|
109
|
-
background-color:#d12f19;
|
110
|
-
border:0.1em solid #d12f19;
|
111
|
-
color:#fff;
|
112
|
-
}
|
@@ -1,137 +0,0 @@
|
|
1
|
-
/* Blueprint Compressed Version */
|
2
|
-
|
3
|
-
|
4
|
-
/* reset.css */
|
5
|
-
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,font,img,ins,kbd,q,s,samp, strike,strong,sub,sup,tt,var, dl,dt,dd,ol,ul,li, fieldset,form,label,legend, table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}
|
6
|
-
body{line-height:1;color:#333;background:white;}
|
7
|
-
table{border-collapse:separate;border-spacing:0;}
|
8
|
-
caption,th,td{text-align:left;font-weight:normal;}
|
9
|
-
blockquote:before,blockquote:after,q:before,q:after{content:"";}
|
10
|
-
blockquote,q{quotes:"" "";}
|
11
|
-
|
12
|
-
|
13
|
-
/* typography.css */
|
14
|
-
body{font-size:12px;line-height:18px;}
|
15
|
-
h1,h2,h3, h4,h5,h6{font-family:Constantia,"Palatino Linotype",Palatino,Georgia,"Times New Roman",Times,serif;}
|
16
|
-
body{font-family:Frutiger,Univers,"Helvetica Neue","Lucida Grande",Calibri,Helvetica,Verdana,sans-serif;}
|
17
|
-
pre{font-family:Corbel,Verdana,"Bitstream Vera Sans",sans-serif;}
|
18
|
-
code{font-family:Consolas,"Bitstream Vera Sans Mono","Courier New",Monaco,Courier,monospace;}
|
19
|
-
h1,h2,h3,h4,h5,h6{color:#111;clear:both;}
|
20
|
-
h1{font-size:30px;line-height:36px;padding:0 0 18px 0;}
|
21
|
-
h2{font-size:20px;line-height:36px;}
|
22
|
-
h3{font-size:16px;line-height:36px;}
|
23
|
-
h4{font-size:14px;font-weight:bold;}
|
24
|
-
h5{font-size:12px;font-weight:bold;}
|
25
|
-
h6{font-size:12px;}
|
26
|
-
p{margin:0 0 18px 0;text-align:justify;}
|
27
|
-
p.last{margin-bottom:0;}
|
28
|
-
p img{float:left;margin:18px 18px 18px 0;padding:0;}
|
29
|
-
p img.top{margin-top:0;}
|
30
|
-
a{color:#125AA7;text-decoration:underline;}
|
31
|
-
a:hover{color:#000;}
|
32
|
-
ul,ol{margin:0 0 18px 18px;}
|
33
|
-
ul{list-style-type:circle;}
|
34
|
-
ol{list-style-type:decimal;}
|
35
|
-
dl{margin:0 0 18px 0;}
|
36
|
-
dl dt{font-weight:bold;}
|
37
|
-
blockquote{margin:0 0 18px 18px;color:#666;font-style:italic;}
|
38
|
-
strong{font-weight:bold;}
|
39
|
-
em{font-style:italic;}
|
40
|
-
pre{margin-bottom:18px;background:#eee;border:1px solid #ddd;padding:16px;}
|
41
|
-
hr{background:#B2CCFF;color:#B2CCFF;clear:both;float:none;width:100%;height:2px;margin:0 0 16px 0;border:none;}
|
42
|
-
table{margin-bottom:16px;border-top:1px solid #ddd;border-left:1px solid #ddd;}
|
43
|
-
th,td{height:13px;padding:2px 4px;border-bottom:1px solid #ddd;border-right:1px solid #ddd;}
|
44
|
-
th{font-weight:bold;}
|
45
|
-
p.small{font-size:10px;margin-bottom:18px;}
|
46
|
-
p.large{font-size:14px;line-height:36px;}
|
47
|
-
p.quiet{color:#666;}
|
48
|
-
.hide{display:none;}
|
49
|
-
.alt{color:#666;font-family:"Warnock Pro","Goudy Old Style","Palatino","Book Antiqua",Georgia,serif;font-size:1.2em;line-height:1%;font-style:italic;}
|
50
|
-
.dquo{margin-left:-.7em;}
|
51
|
-
p.incr,.incr p{font-size:10px;line-height:1.44em;margin-bottom:18px;}
|
52
|
-
.caps{font-variant:small-caps;letter-spacing:1px;text-transform:lowercase;font-size:1.2em;line-height:1%;font-weight:bold;}
|
53
|
-
|
54
|
-
|
55
|
-
/* grid.css */
|
56
|
-
body{text-align:center;margin:36px 0;}
|
57
|
-
.container{text-align:left;position:relative;padding:0;margin:0 auto;width:950px;}
|
58
|
-
.column{float:left;margin-right:10px;padding:0;}
|
59
|
-
* html .column{overflow-x:hidden;}
|
60
|
-
.border{padding-right:4px;margin-right:5px;border-right:1px solid #ddd;}
|
61
|
-
.span-1{width:30px;}
|
62
|
-
.span-2{width:70px;}
|
63
|
-
.span-3{width:110px;}
|
64
|
-
.span-4{width:150px;}
|
65
|
-
.span-5{width:190px;}
|
66
|
-
.span-6{width:230px;}
|
67
|
-
.span-7{width:270px;}
|
68
|
-
.span-8{width:310px;}
|
69
|
-
.span-9{width:350px;}
|
70
|
-
.span-10{width:390px;}
|
71
|
-
.span-11{width:430px;}
|
72
|
-
.span-12{width:470px;}
|
73
|
-
.span-13{width:510px;}
|
74
|
-
.span-14{width:550px;}
|
75
|
-
.span-15{width:590px;}
|
76
|
-
.span-16{width:630px;}
|
77
|
-
.span-17{width:670px;}
|
78
|
-
.span-18{width:710px;}
|
79
|
-
.span-19{width:750px;}
|
80
|
-
.span-20{width:790px;}
|
81
|
-
.span-21{width:830px;}
|
82
|
-
.span-22{width:870px;}
|
83
|
-
.span-23{width:910px;}
|
84
|
-
.span-24{width:950px;margin:0;}
|
85
|
-
.last{margin-right:0;}
|
86
|
-
.append-1{padding-right:40px;}
|
87
|
-
.append-2{padding-right:80px;}
|
88
|
-
.append-3{padding-right:120px;}
|
89
|
-
.append-4{padding-right:160px;}
|
90
|
-
.append-5{padding-right:200px;}
|
91
|
-
.append-6{padding-right:240px;}
|
92
|
-
.append-7{padding-right:280px;}
|
93
|
-
.append-8{padding-right:320px;}
|
94
|
-
.append-9{padding-right:360px;}
|
95
|
-
.append-10{padding-right:400px;}
|
96
|
-
.append-11{padding-right:440px;}
|
97
|
-
.append-12{padding-right:480px;}
|
98
|
-
.prepend-1{padding-left:40px;}
|
99
|
-
.prepend-2{padding-left:80px;}
|
100
|
-
.prepend-3{padding-left:120px;}
|
101
|
-
.prepend-4{padding-left:160px;}
|
102
|
-
.prepend-5{padding-left:200px;}
|
103
|
-
.prepend-6{padding-left:240px;}
|
104
|
-
.prepend-7{padding-left:280px;}
|
105
|
-
.prepend-8{padding-left:320px;}
|
106
|
-
.prepend-9{padding-left:360px;}
|
107
|
-
.prepend-10{padding-left:400px;}
|
108
|
-
.prepend-11{padding-left:440px;}
|
109
|
-
.prepend-12{padding-left:480px;}
|
110
|
-
img{margin:0 0 18px 0;}
|
111
|
-
.pull-1{margin-left:-40px;}
|
112
|
-
.pull-2{margin-left:-80px;}
|
113
|
-
.pull-3{margin-left:-120px;}
|
114
|
-
.pull-4{margin-left:-160px;}
|
115
|
-
.push-0{margin:0 0 0 18px;float:right;}
|
116
|
-
.push-1{margin:0 -40px 0 18px;float:right;}
|
117
|
-
.push-2{margin:0 -80px 0 18px;float:right;}
|
118
|
-
.push-3{margin:0 -120px 0 18px;float:right;}
|
119
|
-
.push-4{margin:0 -160px 0 18px;float:right;}
|
120
|
-
.pull-1,.pull-2,.pull-3,.pull-4, .push-1,.push-2,.push-3,.push-4{overflow-x:visible;}
|
121
|
-
|
122
|
-
|
123
|
-
/* buttons.css */
|
124
|
-
a.button,button{display:block;float:left;margin:0 0.583em 0.667em 0;padding:5px 10px 6px 7px;border:0.1em solid #dedede;border-top:0.1em solid #eee;border-left:0.1em solid #eee;background-color:#f5f5f5;font-family:"Lucida Grande",Tahoma,Arial,Verdana,sans-serif;font-size:100%;line-height:130%;text-decoration:none;font-weight:bold;color:#565656;cursor:pointer;}
|
125
|
-
button{width:auto;overflow:visible;padding:4px 10px 3px 7px;}
|
126
|
-
button[type]{padding:5px 10px 5px 7px;line-height:17px;}
|
127
|
-
*:first-child+html button[type]{padding:4px 10px 3px 7px;}
|
128
|
-
button img,a.button img{margin:0 3px -3px 0 !important;padding:0;border:none;width:16px;height:16px;}
|
129
|
-
button:hover,a.button:hover{background-color:#dff4ff;border:0.1em solid #c2e1ef;color:#336699;}
|
130
|
-
a.button:active{background-color:#6299c5;border:1px solid #6299c5;color:#fff;}
|
131
|
-
.positive{color:#529214;}
|
132
|
-
a.positive:hover,button.positive:hover{background-color:#E6EFC2;border:0.1em solid #C6D880;color:#529214;}
|
133
|
-
a.positive:active{background-color:#529214;border:0.1em solid #529214;color:#fff;}
|
134
|
-
.negative{color:#d12f19;}
|
135
|
-
a.negative:hover,button.negative:hover{background:#fbe3e4;border:0.1em solid #fbc2c4;}
|
136
|
-
a.negative:active{background-color:#d12f19;border:0.1em solid #d12f19;color:#fff;}
|
137
|
-
|