adocsite 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +21 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +82 -0
- data/Rakefile +1 -0
- data/TODO.md +12 -0
- data/adocsite.gemspec +32 -0
- data/bin/adocsite +63 -0
- data/examples/myconfig.rb +7 -0
- data/examples/mywpconfig.rb +9 -0
- data/lib/adocsite.rb +35 -0
- data/lib/adocsite/commands.rb +83 -0
- data/lib/adocsite/config.rb +66 -0
- data/lib/adocsite/content_loader.rb +59 -0
- data/lib/adocsite/content_types.rb +60 -0
- data/lib/adocsite/context.rb +118 -0
- data/lib/adocsite/engine.rb +147 -0
- data/lib/adocsite/site.rb +49 -0
- data/lib/adocsite/templates.rb +91 -0
- data/lib/adocsite/version.rb +3 -0
- data/lib/adocsite/wp/post.rb +170 -0
- data/tpl/default/includes/anything.haml +2 -0
- data/tpl/default/includes/bottom.haml +2 -0
- data/tpl/default/includes/footer.haml +4 -0
- data/tpl/default/includes/header.haml +2 -0
- data/tpl/default/includes/menu.haml +9 -0
- data/tpl/default/includes/one_level_menu.haml +5 -0
- data/tpl/default/includes/top.haml +2 -0
- data/tpl/default/layouts/compact.haml +14 -0
- data/tpl/default/layouts/default.haml +14 -0
- data/tpl/default/literals/google_analytics +7 -0
- data/tpl/default/partials/article.haml +2 -0
- data/tpl/default/partials/category.haml +6 -0
- data/tpl/default/partials/home.haml +12 -0
- data/tpl/default/partials/page.haml +2 -0
- data/tpl/default/resources/asciidoc.js +189 -0
- data/tpl/default/resources/asciidoctor.css +351 -0
- data/tpl/default/resources/funky.css +0 -0
- data/tpl/default/resources/kernel.css +0 -0
- data/tpl/default/resources/myblueraven.css +11 -0
- data/tpl/default/resources/myblueraven.js +0 -0
- data/tpl/default/resources/old-myblueraven.css +1316 -0
- data/tpl/default/resources/sleepy.js +0 -0
- metadata +201 -0
@@ -0,0 +1,351 @@
|
|
1
|
+
/* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */
|
2
|
+
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
|
3
|
+
audio, canvas, video { display: inline-block; }
|
4
|
+
audio:not([controls]) { display: none; height: 0; }
|
5
|
+
[hidden] { display: none; }
|
6
|
+
html { background: #fff; color: #000; font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
|
7
|
+
body { margin: 0; }
|
8
|
+
a:focus { outline: thin dotted; }
|
9
|
+
a:active, a:hover { outline: 0; }
|
10
|
+
h1 { font-size: 2em; margin: 0.67em 0; }
|
11
|
+
abbr[title] { border-bottom: 1px dotted; }
|
12
|
+
b, strong { font-weight: bold; }
|
13
|
+
dfn { font-style: italic; }
|
14
|
+
hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; }
|
15
|
+
mark { background: #ff0; color: #000; }
|
16
|
+
code, kbd, pre, samp { font-family: monospace, serif; font-size: 1em; }
|
17
|
+
pre { white-space: pre-wrap; }
|
18
|
+
q { quotes: "\201C" "\201D" "\2018" "\2019"; }
|
19
|
+
small { font-size: 80%; }
|
20
|
+
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
|
21
|
+
sup { top: -0.5em; }
|
22
|
+
sub { bottom: -0.25em; }
|
23
|
+
img { border: 0; }
|
24
|
+
svg:not(:root) { overflow: hidden; }
|
25
|
+
figure { margin: 0; }
|
26
|
+
fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
|
27
|
+
legend { border: 0; padding: 0; }
|
28
|
+
button, input, select, textarea { font-family: inherit; font-size: 100%; margin: 0; }
|
29
|
+
button, input { line-height: normal; }
|
30
|
+
button, select { text-transform: none; }
|
31
|
+
button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; }
|
32
|
+
button[disabled], html input[disabled] { cursor: default; }
|
33
|
+
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; }
|
34
|
+
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
|
35
|
+
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
|
36
|
+
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
|
37
|
+
textarea { overflow: auto; vertical-align: top; }
|
38
|
+
table { border-collapse: collapse; border-spacing: 0; }
|
39
|
+
*, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
|
40
|
+
html, body { font-size: 100%; }
|
41
|
+
body { background: white; color: #222222; padding: 0; margin: 0; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; line-height: 1; position: relative; cursor: auto; }
|
42
|
+
a:hover { cursor: pointer; }
|
43
|
+
a:focus { outline: none; }
|
44
|
+
img, object, embed { max-width: 100%; height: auto; }
|
45
|
+
object, embed { height: 100%; }
|
46
|
+
img { -ms-interpolation-mode: bicubic; }
|
47
|
+
#map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important; }
|
48
|
+
.left { float: left !important; }
|
49
|
+
.right { float: right !important; }
|
50
|
+
.text-left { text-align: left !important; }
|
51
|
+
.text-right { text-align: right !important; }
|
52
|
+
.text-center { text-align: center !important; }
|
53
|
+
.text-justify { text-align: justify !important; }
|
54
|
+
.hide { display: none; }
|
55
|
+
.antialiased, body { -webkit-font-smoothing: antialiased; }
|
56
|
+
img { display: inline-block; vertical-align: middle; }
|
57
|
+
textarea { height: auto; min-height: 50px; }
|
58
|
+
select { width: 100%; }
|
59
|
+
p.lead, .paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { font-size: 1.21875em; line-height: 1.6; }
|
60
|
+
.subheader, #content #toctitle, .admonitionblock td.content > .title, .exampleblock > .title, .imageblock > .title, .videoblock > .title, .listingblock > .title, .literalblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, .sidebarblock > .title, .tableblock > .title, .verseblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title, .tableblock > caption { line-height: 1.4; color: #7a2518; font-weight: 300; margin-top: 0.2em; margin-bottom: 0.5em; }
|
61
|
+
div, dl, dt, dd, ul, ol, li, h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; direction: ltr; }
|
62
|
+
a { color: #005498; text-decoration: underline; line-height: inherit; }
|
63
|
+
a:hover, a:focus { color: #00467f; }
|
64
|
+
a img { border: none; }
|
65
|
+
p { font-family: inherit; font-weight: normal; font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; text-rendering: optimizeLegibility; }
|
66
|
+
p aside { font-size: 0.875em; line-height: 1.35; font-style: italic; }
|
67
|
+
h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { font-family: Georgia, "URW Bookman L", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; color: #ba3925; text-rendering: optimizeLegibility; margin-top: 1em; margin-bottom: 0.5em; line-height: 1.2125em; }
|
68
|
+
h1 small, h2 small, h3 small, #toctitle small, .sidebarblock > .content > .title small, h4 small, h5 small, h6 small { font-size: 60%; color: #e99b8f; line-height: 0; }
|
69
|
+
h1 { font-size: 2.125em; }
|
70
|
+
h2 { font-size: 1.6875em; }
|
71
|
+
h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.375em; }
|
72
|
+
h4 { font-size: 1.125em; }
|
73
|
+
h5 { font-size: 1.125em; }
|
74
|
+
h6 { font-size: 1em; }
|
75
|
+
hr { border: solid #dddddd; border-width: 1px 0 0; clear: both; margin: 1.25em 0 1.1875em; height: 0; }
|
76
|
+
em, i { font-style: italic; line-height: inherit; }
|
77
|
+
strong, b { font-weight: bold; line-height: inherit; }
|
78
|
+
small { font-size: 60%; line-height: inherit; }
|
79
|
+
code { font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: normal; color: #6d180b; }
|
80
|
+
ul, ol, dl { font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; list-style-position: outside; font-family: inherit; }
|
81
|
+
ul, ol { margin-left: 1.5em; }
|
82
|
+
ul li ul, ul li ol { margin-left: 1.25em; margin-bottom: 0; font-size: 1em; }
|
83
|
+
ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit; }
|
84
|
+
ul.square { list-style-type: square; }
|
85
|
+
ul.circle { list-style-type: circle; }
|
86
|
+
ul.disc { list-style-type: disc; }
|
87
|
+
ul.no-bullet { list-style: none; }
|
88
|
+
ol li ul, ol li ol { margin-left: 1.25em; margin-bottom: 0; }
|
89
|
+
dl dt { margin-bottom: 0.3125em; font-weight: bold; }
|
90
|
+
dl dd { margin-bottom: 1.25em; }
|
91
|
+
abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222222; border-bottom: 1px dotted #dddddd; cursor: help; }
|
92
|
+
abbr { text-transform: none; }
|
93
|
+
blockquote { margin: 0 0 1.25em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; }
|
94
|
+
blockquote cite { display: block; font-size: inherit; color: #555555; }
|
95
|
+
blockquote cite:before { content: "\2014 \0020"; }
|
96
|
+
blockquote cite a, blockquote cite a:visited { color: #555555; }
|
97
|
+
blockquote, blockquote p { line-height: 1.6; color: #6f6f6f; }
|
98
|
+
.vcard { display: inline-block; margin: 0 0 1.25em 0; border: 1px solid #dddddd; padding: 0.625em 0.75em; }
|
99
|
+
.vcard li { margin: 0; display: block; }
|
100
|
+
.vcard .fn { font-weight: bold; font-size: 0.9375em; }
|
101
|
+
.vevent .summary { font-weight: bold; }
|
102
|
+
.vevent abbr { cursor: auto; text-decoration: none; font-weight: bold; border: none; padding: 0 0.0625em; }
|
103
|
+
@media only screen and (min-width: 768px) { h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; }
|
104
|
+
h1 { font-size: 2.75em; }
|
105
|
+
h2 { font-size: 2.3125em; }
|
106
|
+
h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.6875em; }
|
107
|
+
h4 { font-size: 1.4375em; } }
|
108
|
+
.print-only { display: none !important; }
|
109
|
+
@media print { * { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
|
110
|
+
a, a:visited { text-decoration: underline; }
|
111
|
+
a[href]:after { content: " (" attr(href) ")"; }
|
112
|
+
abbr[title]:after { content: " (" attr(title) ")"; }
|
113
|
+
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
|
114
|
+
pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
|
115
|
+
thead { display: table-header-group; }
|
116
|
+
tr, img { page-break-inside: avoid; }
|
117
|
+
img { max-width: 100% !important; }
|
118
|
+
@page { margin: 0.5cm; }
|
119
|
+
p, h2, h3, #toctitle, .sidebarblock > .content > .title { orphans: 3; widows: 3; }
|
120
|
+
h2, h3, #toctitle, .sidebarblock > .content > .title { page-break-after: avoid; }
|
121
|
+
.hide-on-print { display: none !important; }
|
122
|
+
.print-only { display: block !important; }
|
123
|
+
.hide-for-print { display: none !important; }
|
124
|
+
.show-for-print { display: inherit !important; } }
|
125
|
+
table { background: white; margin-bottom: 1.25em; border: solid 1px #dddddd; }
|
126
|
+
table thead, table tfoot { background: whitesmoke; font-weight: bold; }
|
127
|
+
table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td { padding: 0.5em 0.625em 0.625em; font-size: inherit; color: #222222; text-align: left; }
|
128
|
+
table tr th, table tr td { padding: 0.5625em 0.625em; font-size: inherit; color: #222222; }
|
129
|
+
table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f9f9f9; }
|
130
|
+
table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; line-height: 1.6; }
|
131
|
+
.clearfix:before, .clearfix:after, .float-group:before, .float-group:after { content: " "; display: table; }
|
132
|
+
.clearfix:after, .float-group:after { clear: both; }
|
133
|
+
*:not(pre) > code { font-size: 0.9375em; padding: 1px 3px 0; white-space: nowrap; background-color: #f2f2f2; border: 1px solid #cccccc; -webkit-border-radius: 4px; border-radius: 4px; text-shadow: none; }
|
134
|
+
pre, pre > code { line-height: 1.4; color: inherit; font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: normal; }
|
135
|
+
kbd.keyseq { color: #555555; }
|
136
|
+
kbd:not(.keyseq) { display: inline-block; color: #222222; font-size: 0.75em; line-height: 1.4; background-color: #F7F7F7; border: 1px solid #ccc; -webkit-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px white inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px white inset; margin: -0.15em 0.15em 0 0.15em; padding: 0.2em 0.6em 0.2em 0.5em; vertical-align: middle; white-space: nowrap; }
|
137
|
+
kbd kbd:first-child { margin-left: 0; }
|
138
|
+
kbd kbd:last-child { margin-right: 0; }
|
139
|
+
.menuseq, .menu { color: #090909; }
|
140
|
+
p a > code:hover { color: #561309; }
|
141
|
+
#header, #content, #footnotes, #footer { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 62.5em; *zoom: 1; position: relative; padding-left: 0.9375em; padding-right: 0.9375em; }
|
142
|
+
#header:before, #header:after, #content:before, #content:after, #footnotes:before, #footnotes:after, #footer:before, #footer:after { content: " "; display: table; }
|
143
|
+
#header:after, #content:after, #footnotes:after, #footer:after { clear: both; }
|
144
|
+
#header { margin-bottom: 2.5em; }
|
145
|
+
#header > h1 { color: black; font-weight: normal; border-bottom: 1px solid #dddddd; margin-bottom: -28px; padding-bottom: 32px; }
|
146
|
+
#header span { color: #6f6f6f; }
|
147
|
+
#header #revnumber { text-transform: capitalize; }
|
148
|
+
#header br { display: none; }
|
149
|
+
#header br + span { padding-left: 3px; }
|
150
|
+
#header br + span:before { content: "\2013 \0020"; }
|
151
|
+
#header br + span.author { padding-left: 0; }
|
152
|
+
#header br + span.author:before { content: ", "; }
|
153
|
+
#toc { border-bottom: 3px double #ebebeb; padding-bottom: 1.25em; }
|
154
|
+
#toc > ul { margin-left: 0.25em; }
|
155
|
+
#toc ul.sectlevel0 > li > a { font-style: italic; }
|
156
|
+
#toc ul.sectlevel0 ul.sectlevel1 { margin-left: 0; margin-top: 0.5em; margin-bottom: 0.5em; }
|
157
|
+
#toc ul { list-style-type: none; }
|
158
|
+
#toctitle { color: #7a2518; }
|
159
|
+
@media only screen and (min-width: 1280px) { body.toc2 { padding-left: 20em; }
|
160
|
+
#toc.toc2 { position: fixed; width: 20em; left: 0; top: 0; border-right: 1px solid #ebebeb; border-bottom: 0; z-index: 1000; padding: 1em; height: 100%; overflow: auto; }
|
161
|
+
#toc.toc2 #toctitle { margin-top: 0; }
|
162
|
+
#toc.toc2 > ul { font-size: .95em; }
|
163
|
+
#toc.toc2 ul ul { margin-left: 0; padding-left: 1.25em; }
|
164
|
+
#toc.toc2 ul.sectlevel0 ul.sectlevel1 { padding-left: 0; margin-top: 0.5em; margin-bottom: 0.5em; }
|
165
|
+
body.toc2.toc-right { padding-left: 0; padding-right: 20em; }
|
166
|
+
body.toc2.toc-right #toc.toc2 { border-right: 0; border-left: 1px solid #ebebeb; left: auto; right: 0; } }
|
167
|
+
#content #toc { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; border-width: 0; -webkit-border-radius: 4px; border-radius: 4px; }
|
168
|
+
#content #toc > :first-child { margin-top: 0; }
|
169
|
+
#content #toc > :last-child { margin-bottom: 0; }
|
170
|
+
#content #toc a { text-decoration: none; }
|
171
|
+
#content #toctitle { font-weight: bold; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-size: 1em; padding-left: 0.125em; }
|
172
|
+
#footer { max-width: 100%; background-color: #222222; padding: 1.25em; }
|
173
|
+
#footer-text { color: #dddddd; line-height: 1.44; }
|
174
|
+
.sect1 { padding-bottom: 1.25em; }
|
175
|
+
.sect1 + .sect1 { border-top: 3px double #ebebeb; }
|
176
|
+
#content h1 > a.anchor, h2 > a.anchor, h3 > a.anchor, #toctitle > a.anchor, .sidebarblock > .content > .title > a.anchor, h4 > a.anchor, h5 > a.anchor, h6 > a.anchor { position: absolute; width: 1em; margin-left: -1em; display: block; text-decoration: none; visibility: hidden; text-align: center; font-weight: normal; }
|
177
|
+
#content h1 > a.anchor:before, h2 > a.anchor:before, h3 > a.anchor:before, #toctitle > a.anchor:before, .sidebarblock > .content > .title > a.anchor:before, h4 > a.anchor:before, h5 > a.anchor:before, h6 > a.anchor:before { content: '\00A7'; font-size: .85em; vertical-align: text-top; display: block; margin-top: 0.05em; }
|
178
|
+
#content h1:hover > a.anchor, #content h1 > a.anchor:hover, h2:hover > a.anchor, h2 > a.anchor:hover, h3:hover > a.anchor, #toctitle:hover > a.anchor, .sidebarblock > .content > .title:hover > a.anchor, h3 > a.anchor:hover, #toctitle > a.anchor:hover, .sidebarblock > .content > .title > a.anchor:hover, h4:hover > a.anchor, h4 > a.anchor:hover, h5:hover > a.anchor, h5 > a.anchor:hover, h6:hover > a.anchor, h6 > a.anchor:hover { visibility: visible; }
|
179
|
+
#content h1 > a.link, h2 > a.link, h3 > a.link, #toctitle > a.link, .sidebarblock > .content > .title > a.link, h4 > a.link, h5 > a.link, h6 > a.link { color: #ba3925; text-decoration: none; }
|
180
|
+
#content h1 > a.link:hover, h2 > a.link:hover, h3 > a.link:hover, #toctitle > a.link:hover, .sidebarblock > .content > .title > a.link:hover, h4 > a.link:hover, h5 > a.link:hover, h6 > a.link:hover { color: #a53221; }
|
181
|
+
.imageblock, .literalblock, .listingblock, .verseblock, .videoblock { margin-bottom: 1.25em; }
|
182
|
+
.admonitionblock td.content > .title, .exampleblock > .title, .imageblock > .title, .videoblock > .title, .listingblock > .title, .literalblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, .sidebarblock > .title, .tableblock > .title, .verseblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { text-align: left; font-weight: bold; }
|
183
|
+
.tableblock > caption { text-align: left; font-weight: bold; white-space: nowrap; overflow: visible; max-width: 0; }
|
184
|
+
table.tableblock #preamble > .sectionbody > .paragraph:first-of-type p { font-size: inherit; }
|
185
|
+
.admonitionblock > table { border: 0; background: none; width: 100%; }
|
186
|
+
.admonitionblock > table td.icon { text-align: center; width: 80px; }
|
187
|
+
.admonitionblock > table td.icon img { max-width: none; }
|
188
|
+
.admonitionblock > table td.icon .title { font-weight: bold; text-transform: uppercase; }
|
189
|
+
.admonitionblock > table td.content { padding-left: 1.125em; padding-right: 1.25em; border-left: 1px solid #dddddd; color: #6f6f6f; }
|
190
|
+
.admonitionblock > table td.content > :last-child > :last-child { margin-bottom: 0; }
|
191
|
+
.exampleblock > .content { border-style: solid; border-width: 1px; border-color: #e6e6e6; margin-bottom: 1.25em; padding: 1.25em; background: white; -webkit-border-radius: 4px; border-radius: 4px; }
|
192
|
+
.exampleblock > .content > :first-child { margin-top: 0; }
|
193
|
+
.exampleblock > .content > :last-child { margin-bottom: 0; }
|
194
|
+
.exampleblock > .content h1, .exampleblock > .content h2, .exampleblock > .content h3, .exampleblock > .content #toctitle, .sidebarblock.exampleblock > .content > .title, .exampleblock > .content h4, .exampleblock > .content h5, .exampleblock > .content h6, .exampleblock > .content p { color: #333333; }
|
195
|
+
.exampleblock > .content h1, .exampleblock > .content h2, .exampleblock > .content h3, .exampleblock > .content #toctitle, .sidebarblock.exampleblock > .content > .title, .exampleblock > .content h4, .exampleblock > .content h5, .exampleblock > .content h6 { line-height: 1; margin-bottom: 0.625em; }
|
196
|
+
.exampleblock > .content h1.subheader, .exampleblock > .content h2.subheader, .exampleblock > .content h3.subheader, .exampleblock > .content .subheader#toctitle, .sidebarblock.exampleblock > .content > .subheader.title, .exampleblock > .content h4.subheader, .exampleblock > .content h5.subheader, .exampleblock > .content h6.subheader { line-height: 1.4; }
|
197
|
+
.exampleblock.result > .content { -webkit-box-shadow: 0 1px 8px #d9d9d9; box-shadow: 0 1px 8px #d9d9d9; }
|
198
|
+
.sidebarblock { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; -webkit-border-radius: 4px; border-radius: 4px; }
|
199
|
+
.sidebarblock > :first-child { margin-top: 0; }
|
200
|
+
.sidebarblock > :last-child { margin-bottom: 0; }
|
201
|
+
.sidebarblock h1, .sidebarblock h2, .sidebarblock h3, .sidebarblock #toctitle, .sidebarblock > .content > .title, .sidebarblock h4, .sidebarblock h5, .sidebarblock h6, .sidebarblock p { color: #333333; }
|
202
|
+
.sidebarblock h1, .sidebarblock h2, .sidebarblock h3, .sidebarblock #toctitle, .sidebarblock > .content > .title, .sidebarblock h4, .sidebarblock h5, .sidebarblock h6 { line-height: 1; margin-bottom: 0.625em; }
|
203
|
+
.sidebarblock h1.subheader, .sidebarblock h2.subheader, .sidebarblock h3.subheader, .sidebarblock .subheader#toctitle, .sidebarblock > .content > .subheader.title, .sidebarblock h4.subheader, .sidebarblock h5.subheader, .sidebarblock h6.subheader { line-height: 1.4; }
|
204
|
+
.sidebarblock > .content > .title { color: #7a2518; margin-top: 0; line-height: 1.6; }
|
205
|
+
.exampleblock > .content > :last-child > :last-child, .exampleblock > .content .olist > ol > li:last-child > :last-child, .exampleblock > .content .ulist > ul > li:last-child > :last-child, .exampleblock > .content .qlist > ol > li:last-child > :last-child, .sidebarblock > .content > :last-child > :last-child, .sidebarblock > .content .olist > ol > li:last-child > :last-child, .sidebarblock > .content .ulist > ul > li:last-child > :last-child, .sidebarblock > .content .qlist > ol > li:last-child > :last-child { margin-bottom: 0; }
|
206
|
+
.literalblock > .content pre, .listingblock > .content pre { background: none; border-width: 1px 0; border-style: dotted; border-color: #bfbfbf; -webkit-border-radius: 4px; border-radius: 4px; padding: 0.75em 0.75em 0.5em 0.75em; word-wrap: break-word; }
|
207
|
+
.literalblock > .content pre.nowrap, .listingblock > .content pre.nowrap { overflow-x: auto; white-space: pre; word-wrap: normal; }
|
208
|
+
.literalblock > .content pre > code, .listingblock > .content pre > code { display: block; }
|
209
|
+
@media only screen { .literalblock > .content pre, .listingblock > .content pre { font-size: 0.8em; } }
|
210
|
+
@media only screen and (min-width: 768px) { .literalblock > .content pre, .listingblock > .content pre { font-size: 0.9em; } }
|
211
|
+
@media only screen and (min-width: 1280px) { .literalblock > .content pre, .listingblock > .content pre { font-size: 1em; } }
|
212
|
+
.listingblock > .content { position: relative; }
|
213
|
+
.listingblock:hover code[class*=" language-"]:before { text-transform: uppercase; font-size: 0.9em; color: #999; position: absolute; top: 0.375em; right: 0.375em; }
|
214
|
+
.listingblock:hover code.asciidoc:before { content: "asciidoc"; }
|
215
|
+
.listingblock:hover code.clojure:before { content: "clojure"; }
|
216
|
+
.listingblock:hover code.css:before { content: "css"; }
|
217
|
+
.listingblock:hover code.groovy:before { content: "groovy"; }
|
218
|
+
.listingblock:hover code.html:before { content: "html"; }
|
219
|
+
.listingblock:hover code.java:before { content: "java"; }
|
220
|
+
.listingblock:hover code.javascript:before { content: "javascript"; }
|
221
|
+
.listingblock:hover code.python:before { content: "python"; }
|
222
|
+
.listingblock:hover code.ruby:before { content: "ruby"; }
|
223
|
+
.listingblock:hover code.scss:before { content: "scss"; }
|
224
|
+
.listingblock:hover code.xml:before { content: "xml"; }
|
225
|
+
.listingblock:hover code.yaml:before { content: "yaml"; }
|
226
|
+
.listingblock.terminal pre .command:before { content: attr(data-prompt); padding-right: 0.5em; color: #999; }
|
227
|
+
.listingblock.terminal pre .command:not([data-prompt]):before { content: '$'; }
|
228
|
+
table.pyhltable { border: 0; margin-bottom: 0; }
|
229
|
+
table.pyhltable td { vertical-align: top; padding-top: 0; padding-bottom: 0; }
|
230
|
+
table.pyhltable td.code { padding-left: .75em; padding-right: 0; }
|
231
|
+
.highlight.pygments .lineno, table.pyhltable td:not(.code) { color: #999; padding-left: 0; padding-right: .5em; border-right: 1px solid #dddddd; }
|
232
|
+
.highlight.pygments .lineno { display: inline-block; margin-right: .25em; }
|
233
|
+
table.pyhltable .linenodiv { background-color: transparent !important; padding-right: 0 !important; }
|
234
|
+
.quoteblock { margin: 0 0 1.25em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #dddddd; }
|
235
|
+
.quoteblock blockquote { margin: 0 0 1.25em 0; padding: 0 0 0.5625em 0; border: 0; }
|
236
|
+
.quoteblock blockquote > .paragraph:last-child p { margin-bottom: 0; }
|
237
|
+
.quoteblock .attribution { margin-top: -.25em; padding-bottom: 0.5625em; font-size: inherit; color: #555555; }
|
238
|
+
.quoteblock .attribution br { display: none; }
|
239
|
+
.quoteblock .attribution cite { display: block; margin-bottom: 0.625em; }
|
240
|
+
table thead th, table tfoot th { font-weight: bold; }
|
241
|
+
table.tableblock.grid-all { border-collapse: separate; border-spacing: 1px; -webkit-border-radius: 4px; border-radius: 4px; border-top: 1px solid #dddddd; border-bottom: 1px solid #dddddd; }
|
242
|
+
table.tableblock.frame-topbot, table.tableblock.frame-none { border-left: 0; border-right: 0; }
|
243
|
+
table.tableblock.frame-sides, table.tableblock.frame-none { border-top: 0; border-bottom: 0; }
|
244
|
+
table.tableblock td .paragraph:last-child p, table.tableblock td > p:last-child { margin-bottom: 0; }
|
245
|
+
th.tableblock.halign-left, td.tableblock.halign-left { text-align: left; }
|
246
|
+
th.tableblock.halign-right, td.tableblock.halign-right { text-align: right; }
|
247
|
+
th.tableblock.halign-center, td.tableblock.halign-center { text-align: center; }
|
248
|
+
th.tableblock.valign-top, td.tableblock.valign-top { vertical-align: top; }
|
249
|
+
th.tableblock.valign-bottom, td.tableblock.valign-bottom { vertical-align: bottom; }
|
250
|
+
th.tableblock.valign-middle, td.tableblock.valign-middle { vertical-align: middle; }
|
251
|
+
p.tableblock.header { color: #222222; font-weight: bold; }
|
252
|
+
td > div.verse { white-space: pre; }
|
253
|
+
ol { margin-left: 1.75em; }
|
254
|
+
ul li ol { margin-left: 1.5em; }
|
255
|
+
dl dd { margin-left: 1.125em; }
|
256
|
+
dl dd:last-child, dl dd:last-child > :last-child { margin-bottom: 0; }
|
257
|
+
ol > li p, ul > li p, ul dd, ol dd, .olist .olist, .ulist .ulist, .ulist .olist, .olist .ulist { margin-bottom: 0.625em; }
|
258
|
+
ul.unstyled, ol.unnumbered, ul.checklist, ul.none { list-style-type: none; }
|
259
|
+
ul.unstyled, ol.unnumbered, ul.checklist { margin-left: 0.625em; }
|
260
|
+
ul.checklist li > p:first-child > i[class^="icon-check"]:first-child, ul.checklist li > p:first-child > input[type="checkbox"]:first-child { margin-right: 0.25em; }
|
261
|
+
ul.checklist li > p:first-child > input[type="checkbox"]:first-child { position: relative; top: 1px; }
|
262
|
+
ul.inline { margin: 0 auto 0.625em auto; margin-left: -1.375em; margin-right: 0; padding: 0; list-style: none; overflow: hidden; }
|
263
|
+
ul.inline > li { list-style: none; float: left; margin-left: 1.375em; display: block; }
|
264
|
+
ul.inline > li > * { display: block; }
|
265
|
+
.unstyled dl dt { font-weight: normal; font-style: normal; }
|
266
|
+
ol.arabic { list-style-type: decimal; }
|
267
|
+
ol.decimal { list-style-type: decimal-leading-zero; }
|
268
|
+
ol.loweralpha { list-style-type: lower-alpha; }
|
269
|
+
ol.upperalpha { list-style-type: upper-alpha; }
|
270
|
+
ol.lowerroman { list-style-type: lower-roman; }
|
271
|
+
ol.upperroman { list-style-type: upper-roman; }
|
272
|
+
ol.lowergreek { list-style-type: lower-greek; }
|
273
|
+
.hdlist > table, .colist > table { border: 0; background: none; }
|
274
|
+
.hdlist > table > tbody > tr, .colist > table > tbody > tr { background: none; }
|
275
|
+
td.hdlist1 { padding-right: .8em; font-weight: bold; }
|
276
|
+
td.hdlist1, td.hdlist2 { vertical-align: top; }
|
277
|
+
.literalblock + .colist, .listingblock + .colist { margin-top: -0.5em; }
|
278
|
+
.colist > table tr > td:first-of-type { padding: 0 .8em; line-height: 1; }
|
279
|
+
.colist > table tr > td:last-of-type { padding: 0.25em 0; }
|
280
|
+
.qanda > ol > li > p > em:only-child { color: #00467f; }
|
281
|
+
.thumb, .th { line-height: 0; display: inline-block; border: solid 4px white; -webkit-box-shadow: 0 0 0 1px #dddddd; box-shadow: 0 0 0 1px #dddddd; }
|
282
|
+
.imageblock.left, .imageblock[style*="float: left"] { margin: 0.25em 0.625em 1.25em 0; }
|
283
|
+
.imageblock.right, .imageblock[style*="float: right"] { margin: 0.25em 0 1.25em 0.625em; }
|
284
|
+
.imageblock > .title { margin-bottom: 0; }
|
285
|
+
.imageblock.thumb, .imageblock.th { border-width: 6px; }
|
286
|
+
.imageblock.thumb > .title, .imageblock.th > .title { padding: 0 0.125em; }
|
287
|
+
.image.left, .image.right { margin-top: 0.25em; margin-bottom: 0.25em; display: inline-block; line-height: 0; }
|
288
|
+
.image.left { margin-right: 0.625em; }
|
289
|
+
.image.right { margin-left: 0.625em; }
|
290
|
+
a.image { text-decoration: none; }
|
291
|
+
span.footnote, span.footnoteref { vertical-align: super; font-size: 0.875em; }
|
292
|
+
span.footnote a, span.footnoteref a { text-decoration: none; }
|
293
|
+
#footnotes { padding-top: 0.75em; padding-bottom: 0.75em; margin-bottom: 0.625em; }
|
294
|
+
#footnotes hr { width: 20%; min-width: 6.25em; margin: -.25em 0 .75em 0; border-width: 1px 0 0 0; }
|
295
|
+
#footnotes .footnote { padding: 0 0.375em; line-height: 1.3; font-size: 0.875em; margin-left: 1.2em; text-indent: -1.2em; margin-bottom: .2em; }
|
296
|
+
#footnotes .footnote a:first-of-type { font-weight: bold; text-decoration: none; }
|
297
|
+
#footnotes .footnote:last-of-type { margin-bottom: 0; }
|
298
|
+
#content #footnotes { margin-top: -0.625em; margin-bottom: 0; padding: 0.75em 0; }
|
299
|
+
.gist .file-data > table { border: none; background: #fff; width: 100%; margin-bottom: 0; }
|
300
|
+
.gist .file-data > table td.line-data { width: 99%; }
|
301
|
+
div.unbreakable { page-break-inside: avoid; }
|
302
|
+
.big { font-size: larger; }
|
303
|
+
.small { font-size: smaller; }
|
304
|
+
.underline { text-decoration: underline; }
|
305
|
+
.overline { text-decoration: overline; }
|
306
|
+
.line-through { text-decoration: line-through; }
|
307
|
+
.aqua { color: #00bfbf; }
|
308
|
+
.aqua-background { background-color: #00fafa; }
|
309
|
+
.black { color: black; }
|
310
|
+
.black-background { background-color: black; }
|
311
|
+
.blue { color: #0000bf; }
|
312
|
+
.blue-background { background-color: #0000fa; }
|
313
|
+
.fuchsia { color: #bf00bf; }
|
314
|
+
.fuchsia-background { background-color: #fa00fa; }
|
315
|
+
.gray { color: #606060; }
|
316
|
+
.gray-background { background-color: #7d7d7d; }
|
317
|
+
.green { color: #006000; }
|
318
|
+
.green-background { background-color: #007d00; }
|
319
|
+
.lime { color: #00bf00; }
|
320
|
+
.lime-background { background-color: #00fa00; }
|
321
|
+
.maroon { color: #600000; }
|
322
|
+
.maroon-background { background-color: #7d0000; }
|
323
|
+
.navy { color: #000060; }
|
324
|
+
.navy-background { background-color: #00007d; }
|
325
|
+
.olive { color: #606000; }
|
326
|
+
.olive-background { background-color: #7d7d00; }
|
327
|
+
.purple { color: #600060; }
|
328
|
+
.purple-background { background-color: #7d007d; }
|
329
|
+
.red { color: #bf0000; }
|
330
|
+
.red-background { background-color: #fa0000; }
|
331
|
+
.silver { color: #909090; }
|
332
|
+
.silver-background { background-color: #bcbcbc; }
|
333
|
+
.teal { color: #006060; }
|
334
|
+
.teal-background { background-color: #007d7d; }
|
335
|
+
.white { color: #bfbfbf; }
|
336
|
+
.white-background { background-color: #fafafa; }
|
337
|
+
.yellow { color: #bfbf00; }
|
338
|
+
.yellow-background { background-color: #fafa00; }
|
339
|
+
span.icon > [class^="icon-"], span.icon > [class*=" icon-"] { cursor: default; }
|
340
|
+
.admonitionblock td.icon [class^="icon-"]:before { font-size: 2.5em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); cursor: default; }
|
341
|
+
.admonitionblock td.icon .icon-note:before { content: "\f05a"; color: #005498; color: #003f72; }
|
342
|
+
.admonitionblock td.icon .icon-tip:before { content: "\f0eb"; text-shadow: 1px 1px 2px rgba(155, 155, 0, 0.8); color: #111; }
|
343
|
+
.admonitionblock td.icon .icon-warning:before { content: "\f071"; color: #bf6900; }
|
344
|
+
.admonitionblock td.icon .icon-caution:before { content: "\f06d"; color: #bf3400; }
|
345
|
+
.admonitionblock td.icon .icon-important:before { content: "\f06a"; color: #bf0000; }
|
346
|
+
.conum { display: inline-block; color: white !important; background-color: #222222; -webkit-border-radius: 100px; border-radius: 100px; text-align: center; width: 20px; height: 20px; font-size: 12px; font-weight: bold; line-height: 20px; font-family: Arial, sans-serif; font-style: normal; position: relative; top: -2px; letter-spacing: -1px; }
|
347
|
+
.conum * { color: white !important; }
|
348
|
+
.conum + b { display: none; }
|
349
|
+
.conum:after { content: attr(data-value); }
|
350
|
+
.conum:not([data-value]):empty { display: none; }
|
351
|
+
.literalblock > .content > pre, .listingblock > .content > pre { -webkit-border-radius: 0; border-radius: 0; }
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,1316 @@
|
|
1
|
+
/* line 4, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */
|
2
|
+
html {
|
3
|
+
margin: 0;
|
4
|
+
padding: 0;
|
5
|
+
border: 0;
|
6
|
+
}
|
7
|
+
|
8
|
+
/* line 18, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */
|
9
|
+
.bp-reset-element, body, h1, h2, h3, h4, h5, h6, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, blockquote, q, th, td, caption, table,
|
10
|
+
div, span, object, iframe, p,
|
11
|
+
pre, a, abbr, acronym, address,
|
12
|
+
code, del, dfn, em, img,
|
13
|
+
dl, dt, dd, ol, ul, li, fieldset,
|
14
|
+
form, label, legend,
|
15
|
+
caption, tbody, tfoot, thead, tr {
|
16
|
+
margin: 0;
|
17
|
+
padding: 0;
|
18
|
+
border: 0;
|
19
|
+
font-weight: inherit;
|
20
|
+
font-style: inherit;
|
21
|
+
font-size: 100%;
|
22
|
+
font-family: inherit;
|
23
|
+
vertical-align: baseline;
|
24
|
+
}
|
25
|
+
|
26
|
+
/* line 20, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */
|
27
|
+
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
|
28
|
+
display: block;
|
29
|
+
}
|
30
|
+
|
31
|
+
/* line 21, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */
|
32
|
+
blockquote, q {
|
33
|
+
quotes: "" "";
|
34
|
+
}
|
35
|
+
/* line 67, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */
|
36
|
+
blockquote:before, blockquote:after, q:before, q:after {
|
37
|
+
content: "";
|
38
|
+
}
|
39
|
+
|
40
|
+
/* line 22, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */
|
41
|
+
th, td, caption {
|
42
|
+
float: none !important;
|
43
|
+
text-align: left;
|
44
|
+
font-weight: normal;
|
45
|
+
vertical-align: middle;
|
46
|
+
}
|
47
|
+
|
48
|
+
/* line 23, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */
|
49
|
+
table {
|
50
|
+
border-collapse: separate;
|
51
|
+
border-spacing: 0;
|
52
|
+
vertical-align: middle;
|
53
|
+
}
|
54
|
+
|
55
|
+
/* line 24, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/reset/_utilities.scss */
|
56
|
+
a img {
|
57
|
+
border: none;
|
58
|
+
}
|
59
|
+
|
60
|
+
/* line 20, ../sass/myblueraven.scss */
|
61
|
+
body.bp {
|
62
|
+
line-height: 1.5;
|
63
|
+
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
|
64
|
+
color: #333333;
|
65
|
+
font-size: 75%;
|
66
|
+
}
|
67
|
+
/* line 51, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
68
|
+
body.bp h1, body.bp h2, body.bp h3, body.bp h4, body.bp h5, body.bp h6 {
|
69
|
+
font-weight: normal;
|
70
|
+
color: #222222;
|
71
|
+
}
|
72
|
+
/* line 52, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
73
|
+
body.bp h1 img, body.bp h2 img, body.bp h3 img, body.bp h4 img, body.bp h5 img, body.bp h6 img {
|
74
|
+
margin: 0;
|
75
|
+
}
|
76
|
+
/* line 53, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
77
|
+
body.bp h1 {
|
78
|
+
font-size: 3em;
|
79
|
+
line-height: 1;
|
80
|
+
margin-bottom: 0.50em;
|
81
|
+
}
|
82
|
+
/* line 54, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
83
|
+
body.bp h2 {
|
84
|
+
font-size: 2em;
|
85
|
+
margin-bottom: 0.75em;
|
86
|
+
}
|
87
|
+
/* line 55, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
88
|
+
body.bp h3 {
|
89
|
+
font-size: 1.5em;
|
90
|
+
line-height: 1;
|
91
|
+
margin-bottom: 1.00em;
|
92
|
+
}
|
93
|
+
/* line 56, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
94
|
+
body.bp h4 {
|
95
|
+
font-size: 1.2em;
|
96
|
+
line-height: 1.25;
|
97
|
+
margin-bottom: 1.25em;
|
98
|
+
}
|
99
|
+
/* line 57, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
100
|
+
body.bp h5 {
|
101
|
+
font-size: 1em;
|
102
|
+
font-weight: bold;
|
103
|
+
margin-bottom: 1.50em;
|
104
|
+
}
|
105
|
+
/* line 58, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
106
|
+
body.bp h6 {
|
107
|
+
font-size: 1em;
|
108
|
+
font-weight: bold;
|
109
|
+
}
|
110
|
+
/* line 59, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
111
|
+
body.bp p {
|
112
|
+
margin: 0 0 1.5em;
|
113
|
+
}
|
114
|
+
/* line 60, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
115
|
+
body.bp p .left {
|
116
|
+
display: inline;
|
117
|
+
float: left;
|
118
|
+
margin: 1.5em 1.5em 1.5em 0;
|
119
|
+
padding: 0;
|
120
|
+
}
|
121
|
+
/* line 61, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
122
|
+
body.bp p .right {
|
123
|
+
display: inline;
|
124
|
+
float: right;
|
125
|
+
margin: 1.5em 0 1.5em 1.5em;
|
126
|
+
padding: 0;
|
127
|
+
}
|
128
|
+
/* line 62, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
129
|
+
body.bp a {
|
130
|
+
text-decoration: underline;
|
131
|
+
color: #0066cc;
|
132
|
+
}
|
133
|
+
/* line 18, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
|
134
|
+
body.bp a:visited {
|
135
|
+
color: #004c99;
|
136
|
+
}
|
137
|
+
/* line 21, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
|
138
|
+
body.bp a:focus {
|
139
|
+
color: #0099ff;
|
140
|
+
}
|
141
|
+
/* line 24, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
|
142
|
+
body.bp a:hover {
|
143
|
+
color: #0099ff;
|
144
|
+
}
|
145
|
+
/* line 27, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */
|
146
|
+
body.bp a:active {
|
147
|
+
color: #bf00ff;
|
148
|
+
}
|
149
|
+
/* line 63, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
150
|
+
body.bp blockquote {
|
151
|
+
margin: 1.5em;
|
152
|
+
color: #666666;
|
153
|
+
font-style: italic;
|
154
|
+
}
|
155
|
+
/* line 64, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
156
|
+
body.bp strong, body.bp dfn {
|
157
|
+
font-weight: bold;
|
158
|
+
}
|
159
|
+
/* line 65, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
160
|
+
body.bp em, body.bp dfn {
|
161
|
+
font-style: italic;
|
162
|
+
}
|
163
|
+
/* line 66, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
164
|
+
body.bp sup, body.bp sub {
|
165
|
+
line-height: 0;
|
166
|
+
}
|
167
|
+
/* line 67, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
168
|
+
body.bp abbr, body.bp acronym {
|
169
|
+
border-bottom: 1px dotted #666666;
|
170
|
+
}
|
171
|
+
/* line 68, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
172
|
+
body.bp address {
|
173
|
+
margin: 0 0 1.5em;
|
174
|
+
font-style: italic;
|
175
|
+
}
|
176
|
+
/* line 69, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
177
|
+
body.bp del {
|
178
|
+
color: #666666;
|
179
|
+
}
|
180
|
+
/* line 70, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
181
|
+
body.bp pre {
|
182
|
+
margin: 1.5em 0;
|
183
|
+
white-space: pre;
|
184
|
+
}
|
185
|
+
/* line 71, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
186
|
+
body.bp pre, body.bp code, body.bp tt {
|
187
|
+
font: 1em "andale mono", "lucida console", monospace;
|
188
|
+
line-height: 1.5;
|
189
|
+
}
|
190
|
+
/* line 72, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
191
|
+
body.bp li ul, body.bp li ol {
|
192
|
+
margin: 0;
|
193
|
+
}
|
194
|
+
/* line 73, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
195
|
+
body.bp ul, body.bp ol {
|
196
|
+
margin: 0 1.5em 1.5em 0;
|
197
|
+
padding-left: 1.5em;
|
198
|
+
}
|
199
|
+
/* line 74, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
200
|
+
body.bp ul {
|
201
|
+
list-style-type: disc;
|
202
|
+
}
|
203
|
+
/* line 75, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
204
|
+
body.bp ol {
|
205
|
+
list-style-type: decimal;
|
206
|
+
}
|
207
|
+
/* line 76, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
208
|
+
body.bp dl {
|
209
|
+
margin: 0 0 1.5em 0;
|
210
|
+
}
|
211
|
+
/* line 77, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
212
|
+
body.bp dl dt {
|
213
|
+
font-weight: bold;
|
214
|
+
}
|
215
|
+
/* line 78, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
216
|
+
body.bp dd {
|
217
|
+
margin-left: 1.5em;
|
218
|
+
}
|
219
|
+
/* line 79, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
220
|
+
body.bp table {
|
221
|
+
margin-bottom: 1.4em;
|
222
|
+
width: 100%;
|
223
|
+
}
|
224
|
+
/* line 80, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
225
|
+
body.bp th {
|
226
|
+
font-weight: bold;
|
227
|
+
}
|
228
|
+
/* line 81, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
229
|
+
body.bp thead th {
|
230
|
+
background: #c3d9ff;
|
231
|
+
}
|
232
|
+
/* line 82, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
233
|
+
body.bp th, body.bp td, body.bp caption {
|
234
|
+
padding: 4px 10px 4px 5px;
|
235
|
+
}
|
236
|
+
/* line 85, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
237
|
+
body.bp table.striped tr:nth-child(even) td,
|
238
|
+
body.bp table tr.even td {
|
239
|
+
background: #e5ecf9;
|
240
|
+
}
|
241
|
+
/* line 86, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
242
|
+
body.bp tfoot {
|
243
|
+
font-style: italic;
|
244
|
+
}
|
245
|
+
/* line 87, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
246
|
+
body.bp caption {
|
247
|
+
background: #eeeeee;
|
248
|
+
}
|
249
|
+
/* line 88, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
250
|
+
body.bp .quiet {
|
251
|
+
color: #666666;
|
252
|
+
}
|
253
|
+
/* line 89, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_typography.scss */
|
254
|
+
body.bp .loud {
|
255
|
+
color: #111111;
|
256
|
+
}
|
257
|
+
/* line 9, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */
|
258
|
+
body.bp .clear {
|
259
|
+
clear: both;
|
260
|
+
}
|
261
|
+
/* line 12, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */
|
262
|
+
body.bp .nowrap {
|
263
|
+
white-space: nowrap;
|
264
|
+
}
|
265
|
+
/* line 16, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */
|
266
|
+
body.bp .clearfix {
|
267
|
+
overflow: hidden;
|
268
|
+
*zoom: 1;
|
269
|
+
}
|
270
|
+
/* line 18, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */
|
271
|
+
body.bp .small {
|
272
|
+
font-size: 0.8em;
|
273
|
+
margin-bottom: 1.875em;
|
274
|
+
line-height: 1.875em;
|
275
|
+
}
|
276
|
+
/* line 22, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */
|
277
|
+
body.bp .large {
|
278
|
+
font-size: 1.2em;
|
279
|
+
line-height: 2.5em;
|
280
|
+
margin-bottom: 1.25em;
|
281
|
+
}
|
282
|
+
/* line 26, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */
|
283
|
+
body.bp .first {
|
284
|
+
margin-left: 0;
|
285
|
+
padding-left: 0;
|
286
|
+
}
|
287
|
+
/* line 29, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */
|
288
|
+
body.bp .last {
|
289
|
+
margin-right: 0;
|
290
|
+
padding-right: 0;
|
291
|
+
}
|
292
|
+
/* line 32, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */
|
293
|
+
body.bp .top {
|
294
|
+
margin-top: 0;
|
295
|
+
padding-top: 0;
|
296
|
+
}
|
297
|
+
/* line 35, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_utilities.scss */
|
298
|
+
body.bp .bottom {
|
299
|
+
margin-bottom: 0;
|
300
|
+
padding-bottom: 0;
|
301
|
+
}
|
302
|
+
/* line 25, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_debug.scss */
|
303
|
+
body.bp .showgrid {
|
304
|
+
background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(5%, rgba(0, 0, 0, 0.5)), color-stop(5%, rgba(0, 0, 0, 0))), -webkit-gradient(linear, 0% 50%, 960 50%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(0%, rgba(100, 100, 225, 0.25)), color-stop(3.125%, rgba(100, 100, 225, 0.25)), color-stop(3.125%, rgba(0, 0, 0, 0)), color-stop(4.16667%, rgba(0, 0, 0, 0)), color-stop(4.16667%, rgba(100, 100, 225, 0.25)), color-stop(7.29167%, rgba(100, 100, 225, 0.25)), color-stop(7.29167%, rgba(0, 0, 0, 0)), color-stop(8.33333%, rgba(0, 0, 0, 0)), color-stop(8.33333%, rgba(100, 100, 225, 0.25)), color-stop(11.45833%, rgba(100, 100, 225, 0.25)), color-stop(11.45833%, rgba(0, 0, 0, 0)), color-stop(12.5%, rgba(0, 0, 0, 0)), color-stop(12.5%, rgba(100, 100, 225, 0.25)), color-stop(15.625%, rgba(100, 100, 225, 0.25)), color-stop(15.625%, rgba(0, 0, 0, 0)), color-stop(16.66667%, rgba(0, 0, 0, 0)), color-stop(16.66667%, rgba(100, 100, 225, 0.25)), color-stop(19.79167%, rgba(100, 100, 225, 0.25)), color-stop(19.79167%, rgba(0, 0, 0, 0)), color-stop(20.83333%, rgba(0, 0, 0, 0)), color-stop(20.83333%, rgba(100, 100, 225, 0.25)), color-stop(23.95833%, rgba(100, 100, 225, 0.25)), color-stop(23.95833%, rgba(0, 0, 0, 0)), color-stop(25%, rgba(0, 0, 0, 0)), color-stop(25%, rgba(100, 100, 225, 0.25)), color-stop(28.125%, rgba(100, 100, 225, 0.25)), color-stop(28.125%, rgba(0, 0, 0, 0)), color-stop(29.16667%, rgba(0, 0, 0, 0)), color-stop(29.16667%, rgba(100, 100, 225, 0.25)), color-stop(32.29167%, rgba(100, 100, 225, 0.25)), color-stop(32.29167%, rgba(0, 0, 0, 0)), color-stop(33.33333%, rgba(0, 0, 0, 0)), color-stop(33.33333%, rgba(100, 100, 225, 0.25)), color-stop(36.45833%, rgba(100, 100, 225, 0.25)), color-stop(36.45833%, rgba(0, 0, 0, 0)), color-stop(37.5%, rgba(0, 0, 0, 0)), color-stop(37.5%, rgba(100, 100, 225, 0.25)), color-stop(40.625%, rgba(100, 100, 225, 0.25)), color-stop(40.625%, rgba(0, 0, 0, 0)), color-stop(41.66667%, rgba(0, 0, 0, 0)), color-stop(41.66667%, rgba(100, 100, 225, 0.25)), color-stop(44.79167%, rgba(100, 100, 225, 0.25)), color-stop(44.79167%, rgba(0, 0, 0, 0)), color-stop(45.83333%, rgba(0, 0, 0, 0)), color-stop(45.83333%, rgba(100, 100, 225, 0.25)), color-stop(48.95833%, rgba(100, 100, 225, 0.25)), color-stop(48.95833%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(100, 100, 225, 0.25)), color-stop(53.125%, rgba(100, 100, 225, 0.25)), color-stop(53.125%, rgba(0, 0, 0, 0)), color-stop(54.16667%, rgba(0, 0, 0, 0)), color-stop(54.16667%, rgba(100, 100, 225, 0.25)), color-stop(57.29167%, rgba(100, 100, 225, 0.25)), color-stop(57.29167%, rgba(0, 0, 0, 0)), color-stop(58.33333%, rgba(0, 0, 0, 0)), color-stop(58.33333%, rgba(100, 100, 225, 0.25)), color-stop(61.45833%, rgba(100, 100, 225, 0.25)), color-stop(61.45833%, rgba(0, 0, 0, 0)), color-stop(62.5%, rgba(0, 0, 0, 0)), color-stop(62.5%, rgba(100, 100, 225, 0.25)), color-stop(65.625%, rgba(100, 100, 225, 0.25)), color-stop(65.625%, rgba(0, 0, 0, 0)), color-stop(66.66667%, rgba(0, 0, 0, 0)), color-stop(66.66667%, rgba(100, 100, 225, 0.25)), color-stop(69.79167%, rgba(100, 100, 225, 0.25)), color-stop(69.79167%, rgba(0, 0, 0, 0)), color-stop(70.83333%, rgba(0, 0, 0, 0)), color-stop(70.83333%, rgba(100, 100, 225, 0.25)), color-stop(73.95833%, rgba(100, 100, 225, 0.25)), color-stop(73.95833%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(0, 0, 0, 0)), color-stop(75%, rgba(100, 100, 225, 0.25)), color-stop(78.125%, rgba(100, 100, 225, 0.25)), color-stop(78.125%, rgba(0, 0, 0, 0)), color-stop(79.16667%, rgba(0, 0, 0, 0)), color-stop(79.16667%, rgba(100, 100, 225, 0.25)), color-stop(82.29167%, rgba(100, 100, 225, 0.25)), color-stop(82.29167%, rgba(0, 0, 0, 0)), color-stop(83.33333%, rgba(0, 0, 0, 0)), color-stop(83.33333%, rgba(100, 100, 225, 0.25)), color-stop(86.45833%, rgba(100, 100, 225, 0.25)), color-stop(86.45833%, rgba(0, 0, 0, 0)), color-stop(87.5%, rgba(0, 0, 0, 0)), color-stop(87.5%, rgba(100, 100, 225, 0.25)), color-stop(90.625%, rgba(100, 100, 225, 0.25)), color-stop(90.625%, rgba(0, 0, 0, 0)), color-stop(91.66667%, rgba(0, 0, 0, 0)), color-stop(91.66667%, rgba(100, 100, 225, 0.25)), color-stop(94.79167%, rgba(100, 100, 225, 0.25)), color-stop(94.79167%, rgba(0, 0, 0, 0)), color-stop(95.83333%, rgba(0, 0, 0, 0)), color-stop(95.83333%, rgba(100, 100, 225, 0.25)), color-stop(98.95833%, rgba(100, 100, 225, 0.25)), color-stop(98.95833%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0)));
|
305
|
+
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0px, rgba(100, 100, 225, 0.25) 0px, rgba(100, 100, 225, 0.25) 30px, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 40px, rgba(100, 100, 225, 0.25) 40px, rgba(100, 100, 225, 0.25) 70px, rgba(0, 0, 0, 0) 70px, rgba(0, 0, 0, 0) 80px, rgba(100, 100, 225, 0.25) 80px, rgba(100, 100, 225, 0.25) 110px, rgba(0, 0, 0, 0) 110px, rgba(0, 0, 0, 0) 120px, rgba(100, 100, 225, 0.25) 120px, rgba(100, 100, 225, 0.25) 150px, rgba(0, 0, 0, 0) 150px, rgba(0, 0, 0, 0) 160px, rgba(100, 100, 225, 0.25) 160px, rgba(100, 100, 225, 0.25) 190px, rgba(0, 0, 0, 0) 190px, rgba(0, 0, 0, 0) 200px, rgba(100, 100, 225, 0.25) 200px, rgba(100, 100, 225, 0.25) 230px, rgba(0, 0, 0, 0) 230px, rgba(0, 0, 0, 0) 240px, rgba(100, 100, 225, 0.25) 240px, rgba(100, 100, 225, 0.25) 270px, rgba(0, 0, 0, 0) 270px, rgba(0, 0, 0, 0) 280px, rgba(100, 100, 225, 0.25) 280px, rgba(100, 100, 225, 0.25) 310px, rgba(0, 0, 0, 0) 310px, rgba(0, 0, 0, 0) 320px, rgba(100, 100, 225, 0.25) 320px, rgba(100, 100, 225, 0.25) 350px, rgba(0, 0, 0, 0) 350px, rgba(0, 0, 0, 0) 360px, rgba(100, 100, 225, 0.25) 360px, rgba(100, 100, 225, 0.25) 390px, rgba(0, 0, 0, 0) 390px, rgba(0, 0, 0, 0) 400px, rgba(100, 100, 225, 0.25) 400px, rgba(100, 100, 225, 0.25) 430px, rgba(0, 0, 0, 0) 430px, rgba(0, 0, 0, 0) 440px, rgba(100, 100, 225, 0.25) 440px, rgba(100, 100, 225, 0.25) 470px, rgba(0, 0, 0, 0) 470px, rgba(0, 0, 0, 0) 480px, rgba(100, 100, 225, 0.25) 480px, rgba(100, 100, 225, 0.25) 510px, rgba(0, 0, 0, 0) 510px, rgba(0, 0, 0, 0) 520px, rgba(100, 100, 225, 0.25) 520px, rgba(100, 100, 225, 0.25) 550px, rgba(0, 0, 0, 0) 550px, rgba(0, 0, 0, 0) 560px, rgba(100, 100, 225, 0.25) 560px, rgba(100, 100, 225, 0.25) 590px, rgba(0, 0, 0, 0) 590px, rgba(0, 0, 0, 0) 600px, rgba(100, 100, 225, 0.25) 600px, rgba(100, 100, 225, 0.25) 630px, rgba(0, 0, 0, 0) 630px, rgba(0, 0, 0, 0) 640px, rgba(100, 100, 225, 0.25) 640px, rgba(100, 100, 225, 0.25) 670px, rgba(0, 0, 0, 0) 670px, rgba(0, 0, 0, 0) 680px, rgba(100, 100, 225, 0.25) 680px, rgba(100, 100, 225, 0.25) 710px, rgba(0, 0, 0, 0) 710px, rgba(0, 0, 0, 0) 720px, rgba(100, 100, 225, 0.25) 720px, rgba(100, 100, 225, 0.25) 750px, rgba(0, 0, 0, 0) 750px, rgba(0, 0, 0, 0) 760px, rgba(100, 100, 225, 0.25) 760px, rgba(100, 100, 225, 0.25) 790px, rgba(0, 0, 0, 0) 790px, rgba(0, 0, 0, 0) 800px, rgba(100, 100, 225, 0.25) 800px, rgba(100, 100, 225, 0.25) 830px, rgba(0, 0, 0, 0) 830px, rgba(0, 0, 0, 0) 840px, rgba(100, 100, 225, 0.25) 840px, rgba(100, 100, 225, 0.25) 870px, rgba(0, 0, 0, 0) 870px, rgba(0, 0, 0, 0) 880px, rgba(100, 100, 225, 0.25) 880px, rgba(100, 100, 225, 0.25) 910px, rgba(0, 0, 0, 0) 910px, rgba(0, 0, 0, 0) 920px, rgba(100, 100, 225, 0.25) 920px, rgba(100, 100, 225, 0.25) 950px, rgba(0, 0, 0, 0) 950px, rgba(0, 0, 0, 0) 960px);
|
306
|
+
background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0px, rgba(100, 100, 225, 0.25) 0px, rgba(100, 100, 225, 0.25) 30px, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 40px, rgba(100, 100, 225, 0.25) 40px, rgba(100, 100, 225, 0.25) 70px, rgba(0, 0, 0, 0) 70px, rgba(0, 0, 0, 0) 80px, rgba(100, 100, 225, 0.25) 80px, rgba(100, 100, 225, 0.25) 110px, rgba(0, 0, 0, 0) 110px, rgba(0, 0, 0, 0) 120px, rgba(100, 100, 225, 0.25) 120px, rgba(100, 100, 225, 0.25) 150px, rgba(0, 0, 0, 0) 150px, rgba(0, 0, 0, 0) 160px, rgba(100, 100, 225, 0.25) 160px, rgba(100, 100, 225, 0.25) 190px, rgba(0, 0, 0, 0) 190px, rgba(0, 0, 0, 0) 200px, rgba(100, 100, 225, 0.25) 200px, rgba(100, 100, 225, 0.25) 230px, rgba(0, 0, 0, 0) 230px, rgba(0, 0, 0, 0) 240px, rgba(100, 100, 225, 0.25) 240px, rgba(100, 100, 225, 0.25) 270px, rgba(0, 0, 0, 0) 270px, rgba(0, 0, 0, 0) 280px, rgba(100, 100, 225, 0.25) 280px, rgba(100, 100, 225, 0.25) 310px, rgba(0, 0, 0, 0) 310px, rgba(0, 0, 0, 0) 320px, rgba(100, 100, 225, 0.25) 320px, rgba(100, 100, 225, 0.25) 350px, rgba(0, 0, 0, 0) 350px, rgba(0, 0, 0, 0) 360px, rgba(100, 100, 225, 0.25) 360px, rgba(100, 100, 225, 0.25) 390px, rgba(0, 0, 0, 0) 390px, rgba(0, 0, 0, 0) 400px, rgba(100, 100, 225, 0.25) 400px, rgba(100, 100, 225, 0.25) 430px, rgba(0, 0, 0, 0) 430px, rgba(0, 0, 0, 0) 440px, rgba(100, 100, 225, 0.25) 440px, rgba(100, 100, 225, 0.25) 470px, rgba(0, 0, 0, 0) 470px, rgba(0, 0, 0, 0) 480px, rgba(100, 100, 225, 0.25) 480px, rgba(100, 100, 225, 0.25) 510px, rgba(0, 0, 0, 0) 510px, rgba(0, 0, 0, 0) 520px, rgba(100, 100, 225, 0.25) 520px, rgba(100, 100, 225, 0.25) 550px, rgba(0, 0, 0, 0) 550px, rgba(0, 0, 0, 0) 560px, rgba(100, 100, 225, 0.25) 560px, rgba(100, 100, 225, 0.25) 590px, rgba(0, 0, 0, 0) 590px, rgba(0, 0, 0, 0) 600px, rgba(100, 100, 225, 0.25) 600px, rgba(100, 100, 225, 0.25) 630px, rgba(0, 0, 0, 0) 630px, rgba(0, 0, 0, 0) 640px, rgba(100, 100, 225, 0.25) 640px, rgba(100, 100, 225, 0.25) 670px, rgba(0, 0, 0, 0) 670px, rgba(0, 0, 0, 0) 680px, rgba(100, 100, 225, 0.25) 680px, rgba(100, 100, 225, 0.25) 710px, rgba(0, 0, 0, 0) 710px, rgba(0, 0, 0, 0) 720px, rgba(100, 100, 225, 0.25) 720px, rgba(100, 100, 225, 0.25) 750px, rgba(0, 0, 0, 0) 750px, rgba(0, 0, 0, 0) 760px, rgba(100, 100, 225, 0.25) 760px, rgba(100, 100, 225, 0.25) 790px, rgba(0, 0, 0, 0) 790px, rgba(0, 0, 0, 0) 800px, rgba(100, 100, 225, 0.25) 800px, rgba(100, 100, 225, 0.25) 830px, rgba(0, 0, 0, 0) 830px, rgba(0, 0, 0, 0) 840px, rgba(100, 100, 225, 0.25) 840px, rgba(100, 100, 225, 0.25) 870px, rgba(0, 0, 0, 0) 870px, rgba(0, 0, 0, 0) 880px, rgba(100, 100, 225, 0.25) 880px, rgba(100, 100, 225, 0.25) 910px, rgba(0, 0, 0, 0) 910px, rgba(0, 0, 0, 0) 920px, rgba(100, 100, 225, 0.25) 920px, rgba(100, 100, 225, 0.25) 950px, rgba(0, 0, 0, 0) 950px, rgba(0, 0, 0, 0) 960px);
|
307
|
+
background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), -o-linear-gradient(left, rgba(0, 0, 0, 0) 0px, rgba(100, 100, 225, 0.25) 0px, rgba(100, 100, 225, 0.25) 30px, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 40px, rgba(100, 100, 225, 0.25) 40px, rgba(100, 100, 225, 0.25) 70px, rgba(0, 0, 0, 0) 70px, rgba(0, 0, 0, 0) 80px, rgba(100, 100, 225, 0.25) 80px, rgba(100, 100, 225, 0.25) 110px, rgba(0, 0, 0, 0) 110px, rgba(0, 0, 0, 0) 120px, rgba(100, 100, 225, 0.25) 120px, rgba(100, 100, 225, 0.25) 150px, rgba(0, 0, 0, 0) 150px, rgba(0, 0, 0, 0) 160px, rgba(100, 100, 225, 0.25) 160px, rgba(100, 100, 225, 0.25) 190px, rgba(0, 0, 0, 0) 190px, rgba(0, 0, 0, 0) 200px, rgba(100, 100, 225, 0.25) 200px, rgba(100, 100, 225, 0.25) 230px, rgba(0, 0, 0, 0) 230px, rgba(0, 0, 0, 0) 240px, rgba(100, 100, 225, 0.25) 240px, rgba(100, 100, 225, 0.25) 270px, rgba(0, 0, 0, 0) 270px, rgba(0, 0, 0, 0) 280px, rgba(100, 100, 225, 0.25) 280px, rgba(100, 100, 225, 0.25) 310px, rgba(0, 0, 0, 0) 310px, rgba(0, 0, 0, 0) 320px, rgba(100, 100, 225, 0.25) 320px, rgba(100, 100, 225, 0.25) 350px, rgba(0, 0, 0, 0) 350px, rgba(0, 0, 0, 0) 360px, rgba(100, 100, 225, 0.25) 360px, rgba(100, 100, 225, 0.25) 390px, rgba(0, 0, 0, 0) 390px, rgba(0, 0, 0, 0) 400px, rgba(100, 100, 225, 0.25) 400px, rgba(100, 100, 225, 0.25) 430px, rgba(0, 0, 0, 0) 430px, rgba(0, 0, 0, 0) 440px, rgba(100, 100, 225, 0.25) 440px, rgba(100, 100, 225, 0.25) 470px, rgba(0, 0, 0, 0) 470px, rgba(0, 0, 0, 0) 480px, rgba(100, 100, 225, 0.25) 480px, rgba(100, 100, 225, 0.25) 510px, rgba(0, 0, 0, 0) 510px, rgba(0, 0, 0, 0) 520px, rgba(100, 100, 225, 0.25) 520px, rgba(100, 100, 225, 0.25) 550px, rgba(0, 0, 0, 0) 550px, rgba(0, 0, 0, 0) 560px, rgba(100, 100, 225, 0.25) 560px, rgba(100, 100, 225, 0.25) 590px, rgba(0, 0, 0, 0) 590px, rgba(0, 0, 0, 0) 600px, rgba(100, 100, 225, 0.25) 600px, rgba(100, 100, 225, 0.25) 630px, rgba(0, 0, 0, 0) 630px, rgba(0, 0, 0, 0) 640px, rgba(100, 100, 225, 0.25) 640px, rgba(100, 100, 225, 0.25) 670px, rgba(0, 0, 0, 0) 670px, rgba(0, 0, 0, 0) 680px, rgba(100, 100, 225, 0.25) 680px, rgba(100, 100, 225, 0.25) 710px, rgba(0, 0, 0, 0) 710px, rgba(0, 0, 0, 0) 720px, rgba(100, 100, 225, 0.25) 720px, rgba(100, 100, 225, 0.25) 750px, rgba(0, 0, 0, 0) 750px, rgba(0, 0, 0, 0) 760px, rgba(100, 100, 225, 0.25) 760px, rgba(100, 100, 225, 0.25) 790px, rgba(0, 0, 0, 0) 790px, rgba(0, 0, 0, 0) 800px, rgba(100, 100, 225, 0.25) 800px, rgba(100, 100, 225, 0.25) 830px, rgba(0, 0, 0, 0) 830px, rgba(0, 0, 0, 0) 840px, rgba(100, 100, 225, 0.25) 840px, rgba(100, 100, 225, 0.25) 870px, rgba(0, 0, 0, 0) 870px, rgba(0, 0, 0, 0) 880px, rgba(100, 100, 225, 0.25) 880px, rgba(100, 100, 225, 0.25) 910px, rgba(0, 0, 0, 0) 910px, rgba(0, 0, 0, 0) 920px, rgba(100, 100, 225, 0.25) 920px, rgba(100, 100, 225, 0.25) 950px, rgba(0, 0, 0, 0) 950px, rgba(0, 0, 0, 0) 960px);
|
308
|
+
background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), linear-gradient(left, rgba(0, 0, 0, 0) 0px, rgba(100, 100, 225, 0.25) 0px, rgba(100, 100, 225, 0.25) 30px, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 40px, rgba(100, 100, 225, 0.25) 40px, rgba(100, 100, 225, 0.25) 70px, rgba(0, 0, 0, 0) 70px, rgba(0, 0, 0, 0) 80px, rgba(100, 100, 225, 0.25) 80px, rgba(100, 100, 225, 0.25) 110px, rgba(0, 0, 0, 0) 110px, rgba(0, 0, 0, 0) 120px, rgba(100, 100, 225, 0.25) 120px, rgba(100, 100, 225, 0.25) 150px, rgba(0, 0, 0, 0) 150px, rgba(0, 0, 0, 0) 160px, rgba(100, 100, 225, 0.25) 160px, rgba(100, 100, 225, 0.25) 190px, rgba(0, 0, 0, 0) 190px, rgba(0, 0, 0, 0) 200px, rgba(100, 100, 225, 0.25) 200px, rgba(100, 100, 225, 0.25) 230px, rgba(0, 0, 0, 0) 230px, rgba(0, 0, 0, 0) 240px, rgba(100, 100, 225, 0.25) 240px, rgba(100, 100, 225, 0.25) 270px, rgba(0, 0, 0, 0) 270px, rgba(0, 0, 0, 0) 280px, rgba(100, 100, 225, 0.25) 280px, rgba(100, 100, 225, 0.25) 310px, rgba(0, 0, 0, 0) 310px, rgba(0, 0, 0, 0) 320px, rgba(100, 100, 225, 0.25) 320px, rgba(100, 100, 225, 0.25) 350px, rgba(0, 0, 0, 0) 350px, rgba(0, 0, 0, 0) 360px, rgba(100, 100, 225, 0.25) 360px, rgba(100, 100, 225, 0.25) 390px, rgba(0, 0, 0, 0) 390px, rgba(0, 0, 0, 0) 400px, rgba(100, 100, 225, 0.25) 400px, rgba(100, 100, 225, 0.25) 430px, rgba(0, 0, 0, 0) 430px, rgba(0, 0, 0, 0) 440px, rgba(100, 100, 225, 0.25) 440px, rgba(100, 100, 225, 0.25) 470px, rgba(0, 0, 0, 0) 470px, rgba(0, 0, 0, 0) 480px, rgba(100, 100, 225, 0.25) 480px, rgba(100, 100, 225, 0.25) 510px, rgba(0, 0, 0, 0) 510px, rgba(0, 0, 0, 0) 520px, rgba(100, 100, 225, 0.25) 520px, rgba(100, 100, 225, 0.25) 550px, rgba(0, 0, 0, 0) 550px, rgba(0, 0, 0, 0) 560px, rgba(100, 100, 225, 0.25) 560px, rgba(100, 100, 225, 0.25) 590px, rgba(0, 0, 0, 0) 590px, rgba(0, 0, 0, 0) 600px, rgba(100, 100, 225, 0.25) 600px, rgba(100, 100, 225, 0.25) 630px, rgba(0, 0, 0, 0) 630px, rgba(0, 0, 0, 0) 640px, rgba(100, 100, 225, 0.25) 640px, rgba(100, 100, 225, 0.25) 670px, rgba(0, 0, 0, 0) 670px, rgba(0, 0, 0, 0) 680px, rgba(100, 100, 225, 0.25) 680px, rgba(100, 100, 225, 0.25) 710px, rgba(0, 0, 0, 0) 710px, rgba(0, 0, 0, 0) 720px, rgba(100, 100, 225, 0.25) 720px, rgba(100, 100, 225, 0.25) 750px, rgba(0, 0, 0, 0) 750px, rgba(0, 0, 0, 0) 760px, rgba(100, 100, 225, 0.25) 760px, rgba(100, 100, 225, 0.25) 790px, rgba(0, 0, 0, 0) 790px, rgba(0, 0, 0, 0) 800px, rgba(100, 100, 225, 0.25) 800px, rgba(100, 100, 225, 0.25) 830px, rgba(0, 0, 0, 0) 830px, rgba(0, 0, 0, 0) 840px, rgba(100, 100, 225, 0.25) 840px, rgba(100, 100, 225, 0.25) 870px, rgba(0, 0, 0, 0) 870px, rgba(0, 0, 0, 0) 880px, rgba(100, 100, 225, 0.25) 880px, rgba(100, 100, 225, 0.25) 910px, rgba(0, 0, 0, 0) 910px, rgba(0, 0, 0, 0) 920px, rgba(100, 100, 225, 0.25) 920px, rgba(100, 100, 225, 0.25) 950px, rgba(0, 0, 0, 0) 950px, rgba(0, 0, 0, 0) 960px);
|
309
|
+
-webkit-background-size: 100% 18px, auto;
|
310
|
+
-moz-background-size: 100% 18px, auto;
|
311
|
+
-o-background-size: 100% 18px, auto;
|
312
|
+
background-size: 100% 18px, auto;
|
313
|
+
background-position: left top;
|
314
|
+
}
|
315
|
+
/* line 4, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
316
|
+
body.bp .feedback, body.bp .error, body.bp .alert, body.bp .notice, body.bp .success, body.bp .info {
|
317
|
+
padding: 0.8em;
|
318
|
+
margin-bottom: 1em;
|
319
|
+
border: 2px solid #dddddd;
|
320
|
+
}
|
321
|
+
/* line 5, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
322
|
+
body.bp .error, body.bp .alert {
|
323
|
+
background: #fbe3e4;
|
324
|
+
color: #8a1f11;
|
325
|
+
border-color: #fbc2c4;
|
326
|
+
}
|
327
|
+
/* line 27, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
328
|
+
body.bp .error a, body.bp .alert a {
|
329
|
+
color: #8a1f11;
|
330
|
+
}
|
331
|
+
/* line 7, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
332
|
+
body.bp .notice {
|
333
|
+
background: #fff6bf;
|
334
|
+
color: #514721;
|
335
|
+
border-color: #ffd324;
|
336
|
+
}
|
337
|
+
/* line 36, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
338
|
+
body.bp .notice a {
|
339
|
+
color: #514721;
|
340
|
+
}
|
341
|
+
/* line 8, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
342
|
+
body.bp .success {
|
343
|
+
background: #e6efc2;
|
344
|
+
color: #264409;
|
345
|
+
border-color: #c6d880;
|
346
|
+
}
|
347
|
+
/* line 45, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
348
|
+
body.bp .success a {
|
349
|
+
color: #264409;
|
350
|
+
}
|
351
|
+
/* line 9, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
352
|
+
body.bp .info {
|
353
|
+
background: #d5edf8;
|
354
|
+
color: #205791;
|
355
|
+
border-color: #92cae4;
|
356
|
+
}
|
357
|
+
/* line 54, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
358
|
+
body.bp .info a {
|
359
|
+
color: #205791;
|
360
|
+
}
|
361
|
+
/* line 10, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
362
|
+
body.bp .hide {
|
363
|
+
display: none;
|
364
|
+
}
|
365
|
+
/* line 11, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
366
|
+
body.bp .highlight {
|
367
|
+
background: yellow;
|
368
|
+
}
|
369
|
+
/* line 12, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
370
|
+
body.bp .added {
|
371
|
+
background: #006600;
|
372
|
+
color: white;
|
373
|
+
}
|
374
|
+
/* line 13, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_interaction.scss */
|
375
|
+
body.bp .removed {
|
376
|
+
background: #990000;
|
377
|
+
color: white;
|
378
|
+
}
|
379
|
+
|
380
|
+
/* line 18, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
381
|
+
form.bp label {
|
382
|
+
font-weight: bold;
|
383
|
+
}
|
384
|
+
/* line 19, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
385
|
+
form.bp fieldset {
|
386
|
+
padding: 1.4em;
|
387
|
+
margin: 0 0 1.5em 0;
|
388
|
+
}
|
389
|
+
/* line 20, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
390
|
+
form.bp legend {
|
391
|
+
font-weight: bold;
|
392
|
+
font-size: 1.2em;
|
393
|
+
}
|
394
|
+
/* line 26, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
395
|
+
form.bp input.text, form.bp input.title, form.bp input[type=email], form.bp input[type=text], form.bp input[type=password] {
|
396
|
+
margin: 0.5em 0;
|
397
|
+
background-color: white;
|
398
|
+
padding: 5px;
|
399
|
+
}
|
400
|
+
/* line 27, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
401
|
+
form.bp input.title {
|
402
|
+
font-size: 1.5em;
|
403
|
+
}
|
404
|
+
/* line 29, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
405
|
+
form.bp textarea {
|
406
|
+
margin: 0.5em 0;
|
407
|
+
padding: 5px;
|
408
|
+
}
|
409
|
+
/* line 30, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
410
|
+
form.bp select {
|
411
|
+
margin: 0.5em 0;
|
412
|
+
}
|
413
|
+
/* line 55, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
414
|
+
form.bp fieldset {
|
415
|
+
border: 1px solid #cccccc;
|
416
|
+
}
|
417
|
+
/* line 58, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
418
|
+
form.bp input.text, form.bp input.title, form.bp input[type=email], form.bp input[type=text], form.bp input[type=password],
|
419
|
+
form.bp textarea {
|
420
|
+
background-color: #fff;
|
421
|
+
border: 1px solid #bbbbbb;
|
422
|
+
}
|
423
|
+
/* line 61, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
424
|
+
form.bp input.text:focus, form.bp input.title:focus, form.bp input[type=email]:focus, form.bp input[type=text]:focus, form.bp input[type=password]:focus,
|
425
|
+
form.bp textarea:focus {
|
426
|
+
border-color: #666666;
|
427
|
+
}
|
428
|
+
/* line 65, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
429
|
+
form.bp select {
|
430
|
+
background-color: #fff;
|
431
|
+
border-width: 1px;
|
432
|
+
border-style: solid;
|
433
|
+
}
|
434
|
+
/* line 44, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
435
|
+
form.bp input.text, form.bp input.title, form.bp input[type=email], form.bp input[type=text], form.bp input[type=password] {
|
436
|
+
width: 300px;
|
437
|
+
}
|
438
|
+
/* line 46, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
439
|
+
form.bp textarea {
|
440
|
+
width: 390px;
|
441
|
+
height: 250px;
|
442
|
+
}
|
443
|
+
/* line 39, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss */
|
444
|
+
form.bp .box {
|
445
|
+
padding: 1.5em;
|
446
|
+
margin-bottom: 1.5em;
|
447
|
+
background: #e5ecf9;
|
448
|
+
}
|
449
|
+
/* line 42, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss */
|
450
|
+
form.bp .border {
|
451
|
+
padding-right: 4px;
|
452
|
+
margin-right: 5px;
|
453
|
+
border-right: 1px solid #dddddd;
|
454
|
+
}
|
455
|
+
/* line 45, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss */
|
456
|
+
form.bp .colborder {
|
457
|
+
padding-right: 24px;
|
458
|
+
margin-right: 25px;
|
459
|
+
border-right: 1px solid #dddddd;
|
460
|
+
}
|
461
|
+
/* line 47, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss */
|
462
|
+
form.bp hr {
|
463
|
+
background: #dddddd;
|
464
|
+
color: #dddddd;
|
465
|
+
clear: both;
|
466
|
+
float: none;
|
467
|
+
width: 100%;
|
468
|
+
height: 0.1em;
|
469
|
+
margin: 0 0 1.45em;
|
470
|
+
border: none;
|
471
|
+
}
|
472
|
+
/* line 49, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss */
|
473
|
+
form.bp hr.space {
|
474
|
+
background: #dddddd;
|
475
|
+
color: #dddddd;
|
476
|
+
clear: both;
|
477
|
+
float: none;
|
478
|
+
width: 100%;
|
479
|
+
height: 0.1em;
|
480
|
+
margin: 0 0 1.45em;
|
481
|
+
border: none;
|
482
|
+
background: white;
|
483
|
+
color: white;
|
484
|
+
visibility: hidden;
|
485
|
+
}
|
486
|
+
/* line 51, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_scaffolding.scss */
|
487
|
+
form.bp form.inline {
|
488
|
+
line-height: 3;
|
489
|
+
}
|
490
|
+
/* line 6, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_form.scss */
|
491
|
+
form.bp form.inline p {
|
492
|
+
margin-bottom: 0;
|
493
|
+
}
|
494
|
+
|
495
|
+
/* line 37, ../sass/myblueraven.scss */
|
496
|
+
body.two-col #container {
|
497
|
+
width: 950px;
|
498
|
+
margin: 0 auto;
|
499
|
+
overflow: hidden;
|
500
|
+
*zoom: 1;
|
501
|
+
}
|
502
|
+
/* line 40, ../sass/myblueraven.scss */
|
503
|
+
body.two-col #header, body.two-col #footer {
|
504
|
+
display: inline;
|
505
|
+
float: left;
|
506
|
+
margin-right: 10px;
|
507
|
+
width: 950px;
|
508
|
+
}
|
509
|
+
/* line 147, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_grid.scss */
|
510
|
+
* html body.two-col #header, * html body.two-col #footer {
|
511
|
+
overflow-x: hidden;
|
512
|
+
}
|
513
|
+
/* line 43, ../sass/myblueraven.scss */
|
514
|
+
body.two-col #sidebar {
|
515
|
+
display: inline;
|
516
|
+
float: left;
|
517
|
+
margin-right: 10px;
|
518
|
+
width: 310px;
|
519
|
+
}
|
520
|
+
/* line 147, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_grid.scss */
|
521
|
+
* html body.two-col #sidebar {
|
522
|
+
overflow-x: hidden;
|
523
|
+
}
|
524
|
+
/* line 48, ../sass/myblueraven.scss */
|
525
|
+
body.two-col #content {
|
526
|
+
display: inline;
|
527
|
+
float: left;
|
528
|
+
margin-right: 0;
|
529
|
+
width: 630px;
|
530
|
+
}
|
531
|
+
/* line 147, ../../../../../../../var/lib/gems/1.8/gems/compass-0.12.2/frameworks/blueprint/stylesheets/blueprint/_grid.scss */
|
532
|
+
* html body.two-col #content {
|
533
|
+
overflow-x: hidden;
|
534
|
+
}
|
535
|
+
|
536
|
+
/* Shared CSS for AsciiDoc xhtml11 and html5 backends */
|
537
|
+
/* Default font. */
|
538
|
+
/* line 5, ../sass/partials/_asciidoc.scss */
|
539
|
+
body {
|
540
|
+
font-family: Georgia,serif;
|
541
|
+
}
|
542
|
+
|
543
|
+
/* Title font. */
|
544
|
+
/* line 11, ../sass/partials/_asciidoc.scss */
|
545
|
+
h1, h2, h3, h4, h5, h6, div.title, caption.title, thead, p.table.header, #toctitle, #author, #revnumber, #revdate, #revremark, #footer {
|
546
|
+
font-family: Arial,Helvetica,sans-serif;
|
547
|
+
}
|
548
|
+
|
549
|
+
/* line 15, ../sass/partials/_asciidoc.scss */
|
550
|
+
body {
|
551
|
+
margin: 1em 5% 1em 5%;
|
552
|
+
}
|
553
|
+
|
554
|
+
/* line 19, ../sass/partials/_asciidoc.scss */
|
555
|
+
a {
|
556
|
+
color: blue;
|
557
|
+
text-decoration: underline;
|
558
|
+
}
|
559
|
+
/* line 22, ../sass/partials/_asciidoc.scss */
|
560
|
+
a:visited {
|
561
|
+
color: fuchsia;
|
562
|
+
}
|
563
|
+
|
564
|
+
/* line 27, ../sass/partials/_asciidoc.scss */
|
565
|
+
em {
|
566
|
+
font-style: italic;
|
567
|
+
color: navy;
|
568
|
+
}
|
569
|
+
|
570
|
+
/* line 32, ../sass/partials/_asciidoc.scss */
|
571
|
+
strong {
|
572
|
+
font-weight: bold;
|
573
|
+
color: #083194;
|
574
|
+
}
|
575
|
+
|
576
|
+
/* line 37, ../sass/partials/_asciidoc.scss */
|
577
|
+
h1, h2, h3, h4, h5, h6 {
|
578
|
+
color: #527bbd;
|
579
|
+
margin-top: 1.2em;
|
580
|
+
margin-bottom: 0.5em;
|
581
|
+
line-height: 1.3;
|
582
|
+
}
|
583
|
+
|
584
|
+
/* line 44, ../sass/partials/_asciidoc.scss */
|
585
|
+
h1, h2, h3 {
|
586
|
+
border-bottom: 2px solid silver;
|
587
|
+
}
|
588
|
+
|
589
|
+
/* line 48, ../sass/partials/_asciidoc.scss */
|
590
|
+
h2 {
|
591
|
+
padding-top: 0.5em;
|
592
|
+
}
|
593
|
+
|
594
|
+
/* line 52, ../sass/partials/_asciidoc.scss */
|
595
|
+
h3 {
|
596
|
+
float: left;
|
597
|
+
}
|
598
|
+
/* line 54, ../sass/partials/_asciidoc.scss */
|
599
|
+
h3 + * {
|
600
|
+
clear: left;
|
601
|
+
}
|
602
|
+
|
603
|
+
/* line 59, ../sass/partials/_asciidoc.scss */
|
604
|
+
h5 {
|
605
|
+
font-size: 1.0em;
|
606
|
+
}
|
607
|
+
|
608
|
+
/* line 63, ../sass/partials/_asciidoc.scss */
|
609
|
+
div.sectionbody {
|
610
|
+
margin-left: 0;
|
611
|
+
}
|
612
|
+
|
613
|
+
/* line 67, ../sass/partials/_asciidoc.scss */
|
614
|
+
hr {
|
615
|
+
border: 1px solid silver;
|
616
|
+
}
|
617
|
+
|
618
|
+
/* line 71, ../sass/partials/_asciidoc.scss */
|
619
|
+
p {
|
620
|
+
margin-top: 0.5em;
|
621
|
+
margin-bottom: 0.5em;
|
622
|
+
}
|
623
|
+
|
624
|
+
/* line 76, ../sass/partials/_asciidoc.scss */
|
625
|
+
ul, ol, li > p {
|
626
|
+
margin-top: 0;
|
627
|
+
}
|
628
|
+
|
629
|
+
/* line 80, ../sass/partials/_asciidoc.scss */
|
630
|
+
ul > li {
|
631
|
+
color: #aaa;
|
632
|
+
}
|
633
|
+
/* line 82, ../sass/partials/_asciidoc.scss */
|
634
|
+
ul > li > * {
|
635
|
+
color: black;
|
636
|
+
}
|
637
|
+
|
638
|
+
/* line 87, ../sass/partials/_asciidoc.scss */
|
639
|
+
pre {
|
640
|
+
padding: 0;
|
641
|
+
margin: 0;
|
642
|
+
}
|
643
|
+
|
644
|
+
/* line 92, ../sass/partials/_asciidoc.scss */
|
645
|
+
#author {
|
646
|
+
color: #527bbd;
|
647
|
+
font-weight: bold;
|
648
|
+
font-size: 1.1em;
|
649
|
+
}
|
650
|
+
|
651
|
+
/* line 100, ../sass/partials/_asciidoc.scss */
|
652
|
+
#footer {
|
653
|
+
font-size: small;
|
654
|
+
border-top: 2px solid silver;
|
655
|
+
padding-top: 0.5em;
|
656
|
+
margin-top: 4.0em;
|
657
|
+
}
|
658
|
+
|
659
|
+
/* line 107, ../sass/partials/_asciidoc.scss */
|
660
|
+
#footer-text {
|
661
|
+
float: left;
|
662
|
+
padding-bottom: 0.5em;
|
663
|
+
}
|
664
|
+
|
665
|
+
/* line 112, ../sass/partials/_asciidoc.scss */
|
666
|
+
#footer-badges {
|
667
|
+
float: right;
|
668
|
+
padding-bottom: 0.5em;
|
669
|
+
}
|
670
|
+
|
671
|
+
/* line 117, ../sass/partials/_asciidoc.scss */
|
672
|
+
#preamble {
|
673
|
+
margin-top: 1.5em;
|
674
|
+
margin-bottom: 1.5em;
|
675
|
+
}
|
676
|
+
|
677
|
+
/* line 123, ../sass/partials/_asciidoc.scss */
|
678
|
+
div.imageblock, div.exampleblock, div.verseblock, div.quoteblock, div.literalblock, div.listingblock, div.sidebarblock {
|
679
|
+
margin-top: 1.0em;
|
680
|
+
margin-bottom: 1.5em;
|
681
|
+
}
|
682
|
+
/* line 127, ../sass/partials/_asciidoc.scss */
|
683
|
+
div.admonitionblock {
|
684
|
+
margin-top: 1.0em;
|
685
|
+
margin-bottom: 1.5em;
|
686
|
+
margin-top: 2.0em;
|
687
|
+
margin-bottom: 2.0em;
|
688
|
+
margin-right: 10%;
|
689
|
+
color: #606060;
|
690
|
+
}
|
691
|
+
/* line 135, ../sass/partials/_asciidoc.scss */
|
692
|
+
div.content {
|
693
|
+
/* Block element content. */
|
694
|
+
padding: 0;
|
695
|
+
}
|
696
|
+
/* line 139, ../sass/partials/_asciidoc.scss */
|
697
|
+
div.title {
|
698
|
+
color: #527bbd;
|
699
|
+
font-weight: bold;
|
700
|
+
text-align: left;
|
701
|
+
margin-top: 1.0em;
|
702
|
+
margin-bottom: 0.5em;
|
703
|
+
}
|
704
|
+
|
705
|
+
/* Block element titles. */
|
706
|
+
/* line 150, ../sass/partials/_asciidoc.scss */
|
707
|
+
caption.title {
|
708
|
+
color: #527bbd;
|
709
|
+
font-weight: bold;
|
710
|
+
text-align: left;
|
711
|
+
margin-top: 1.0em;
|
712
|
+
margin-bottom: 0.5em;
|
713
|
+
}
|
714
|
+
|
715
|
+
/* line 158, ../sass/partials/_asciidoc.scss */
|
716
|
+
div.title + * {
|
717
|
+
margin-top: 0;
|
718
|
+
}
|
719
|
+
|
720
|
+
/* line 162, ../sass/partials/_asciidoc.scss */
|
721
|
+
td div.title:first-child {
|
722
|
+
margin-top: 0.0em;
|
723
|
+
}
|
724
|
+
|
725
|
+
/* line 168, ../sass/partials/_asciidoc.scss */
|
726
|
+
div.content div.title:first-child, div.content + div.title {
|
727
|
+
margin-top: 0.0em;
|
728
|
+
}
|
729
|
+
/* line 172, ../sass/partials/_asciidoc.scss */
|
730
|
+
div.sidebarblock > div.content {
|
731
|
+
background: #ffffee;
|
732
|
+
border: 1px solid #dddddd;
|
733
|
+
border-left: 4px solid #f0f0f0;
|
734
|
+
padding: 0.5em;
|
735
|
+
}
|
736
|
+
/* line 178, ../sass/partials/_asciidoc.scss */
|
737
|
+
div.listingblock > div.content {
|
738
|
+
border: 1px solid #dddddd;
|
739
|
+
border-left: 5px solid #f0f0f0;
|
740
|
+
background: #f8f8f8;
|
741
|
+
padding: 0.5em;
|
742
|
+
}
|
743
|
+
/* line 184, ../sass/partials/_asciidoc.scss */
|
744
|
+
div.quoteblock, div.verseblock {
|
745
|
+
padding-left: 1.0em;
|
746
|
+
margin-left: 1.0em;
|
747
|
+
margin-right: 10%;
|
748
|
+
border-left: 5px solid #f0f0f0;
|
749
|
+
color: #888;
|
750
|
+
}
|
751
|
+
/* line 191, ../sass/partials/_asciidoc.scss */
|
752
|
+
div.quoteblock > div.attribution {
|
753
|
+
padding-top: 0.5em;
|
754
|
+
text-align: right;
|
755
|
+
}
|
756
|
+
/* line 197, ../sass/partials/_asciidoc.scss */
|
757
|
+
div.verseblock > pre.content {
|
758
|
+
font-family: inherit;
|
759
|
+
font-size: inherit;
|
760
|
+
}
|
761
|
+
/* line 201, ../sass/partials/_asciidoc.scss */
|
762
|
+
div.verseblock > div.attribution {
|
763
|
+
padding-top: 0.75em;
|
764
|
+
text-align: left;
|
765
|
+
}
|
766
|
+
/* line 206, ../sass/partials/_asciidoc.scss */
|
767
|
+
div.verseblock + div.attribution {
|
768
|
+
text-align: left;
|
769
|
+
}
|
770
|
+
/* line 211, ../sass/partials/_asciidoc.scss */
|
771
|
+
div.admonitionblock .icon {
|
772
|
+
vertical-align: top;
|
773
|
+
font-size: 1.1em;
|
774
|
+
font-weight: bold;
|
775
|
+
text-decoration: underline;
|
776
|
+
color: #527bbd;
|
777
|
+
padding-right: 0.5em;
|
778
|
+
}
|
779
|
+
/* line 219, ../sass/partials/_asciidoc.scss */
|
780
|
+
div.admonitionblock td.content {
|
781
|
+
padding-left: 0.5em;
|
782
|
+
border-left: 3px solid #dddddd;
|
783
|
+
}
|
784
|
+
/* line 224, ../sass/partials/_asciidoc.scss */
|
785
|
+
div.exampleblock > div.content {
|
786
|
+
border-left: 3px solid #dddddd;
|
787
|
+
padding-left: 0.5em;
|
788
|
+
}
|
789
|
+
/* line 228, ../sass/partials/_asciidoc.scss */
|
790
|
+
div.imageblock div.content {
|
791
|
+
padding-left: 0;
|
792
|
+
}
|
793
|
+
|
794
|
+
/* DEPRECATED: Pre version 8.2.7 verse style literal block. */
|
795
|
+
/* line 235, ../sass/partials/_asciidoc.scss */
|
796
|
+
span.image img {
|
797
|
+
border-style: none;
|
798
|
+
}
|
799
|
+
|
800
|
+
/* line 239, ../sass/partials/_asciidoc.scss */
|
801
|
+
a.image:visited {
|
802
|
+
color: white;
|
803
|
+
}
|
804
|
+
|
805
|
+
/* line 243, ../sass/partials/_asciidoc.scss */
|
806
|
+
dl {
|
807
|
+
margin-top: 0.8em;
|
808
|
+
margin-bottom: 0.8em;
|
809
|
+
}
|
810
|
+
|
811
|
+
/* line 248, ../sass/partials/_asciidoc.scss */
|
812
|
+
dt {
|
813
|
+
margin-top: 0.5em;
|
814
|
+
margin-bottom: 0;
|
815
|
+
font-style: normal;
|
816
|
+
color: navy;
|
817
|
+
}
|
818
|
+
|
819
|
+
/* line 255, ../sass/partials/_asciidoc.scss */
|
820
|
+
dd > *:first-child {
|
821
|
+
margin-top: 0.1em;
|
822
|
+
}
|
823
|
+
|
824
|
+
/* line 259, ../sass/partials/_asciidoc.scss */
|
825
|
+
ul {
|
826
|
+
list-style-position: outside;
|
827
|
+
}
|
828
|
+
|
829
|
+
/* line 263, ../sass/partials/_asciidoc.scss */
|
830
|
+
ol {
|
831
|
+
list-style-position: outside;
|
832
|
+
}
|
833
|
+
/* line 265, ../sass/partials/_asciidoc.scss */
|
834
|
+
ol.arabic {
|
835
|
+
list-style-type: decimal;
|
836
|
+
}
|
837
|
+
/* line 268, ../sass/partials/_asciidoc.scss */
|
838
|
+
ol.loweralpha {
|
839
|
+
list-style-type: lower-alpha;
|
840
|
+
}
|
841
|
+
/* line 271, ../sass/partials/_asciidoc.scss */
|
842
|
+
ol.upperalpha {
|
843
|
+
list-style-type: upper-alpha;
|
844
|
+
}
|
845
|
+
/* line 274, ../sass/partials/_asciidoc.scss */
|
846
|
+
ol.lowerroman {
|
847
|
+
list-style-type: lower-roman;
|
848
|
+
}
|
849
|
+
/* line 277, ../sass/partials/_asciidoc.scss */
|
850
|
+
ol.upperroman {
|
851
|
+
list-style-type: upper-roman;
|
852
|
+
}
|
853
|
+
|
854
|
+
/* line 283, ../sass/partials/_asciidoc.scss */
|
855
|
+
div.compact ul, div.compact ol, div.compact p, div.compact div {
|
856
|
+
margin-top: 0.1em;
|
857
|
+
margin-bottom: 0.1em;
|
858
|
+
}
|
859
|
+
|
860
|
+
/* line 289, ../sass/partials/_asciidoc.scss */
|
861
|
+
tfoot {
|
862
|
+
font-weight: bold;
|
863
|
+
}
|
864
|
+
|
865
|
+
/* line 293, ../sass/partials/_asciidoc.scss */
|
866
|
+
td > div.verse {
|
867
|
+
white-space: pre;
|
868
|
+
}
|
869
|
+
|
870
|
+
/* line 297, ../sass/partials/_asciidoc.scss */
|
871
|
+
div.hdlist {
|
872
|
+
margin-top: 0.8em;
|
873
|
+
margin-bottom: 0.8em;
|
874
|
+
}
|
875
|
+
/* line 300, ../sass/partials/_asciidoc.scss */
|
876
|
+
div.hdlist tr {
|
877
|
+
padding-bottom: 15px;
|
878
|
+
}
|
879
|
+
|
880
|
+
/* line 305, ../sass/partials/_asciidoc.scss */
|
881
|
+
dt.hdlist1.strong {
|
882
|
+
font-weight: bold;
|
883
|
+
}
|
884
|
+
|
885
|
+
/* line 310, ../sass/partials/_asciidoc.scss */
|
886
|
+
td.hdlist1 {
|
887
|
+
vertical-align: top;
|
888
|
+
font-style: normal;
|
889
|
+
padding-right: 0.8em;
|
890
|
+
color: navy;
|
891
|
+
}
|
892
|
+
/* line 311, ../sass/partials/_asciidoc.scss */
|
893
|
+
td.hdlist1.strong {
|
894
|
+
font-weight: bold;
|
895
|
+
}
|
896
|
+
/* line 319, ../sass/partials/_asciidoc.scss */
|
897
|
+
td.hdlist2 {
|
898
|
+
vertical-align: top;
|
899
|
+
}
|
900
|
+
|
901
|
+
/* line 324, ../sass/partials/_asciidoc.scss */
|
902
|
+
div.hdlist.compact tr {
|
903
|
+
margin: 0;
|
904
|
+
padding-bottom: 0;
|
905
|
+
}
|
906
|
+
|
907
|
+
/* line 329, ../sass/partials/_asciidoc.scss */
|
908
|
+
.comment {
|
909
|
+
background: yellow;
|
910
|
+
}
|
911
|
+
|
912
|
+
/* line 333, ../sass/partials/_asciidoc.scss */
|
913
|
+
.footnote, .footnoteref {
|
914
|
+
font-size: 0.8em;
|
915
|
+
}
|
916
|
+
|
917
|
+
/* line 338, ../sass/partials/_asciidoc.scss */
|
918
|
+
span.footnote, span.footnoteref {
|
919
|
+
vertical-align: super;
|
920
|
+
}
|
921
|
+
|
922
|
+
/* line 343, ../sass/partials/_asciidoc.scss */
|
923
|
+
#footnotes {
|
924
|
+
margin: 20px 0 20px 0;
|
925
|
+
padding: 7px 0 0 0;
|
926
|
+
}
|
927
|
+
/* line 346, ../sass/partials/_asciidoc.scss */
|
928
|
+
#footnotes div.footnote {
|
929
|
+
margin: 0 0 5px 0;
|
930
|
+
}
|
931
|
+
/* line 349, ../sass/partials/_asciidoc.scss */
|
932
|
+
#footnotes hr {
|
933
|
+
border: none;
|
934
|
+
border-top: 1px solid silver;
|
935
|
+
height: 1px;
|
936
|
+
text-align: left;
|
937
|
+
margin-left: 0;
|
938
|
+
width: 20%;
|
939
|
+
min-width: 100px;
|
940
|
+
}
|
941
|
+
|
942
|
+
/* line 360, ../sass/partials/_asciidoc.scss */
|
943
|
+
div.colist td {
|
944
|
+
padding-right: 0.5em;
|
945
|
+
padding-bottom: 0.3em;
|
946
|
+
vertical-align: top;
|
947
|
+
}
|
948
|
+
/* line 364, ../sass/partials/_asciidoc.scss */
|
949
|
+
div.colist td img {
|
950
|
+
margin-top: 0.3em;
|
951
|
+
}
|
952
|
+
|
953
|
+
@media print {
|
954
|
+
/* line 370, ../sass/partials/_asciidoc.scss */
|
955
|
+
#footer-badges {
|
956
|
+
display: none;
|
957
|
+
}
|
958
|
+
}
|
959
|
+
/* line 375, ../sass/partials/_asciidoc.scss */
|
960
|
+
#toc {
|
961
|
+
margin-bottom: 2.5em;
|
962
|
+
}
|
963
|
+
|
964
|
+
/* line 379, ../sass/partials/_asciidoc.scss */
|
965
|
+
#toctitle {
|
966
|
+
color: #527bbd;
|
967
|
+
font-size: 1.1em;
|
968
|
+
font-weight: bold;
|
969
|
+
margin-top: 1.0em;
|
970
|
+
margin-bottom: 0.1em;
|
971
|
+
}
|
972
|
+
|
973
|
+
/* line 388, ../sass/partials/_asciidoc.scss */
|
974
|
+
div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {
|
975
|
+
margin-top: 0;
|
976
|
+
margin-bottom: 0;
|
977
|
+
}
|
978
|
+
/* line 392, ../sass/partials/_asciidoc.scss */
|
979
|
+
div.toclevel2 {
|
980
|
+
margin-left: 2em;
|
981
|
+
font-size: 0.9em;
|
982
|
+
}
|
983
|
+
/* line 396, ../sass/partials/_asciidoc.scss */
|
984
|
+
div.toclevel3 {
|
985
|
+
margin-left: 4em;
|
986
|
+
font-size: 0.9em;
|
987
|
+
}
|
988
|
+
/* line 400, ../sass/partials/_asciidoc.scss */
|
989
|
+
div.toclevel4 {
|
990
|
+
margin-left: 6em;
|
991
|
+
font-size: 0.9em;
|
992
|
+
}
|
993
|
+
|
994
|
+
/* line 407, ../sass/partials/_asciidoc.scss */
|
995
|
+
span.aqua {
|
996
|
+
color: aqua;
|
997
|
+
}
|
998
|
+
/* line 410, ../sass/partials/_asciidoc.scss */
|
999
|
+
span.black {
|
1000
|
+
color: black;
|
1001
|
+
}
|
1002
|
+
/* line 413, ../sass/partials/_asciidoc.scss */
|
1003
|
+
span.blue {
|
1004
|
+
color: blue;
|
1005
|
+
}
|
1006
|
+
/* line 416, ../sass/partials/_asciidoc.scss */
|
1007
|
+
span.fuchsia {
|
1008
|
+
color: fuchsia;
|
1009
|
+
}
|
1010
|
+
/* line 419, ../sass/partials/_asciidoc.scss */
|
1011
|
+
span.gray {
|
1012
|
+
color: gray;
|
1013
|
+
}
|
1014
|
+
/* line 422, ../sass/partials/_asciidoc.scss */
|
1015
|
+
span.green {
|
1016
|
+
color: green;
|
1017
|
+
}
|
1018
|
+
/* line 425, ../sass/partials/_asciidoc.scss */
|
1019
|
+
span.lime {
|
1020
|
+
color: lime;
|
1021
|
+
}
|
1022
|
+
/* line 428, ../sass/partials/_asciidoc.scss */
|
1023
|
+
span.maroon {
|
1024
|
+
color: maroon;
|
1025
|
+
}
|
1026
|
+
/* line 431, ../sass/partials/_asciidoc.scss */
|
1027
|
+
span.navy {
|
1028
|
+
color: navy;
|
1029
|
+
}
|
1030
|
+
/* line 434, ../sass/partials/_asciidoc.scss */
|
1031
|
+
span.olive {
|
1032
|
+
color: olive;
|
1033
|
+
}
|
1034
|
+
/* line 437, ../sass/partials/_asciidoc.scss */
|
1035
|
+
span.purple {
|
1036
|
+
color: purple;
|
1037
|
+
}
|
1038
|
+
/* line 440, ../sass/partials/_asciidoc.scss */
|
1039
|
+
span.red {
|
1040
|
+
color: red;
|
1041
|
+
}
|
1042
|
+
/* line 443, ../sass/partials/_asciidoc.scss */
|
1043
|
+
span.silver {
|
1044
|
+
color: silver;
|
1045
|
+
}
|
1046
|
+
/* line 446, ../sass/partials/_asciidoc.scss */
|
1047
|
+
span.teal {
|
1048
|
+
color: teal;
|
1049
|
+
}
|
1050
|
+
/* line 449, ../sass/partials/_asciidoc.scss */
|
1051
|
+
span.white {
|
1052
|
+
color: white;
|
1053
|
+
}
|
1054
|
+
/* line 452, ../sass/partials/_asciidoc.scss */
|
1055
|
+
span.yellow {
|
1056
|
+
color: yellow;
|
1057
|
+
}
|
1058
|
+
/* line 455, ../sass/partials/_asciidoc.scss */
|
1059
|
+
span.aqua-background {
|
1060
|
+
background: aqua;
|
1061
|
+
}
|
1062
|
+
/* line 458, ../sass/partials/_asciidoc.scss */
|
1063
|
+
span.black-background {
|
1064
|
+
background: black;
|
1065
|
+
}
|
1066
|
+
/* line 461, ../sass/partials/_asciidoc.scss */
|
1067
|
+
span.blue-background {
|
1068
|
+
background: blue;
|
1069
|
+
}
|
1070
|
+
/* line 464, ../sass/partials/_asciidoc.scss */
|
1071
|
+
span.fuchsia-background {
|
1072
|
+
background: fuchsia;
|
1073
|
+
}
|
1074
|
+
/* line 467, ../sass/partials/_asciidoc.scss */
|
1075
|
+
span.gray-background {
|
1076
|
+
background: gray;
|
1077
|
+
}
|
1078
|
+
/* line 470, ../sass/partials/_asciidoc.scss */
|
1079
|
+
span.green-background {
|
1080
|
+
background: green;
|
1081
|
+
}
|
1082
|
+
/* line 473, ../sass/partials/_asciidoc.scss */
|
1083
|
+
span.lime-background {
|
1084
|
+
background: lime;
|
1085
|
+
}
|
1086
|
+
/* line 476, ../sass/partials/_asciidoc.scss */
|
1087
|
+
span.maroon-background {
|
1088
|
+
background: maroon;
|
1089
|
+
}
|
1090
|
+
/* line 479, ../sass/partials/_asciidoc.scss */
|
1091
|
+
span.navy-background {
|
1092
|
+
background: navy;
|
1093
|
+
}
|
1094
|
+
/* line 482, ../sass/partials/_asciidoc.scss */
|
1095
|
+
span.olive-background {
|
1096
|
+
background: olive;
|
1097
|
+
}
|
1098
|
+
/* line 485, ../sass/partials/_asciidoc.scss */
|
1099
|
+
span.purple-background {
|
1100
|
+
background: purple;
|
1101
|
+
}
|
1102
|
+
/* line 488, ../sass/partials/_asciidoc.scss */
|
1103
|
+
span.red-background {
|
1104
|
+
background: red;
|
1105
|
+
}
|
1106
|
+
/* line 491, ../sass/partials/_asciidoc.scss */
|
1107
|
+
span.silver-background {
|
1108
|
+
background: silver;
|
1109
|
+
}
|
1110
|
+
/* line 494, ../sass/partials/_asciidoc.scss */
|
1111
|
+
span.teal-background {
|
1112
|
+
background: teal;
|
1113
|
+
}
|
1114
|
+
/* line 497, ../sass/partials/_asciidoc.scss */
|
1115
|
+
span.white-background {
|
1116
|
+
background: white;
|
1117
|
+
}
|
1118
|
+
/* line 500, ../sass/partials/_asciidoc.scss */
|
1119
|
+
span.yellow-background {
|
1120
|
+
background: yellow;
|
1121
|
+
}
|
1122
|
+
/* line 503, ../sass/partials/_asciidoc.scss */
|
1123
|
+
span.big {
|
1124
|
+
font-size: 2em;
|
1125
|
+
}
|
1126
|
+
/* line 506, ../sass/partials/_asciidoc.scss */
|
1127
|
+
span.small {
|
1128
|
+
font-size: 0.6em;
|
1129
|
+
}
|
1130
|
+
/* line 509, ../sass/partials/_asciidoc.scss */
|
1131
|
+
span.underline {
|
1132
|
+
text-decoration: underline;
|
1133
|
+
}
|
1134
|
+
/* line 512, ../sass/partials/_asciidoc.scss */
|
1135
|
+
span.overline {
|
1136
|
+
text-decoration: overline;
|
1137
|
+
}
|
1138
|
+
/* line 515, ../sass/partials/_asciidoc.scss */
|
1139
|
+
span.line-through {
|
1140
|
+
text-decoration: line-through;
|
1141
|
+
}
|
1142
|
+
|
1143
|
+
/*
|
1144
|
+
* xhtml11 specific
|
1145
|
+
*
|
1146
|
+
* */
|
1147
|
+
/* line 525, ../sass/partials/_asciidoc.scss */
|
1148
|
+
tt {
|
1149
|
+
font-family: monospace;
|
1150
|
+
font-size: inherit;
|
1151
|
+
color: navy;
|
1152
|
+
}
|
1153
|
+
|
1154
|
+
/* line 531, ../sass/partials/_asciidoc.scss */
|
1155
|
+
div.tableblock {
|
1156
|
+
margin-top: 1.0em;
|
1157
|
+
margin-bottom: 1.5em;
|
1158
|
+
}
|
1159
|
+
/* line 534, ../sass/partials/_asciidoc.scss */
|
1160
|
+
div.tableblock > table {
|
1161
|
+
border: 3px solid #527bbd;
|
1162
|
+
}
|
1163
|
+
|
1164
|
+
/* line 539, ../sass/partials/_asciidoc.scss */
|
1165
|
+
thead {
|
1166
|
+
font-weight: bold;
|
1167
|
+
color: #527bbd;
|
1168
|
+
}
|
1169
|
+
|
1170
|
+
/* line 544, ../sass/partials/_asciidoc.scss */
|
1171
|
+
p.table {
|
1172
|
+
margin-top: 0;
|
1173
|
+
}
|
1174
|
+
/* line 545, ../sass/partials/_asciidoc.scss */
|
1175
|
+
p.table.header {
|
1176
|
+
font-weight: bold;
|
1177
|
+
color: #527bbd;
|
1178
|
+
}
|
1179
|
+
|
1180
|
+
/* Because the table frame attribute is overriden by CSS in most browsers. */
|
1181
|
+
/* line 555, ../sass/partials/_asciidoc.scss */
|
1182
|
+
div.tableblock > table[frame="void"] {
|
1183
|
+
border-style: none;
|
1184
|
+
}
|
1185
|
+
/* line 558, ../sass/partials/_asciidoc.scss */
|
1186
|
+
div.tableblock > table[frame="hsides"] {
|
1187
|
+
border-left-style: none;
|
1188
|
+
border-right-style: none;
|
1189
|
+
}
|
1190
|
+
/* line 562, ../sass/partials/_asciidoc.scss */
|
1191
|
+
div.tableblock > table[frame="vsides"] {
|
1192
|
+
border-top-style: none;
|
1193
|
+
border-bottom-style: none;
|
1194
|
+
}
|
1195
|
+
|
1196
|
+
/*
|
1197
|
+
* html5 specific
|
1198
|
+
*
|
1199
|
+
* */
|
1200
|
+
/* line 573, ../sass/partials/_asciidoc.scss */
|
1201
|
+
.monospaced {
|
1202
|
+
font-family: monospace;
|
1203
|
+
font-size: inherit;
|
1204
|
+
color: navy;
|
1205
|
+
}
|
1206
|
+
|
1207
|
+
/* line 579, ../sass/partials/_asciidoc.scss */
|
1208
|
+
table.tableblock {
|
1209
|
+
margin-top: 1.0em;
|
1210
|
+
margin-bottom: 1.5em;
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
/* line 584, ../sass/partials/_asciidoc.scss */
|
1214
|
+
thead {
|
1215
|
+
font-weight: bold;
|
1216
|
+
color: #527bbd;
|
1217
|
+
}
|
1218
|
+
|
1219
|
+
/* line 589, ../sass/partials/_asciidoc.scss */
|
1220
|
+
p.tableblock {
|
1221
|
+
margin-top: 0;
|
1222
|
+
}
|
1223
|
+
/* line 590, ../sass/partials/_asciidoc.scss */
|
1224
|
+
p.tableblock.header {
|
1225
|
+
font-weight: bold;
|
1226
|
+
color: #527bbd;
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
/* line 597, ../sass/partials/_asciidoc.scss */
|
1230
|
+
table.tableblock {
|
1231
|
+
border-width: 3px;
|
1232
|
+
border-spacing: 0px;
|
1233
|
+
border-style: solid;
|
1234
|
+
border-color: #527bbd;
|
1235
|
+
border-collapse: collapse;
|
1236
|
+
}
|
1237
|
+
|
1238
|
+
/* line 605, ../sass/partials/_asciidoc.scss */
|
1239
|
+
th.tableblock, td.tableblock {
|
1240
|
+
border-width: 1px;
|
1241
|
+
padding: 4px;
|
1242
|
+
border-style: solid;
|
1243
|
+
border-color: #527bbd;
|
1244
|
+
}
|
1245
|
+
|
1246
|
+
/* line 613, ../sass/partials/_asciidoc.scss */
|
1247
|
+
table.tableblock.frame-topbot {
|
1248
|
+
border-left-style: hidden;
|
1249
|
+
border-right-style: hidden;
|
1250
|
+
}
|
1251
|
+
/* line 617, ../sass/partials/_asciidoc.scss */
|
1252
|
+
table.tableblock.frame-sides {
|
1253
|
+
border-top-style: hidden;
|
1254
|
+
border-bottom-style: hidden;
|
1255
|
+
}
|
1256
|
+
/* line 621, ../sass/partials/_asciidoc.scss */
|
1257
|
+
table.tableblock.frame-none {
|
1258
|
+
border-style: hidden;
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
/* line 626, ../sass/partials/_asciidoc.scss */
|
1262
|
+
th.tableblock.halign-left, td.tableblock.halign-left {
|
1263
|
+
text-align: left;
|
1264
|
+
}
|
1265
|
+
|
1266
|
+
/* line 630, ../sass/partials/_asciidoc.scss */
|
1267
|
+
th.tableblock.halign-center, td.tableblock.halign-center {
|
1268
|
+
text-align: center;
|
1269
|
+
}
|
1270
|
+
|
1271
|
+
/* line 634, ../sass/partials/_asciidoc.scss */
|
1272
|
+
th.tableblock.halign-right, td.tableblock.halign-right {
|
1273
|
+
text-align: right;
|
1274
|
+
}
|
1275
|
+
|
1276
|
+
/* line 638, ../sass/partials/_asciidoc.scss */
|
1277
|
+
th.tableblock.valign-top, td.tableblock.valign-top {
|
1278
|
+
vertical-align: top;
|
1279
|
+
}
|
1280
|
+
|
1281
|
+
/* line 642, ../sass/partials/_asciidoc.scss */
|
1282
|
+
th.tableblock.valign-middle, td.tableblock.valign-middle {
|
1283
|
+
vertical-align: middle;
|
1284
|
+
}
|
1285
|
+
|
1286
|
+
/* line 646, ../sass/partials/_asciidoc.scss */
|
1287
|
+
th.tableblock.valign-bottom, td.tableblock.valign-bottom {
|
1288
|
+
vertical-align: bottom;
|
1289
|
+
}
|
1290
|
+
|
1291
|
+
/*
|
1292
|
+
* manpage specific
|
1293
|
+
*
|
1294
|
+
* */
|
1295
|
+
/* line 656, ../sass/partials/_asciidoc.scss */
|
1296
|
+
body.manpage h1 {
|
1297
|
+
padding-top: 0.5em;
|
1298
|
+
padding-bottom: 0.5em;
|
1299
|
+
border-top: 2px solid silver;
|
1300
|
+
border-bottom: 2px solid silver;
|
1301
|
+
}
|
1302
|
+
/* line 662, ../sass/partials/_asciidoc.scss */
|
1303
|
+
body.manpage h2 {
|
1304
|
+
border-style: none;
|
1305
|
+
}
|
1306
|
+
/* line 665, ../sass/partials/_asciidoc.scss */
|
1307
|
+
body.manpage div.sectionbody {
|
1308
|
+
margin-left: 3em;
|
1309
|
+
}
|
1310
|
+
|
1311
|
+
@media print {
|
1312
|
+
/* line 671, ../sass/partials/_asciidoc.scss */
|
1313
|
+
body.manpage div#toc {
|
1314
|
+
display: none;
|
1315
|
+
}
|
1316
|
+
}
|