jazzy 0.0.4 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -2
- data/.gitmodules +3 -0
- data/.rubocop.yml +67 -0
- data/.rubocop_todo.yml +16 -0
- data/.travis.yml +6 -0
- data/Gemfile +15 -7
- data/Gemfile.lock +62 -12
- data/LICENSE +0 -0
- data/README.md +39 -12
- data/Rakefile +87 -1
- data/bin/jazzy +10 -44
- data/bin/sourcekitten +0 -0
- data/jazzy.gemspec +16 -16
- data/lib/jazzy.rb +1 -159
- data/lib/jazzy/assets/css/jazzy.css +561 -0
- data/lib/{assets/Images/carat_2x.png → jazzy/assets/img/carat.png} +0 -0
- data/lib/jazzy/assets/img/dash.png +0 -0
- data/lib/jazzy/assets/img/gh.png +0 -0
- data/lib/jazzy/assets/js/jazzy.js +15 -0
- data/lib/jazzy/assets/js/jquery.min.js +4 -0
- data/lib/jazzy/config.rb +100 -0
- data/lib/jazzy/doc.mustache +46 -0
- data/lib/jazzy/doc.rb +23 -0
- data/lib/jazzy/doc_builder.rb +166 -0
- data/lib/jazzy/gem_version.rb +3 -0
- data/lib/jazzy/jazzy_markdown.rb +13 -0
- data/lib/jazzy/partials/footer.mustache +4 -0
- data/lib/jazzy/partials/nav.mustache +16 -0
- data/lib/jazzy/partials/parameter.mustache +12 -0
- data/lib/jazzy/partials/task.mustache +66 -0
- data/lib/jazzy/partials/tasks.mustache +7 -0
- data/lib/jazzy/source_declaration.rb +19 -0
- data/lib/jazzy/sourcekitten.rb +146 -0
- data/lib/jazzy/xml_helper.rb +15 -0
- data/screenshot.jpg +0 -0
- data/spec/.gitkeep +0 -0
- data/spec/integration_spec.rb +89 -0
- data/spec/integration_specs/document_alamofire/after/docs/Classes.html +266 -0
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Manager.html +677 -0
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Manager/SessionDelegate.html +866 -0
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Manager/Singleton.html +246 -0
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Request.html +1376 -0
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Request/DataTaskDelegate.html +486 -0
- data/spec/integration_specs/document_alamofire/after/docs/Classes/Request/TaskDelegate.html +506 -0
- data/spec/integration_specs/document_alamofire/after/docs/Enums.html +266 -0
- data/spec/integration_specs/document_alamofire/after/docs/Enums/ParameterEncoding.html +391 -0
- data/spec/integration_specs/document_alamofire/after/docs/Extensions.html +641 -0
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/Manager.html +376 -0
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/NSURL.html +226 -0
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/NSURLComponents.html +226 -0
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/NSURLRequest.html +226 -0
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request.html +377 -0
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request/DownloadTaskDelegate.html +406 -0
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request/MIMEType.html +286 -0
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request/UploadTaskDelegate.html +266 -0
- data/spec/integration_specs/document_alamofire/after/docs/Extensions/String.html +226 -0
- data/spec/integration_specs/document_alamofire/after/docs/Functions.html +1001 -0
- data/spec/integration_specs/document_alamofire/after/docs/Global Variables.html +236 -0
- data/spec/integration_specs/document_alamofire/after/docs/Protocols.html +266 -0
- data/spec/integration_specs/document_alamofire/after/docs/Protocols/URLRequestConvertible.html +236 -0
- data/spec/integration_specs/document_alamofire/after/docs/Protocols/URLStringConvertible.html +236 -0
- data/spec/integration_specs/document_alamofire/after/docs/Typealiases.html +266 -0
- data/spec/integration_specs/document_alamofire/after/docs/css/jazzy.css +561 -0
- data/spec/integration_specs/document_alamofire/after/docs/img/carat.png +0 -0
- data/spec/integration_specs/document_alamofire/after/docs/img/dash.png +0 -0
- data/spec/integration_specs/document_alamofire/after/docs/img/gh.png +0 -0
- data/spec/integration_specs/document_alamofire/after/docs/index.html +194 -0
- data/spec/integration_specs/document_alamofire/after/docs/js/jazzy.js +15 -0
- data/spec/integration_specs/document_alamofire/after/docs/js/jquery.min.js +4 -0
- data/spec/integration_specs/document_alamofire/after/execution_output.txt +2 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/Classes.html +317 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/Classes/ImplicitlyInternalTopLevelClass.html +138 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/Enums.html +155 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/Enums/DocumentedEnum.html +128 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/Global Variables.html +138 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/css/jazzy.css +561 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/img/carat.png +0 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/img/dash.png +0 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/img/gh.png +0 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/index.html +99 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/js/jazzy.js +15 -0
- data/spec/integration_specs/misc_jazzy_features/after/docs/js/jquery.min.js +4 -0
- data/spec/integration_specs/misc_jazzy_features/after/execution_output.txt +2 -0
- data/spec/integration_specs/misc_jazzy_features/before/MiscJazzyFeatures.xcodeproj/project.pbxproj +293 -0
- data/{parser/ASTDump.xcodeproj → spec/integration_specs/misc_jazzy_features/before/MiscJazzyFeatures.xcodeproj}/project.xcworkspace/contents.xcworkspacedata +1 -1
- data/spec/integration_specs/misc_jazzy_features/before/MiscJazzyFeatures/Classes.swift +60 -0
- data/spec/integration_specs/misc_jazzy_features/before/MiscJazzyFeatures/Info.plist +28 -0
- data/spec/integration_specs/misc_jazzy_features/before/MiscJazzyFeatures/MiscJazzyFeatures.h +10 -0
- data/spec/integration_specs/misc_jazzy_features/before/docs/Classes.html +317 -0
- data/spec/integration_specs/misc_jazzy_features/before/docs/Classes/ImplicitlyInternalTopLevelClass.html +138 -0
- data/spec/integration_specs/misc_jazzy_features/before/docs/Enums.html +155 -0
- data/spec/integration_specs/misc_jazzy_features/before/docs/Enums/DocumentedEnum.html +128 -0
- data/spec/integration_specs/misc_jazzy_features/before/docs/Global Variables.html +138 -0
- data/spec/integration_specs/misc_jazzy_features/before/docs/css/jazzy.css +561 -0
- data/spec/integration_specs/misc_jazzy_features/before/docs/img/carat.png +0 -0
- data/spec/integration_specs/misc_jazzy_features/before/docs/img/dash.png +0 -0
- data/spec/integration_specs/misc_jazzy_features/before/docs/img/gh.png +0 -0
- data/spec/integration_specs/misc_jazzy_features/before/docs/index.html +99 -0
- data/spec/integration_specs/misc_jazzy_features/before/docs/js/jazzy.js +15 -0
- data/spec/integration_specs/misc_jazzy_features/before/docs/js/jquery.min.js +4 -0
- metadata +112 -76
- data/DEV_README.md +0 -35
- data/bin/ASTDump +0 -0
- data/bin/generate_swift_header.sh +0 -14
- data/lib/assets/CSS/style-1.1.15.css +0 -3366
- data/lib/assets/Images/apple2.png +0 -0
- data/lib/assets/Images/check.png +0 -0
- data/lib/assets/Images/class_node_parent_and_child_2x.png +0 -0
- data/lib/assets/Images/class_node_subclass_last_child_2x.png +0 -0
- data/lib/assets/Images/class_node_subclass_with_siblings_2x.png +0 -0
- data/lib/assets/Images/closebox_2x.png +0 -0
- data/lib/assets/Images/collection_last_child_2x.png +0 -0
- data/lib/assets/Images/collection_last_child_orphan_grandparent_2x.png +0 -0
- data/lib/assets/Images/collection_last_child_orphan_parent_2x.png +0 -0
- data/lib/assets/Images/collection_last_child_orphan_parent_and_grandparent_2x.png +0 -0
- data/lib/assets/Images/collection_node_2x.png +0 -0
- data/lib/assets/Images/collection_node_orphan_grandparent_2x.png +0 -0
- data/lib/assets/Images/collection_node_orphan_parent_2x.png +0 -0
- data/lib/assets/Images/collection_node_orphan_parent_and_grandparent_2x.png +0 -0
- data/lib/assets/Images/collection_node_parent_2x.png +0 -0
- data/lib/assets/Images/collection_node_parent_last_child_orphan_parent_2x.png +0 -0
- data/lib/assets/Images/collection_node_parent_orphan_parent_2x.png +0 -0
- data/lib/assets/Images/collection_parent_last_child_2x.png +0 -0
- data/lib/assets/Images/download_2x.png +0 -0
- data/lib/assets/Images/left_arrow_2x.png +0 -0
- data/lib/assets/Images/magnify_2x.png +0 -0
- data/lib/assets/Images/minus_2x.png +0 -0
- data/lib/assets/Images/playbutton.svg +0 -15
- data/lib/assets/Images/plus_2x.png +0 -0
- data/lib/assets/Images/right_arrow_2x.png +0 -0
- data/lib/assets/Images/search_2x.png +0 -0
- data/lib/assets/Images/shortstack_2x.png +0 -0
- data/lib/assets/JavaScript/devpubs-1.1.15.js +0 -1293
- data/lib/jazzy/jazzhtml.rb +0 -7
- data/lib/jazzy/klass.mustache +0 -150
- data/lib/jazzy/klass.rb +0 -23
- data/lib/jazzy/partials/klass-method.mustache +0 -70
- data/lib/jazzy/partials/klass-overview.mustache +0 -6
- data/lib/jazzy/partials/klass-property.mustache +0 -41
- data/parser/ASTDump.xcodeproj/project.pbxproj +0 -301
- data/parser/ASTDump.xcodeproj/project.xcworkspace/xcshareddata/ASTDump.xccheckout +0 -41
- data/parser/ASTDump.xcodeproj/project.xcworkspace/xcuserdata/ta.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- data/parser/ASTDump.xcodeproj/xcuserdata/ta.xcuserdatad/xcschemes/ASTDump.xcscheme +0 -86
- data/parser/ASTDump.xcodeproj/xcuserdata/ta.xcuserdatad/xcschemes/xcschememanagement.plist +0 -22
- data/parser/ASTDump/main.cpp +0 -71
- data/parser/clang-c/BuildSystem.h +0 -148
- data/parser/clang-c/CXCompilationDatabase.h +0 -170
- data/parser/clang-c/CXErrorCode.h +0 -64
- data/parser/clang-c/CXString.h +0 -61
- data/parser/clang-c/Documentation.h +0 -554
- data/parser/clang-c/Index.h +0 -5454
- data/parser/clang-c/Platform.h +0 -45
- data/sample/JAZMusician.h +0 -38
- data/sample/JAZMusician.m +0 -19
- data/sample/Musician.swift +0 -37
data/bin/ASTDump
DELETED
Binary file
|
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/bin/sh
|
2
|
-
|
3
|
-
# Generate temporary swift module map
|
4
|
-
header_file=$1
|
5
|
-
module_name='TempJazzyModule'
|
6
|
-
module_file='module.modulemap'
|
7
|
-
echo "module $module_name { header \"$header_file\" }" > $module_file
|
8
|
-
|
9
|
-
# Print generated Swift header
|
10
|
-
# See also -req=interface-gen
|
11
|
-
xcrun sourcekitd-test -req=doc-info -module $module_name -- -I `pwd` -sdk `xcrun --show-sdk-path`
|
12
|
-
|
13
|
-
# Remove temporary module file
|
14
|
-
rm $module_file
|
@@ -1,3366 +0,0 @@
|
|
1
|
-
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, figure, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
|
2
|
-
background: transparent;
|
3
|
-
border: 0;
|
4
|
-
font-size: 100%;
|
5
|
-
margin: 0;
|
6
|
-
outline: 0;
|
7
|
-
padding: 0;
|
8
|
-
vertical-align: baseline;
|
9
|
-
}
|
10
|
-
.jazz .syntax-defs {
|
11
|
-
border-left: 5px solid rgba(233, 233, 233, 1);
|
12
|
-
margin: 20px 0;
|
13
|
-
padding-left: 15px;
|
14
|
-
font-size: 1.4em;
|
15
|
-
line-height: 145%}
|
16
|
-
.jazz .syntax-defs-name {
|
17
|
-
color: rgba(128, 128, 128, 1);
|
18
|
-
font-size: .63em;
|
19
|
-
letter-spacing: 2px;
|
20
|
-
margin-bottom: 8px;
|
21
|
-
text-transform: uppercase;
|
22
|
-
}
|
23
|
-
.jazz .syntax-def-name {
|
24
|
-
color: rgba(128, 128, 128, 1);
|
25
|
-
font-style: italic;
|
26
|
-
text-decoration: none;
|
27
|
-
}
|
28
|
-
.jazz .arrow {
|
29
|
-
color: rgba(128, 128, 128, 1);
|
30
|
-
padding: 0 0 0 4px;
|
31
|
-
}
|
32
|
-
.jazz .syntax-defs-group {
|
33
|
-
margin-bottom: 12px;
|
34
|
-
}
|
35
|
-
.jazz .syntax-defs-group .syntax-def {
|
36
|
-
margin-bottom: 0;
|
37
|
-
}
|
38
|
-
.jazz .syntactic-cat {
|
39
|
-
font-style: italic;
|
40
|
-
padding: 0 4px;
|
41
|
-
}
|
42
|
-
.jazz .alternatives_para {
|
43
|
-
display: inline;
|
44
|
-
}
|
45
|
-
.jazz .alternatives {
|
46
|
-
display: inline;
|
47
|
-
list-style: none;
|
48
|
-
}
|
49
|
-
.jazz .alternative {
|
50
|
-
display: inline;
|
51
|
-
}
|
52
|
-
.jazz .alternative:not(:last-of-type)::after {
|
53
|
-
color: rgba(128, 128, 128, 1);
|
54
|
-
content: "|";
|
55
|
-
font-size: 1.1em;
|
56
|
-
font-weight: 100;
|
57
|
-
padding: 0 2px;
|
58
|
-
position: relative;
|
59
|
-
vertical-align: initial;
|
60
|
-
}
|
61
|
-
.jazz .subscript {
|
62
|
-
color: rgba(128, 128, 128, 1);
|
63
|
-
font-size: .8em;
|
64
|
-
font-style: italic;
|
65
|
-
margin-left: -2px;
|
66
|
-
padding-right: 4px;
|
67
|
-
vertical-align: sub;
|
68
|
-
}
|
69
|
-
.jazz .literal {
|
70
|
-
color: rgba(0, 0, 0, 1);
|
71
|
-
font-family: Menlo, monospace;
|
72
|
-
font-weight: 600;
|
73
|
-
font-size: .86em;
|
74
|
-
padding: 0 4px;
|
75
|
-
word-wrap: break-word;
|
76
|
-
}
|
77
|
-
.jazz .code-outline {
|
78
|
-
margin: 20px 0 20px 40px;
|
79
|
-
text-align: left;
|
80
|
-
display: block;
|
81
|
-
font-size: 1.4em;
|
82
|
-
line-height: 2em;
|
83
|
-
}
|
84
|
-
.jazz .code-outline-lines {
|
85
|
-
list-style-type: none;
|
86
|
-
}
|
87
|
-
.jazz .code-outline-lines pre.code-voice {
|
88
|
-
color: #000;
|
89
|
-
}
|
90
|
-
.jazz .code-outline .variable-text {
|
91
|
-
background-color: rgba(233, 239, 250, 1);
|
92
|
-
border: 1px solid rgba(196, 212, 241, 1);
|
93
|
-
border-radius: 10px;
|
94
|
-
color: rgba(0, 0, 0, 1);
|
95
|
-
padding: 2px 6px;
|
96
|
-
font-style: inherit;
|
97
|
-
white-space: nowrap;
|
98
|
-
}
|
99
|
-
.jazz .note.playground {
|
100
|
-
margin-top: 0;
|
101
|
-
margin-bottom: 0;
|
102
|
-
}
|
103
|
-
#collection nav.book-parts {
|
104
|
-
display: none;
|
105
|
-
}
|
106
|
-
#collection .chapter {
|
107
|
-
margin-left: 0;
|
108
|
-
width: 980px;
|
109
|
-
}
|
110
|
-
#collection .pixel-line {
|
111
|
-
width: 980px;
|
112
|
-
}
|
113
|
-
#collection .section {
|
114
|
-
padding-bottom: 0;
|
115
|
-
}
|
116
|
-
#collection .collection-table {
|
117
|
-
margin-bottom: 40px;
|
118
|
-
}
|
119
|
-
#collection .collection-table thead th {
|
120
|
-
text-align: left;
|
121
|
-
}
|
122
|
-
#collection .collection-table thead th .para {
|
123
|
-
border-bottom: 1px solid #eee;
|
124
|
-
margin: 4px 30px 0 0;
|
125
|
-
padding-bottom: 4px;
|
126
|
-
}
|
127
|
-
#collection .collection-table th .para, #collection .collection-table td .para {
|
128
|
-
margin-bottom: 0;
|
129
|
-
}
|
130
|
-
#collection .collection-table td {
|
131
|
-
border: 0;
|
132
|
-
padding: 5px 15px 5px 0;
|
133
|
-
max-width: inherit;
|
134
|
-
}
|
135
|
-
#collection .depth2 .para {
|
136
|
-
padding-left: 12px;
|
137
|
-
}
|
138
|
-
#collection .depth3 .para {
|
139
|
-
padding-left: 27px;
|
140
|
-
}
|
141
|
-
#collection .depth4 .para {
|
142
|
-
padding-left: 42px;
|
143
|
-
}
|
144
|
-
#collection .depth5 .para {
|
145
|
-
padding-left: 57px;
|
146
|
-
}
|
147
|
-
#collection .depth6 .para {
|
148
|
-
padding-left: 72px;
|
149
|
-
}
|
150
|
-
#collection .depth7 .para {
|
151
|
-
padding-left: 87px;
|
152
|
-
}
|
153
|
-
#collection .z-class-node td:first-of-type {
|
154
|
-
background-image: url(../Images/collection_node_2x.png);
|
155
|
-
background-repeat: no-repeat;
|
156
|
-
background-size: 100px 100px;
|
157
|
-
}
|
158
|
-
#collection .z-class-node td.orphan-parent:first-of-type {
|
159
|
-
background-image: url(../Images/collection_node_orphan_parent_2x.png);
|
160
|
-
}
|
161
|
-
#collection .z-class-node td.orphan-grandparent {
|
162
|
-
background-image: url(../Images/collection_node_orphan_grandparent_2x.png);
|
163
|
-
}
|
164
|
-
#collection .z-class-node td.orphan-parent.orphan-grandparent:first-of-type {
|
165
|
-
background-image: url(../Images/collection_node_orphan_parent_and_grandparent_2x.png);
|
166
|
-
}
|
167
|
-
#collection .z-class-node td.last-child {
|
168
|
-
background-image: url(../Images/collection_last_child_2x.png);
|
169
|
-
}
|
170
|
-
#collection .z-class-node td.last-child.orphan-parent {
|
171
|
-
background-image: url(../Images/collection_last_child_orphan_parent_2x.png);
|
172
|
-
}
|
173
|
-
#collection .z-class-node td.last-child.orphan-grandparent {
|
174
|
-
background-image: url(../Images/collection_last_child_orphan_grandparent_2x.png);
|
175
|
-
}
|
176
|
-
#collection .z-class-node td.last-child.orphan-parent.orphan-grandparent {
|
177
|
-
background-image: url(../Images/collection_last_child_orphan_parent_and_grandparent_2x.png);
|
178
|
-
}
|
179
|
-
#collection .z-class-node td.parent {
|
180
|
-
background-image: url(../Images/collection_node_parent_2x.png);
|
181
|
-
}
|
182
|
-
#collection .z-class-node td.parent.last-child {
|
183
|
-
background-image: url(../Images/collection_parent_last_child_2x.png);
|
184
|
-
}
|
185
|
-
#collection .z-class-node td.parent.orphan-parent {
|
186
|
-
background-image: url(../Images/collection_node_parent_orphan_parent_2x.png);
|
187
|
-
}
|
188
|
-
#collection .z-class-node td.parent.last-child.orphan-parent {
|
189
|
-
background-image: url(../Images/collection_node_parent_last_child_orphan_parent_2x.png);
|
190
|
-
}
|
191
|
-
#collection .depth2 {
|
192
|
-
background-position: -81px 50%}
|
193
|
-
#collection .depth3 {
|
194
|
-
background-position: -67px 50%}
|
195
|
-
#collection .depth4 {
|
196
|
-
background-position: -53px 50%}
|
197
|
-
#collection .depth5 {
|
198
|
-
background-position: -39px 50%}
|
199
|
-
#collection .depth6 {
|
200
|
-
background-position: -25px 50%}
|
201
|
-
#collection .depth7 {
|
202
|
-
background-position: -11px 50%}
|
203
|
-
#conceptual_flow_with_tasks #carat {
|
204
|
-
margin: 0 10px;
|
205
|
-
}
|
206
|
-
#conceptual_flow_with_tasks #design_resources_link {
|
207
|
-
color: rgba(0, 136, 204, 1);
|
208
|
-
text-decoration: none;
|
209
|
-
}
|
210
|
-
#conceptual_flow_with_tasks .list-check {
|
211
|
-
list-style: url(../Images/check.png) outside none;
|
212
|
-
}
|
213
|
-
#conceptual_flow_with_tasks .nav-part-active {
|
214
|
-
background-color: rgba(255, 255, 255, 1);
|
215
|
-
color: rgba(0, 0, 0, 1);
|
216
|
-
cursor: default;
|
217
|
-
}
|
218
|
-
#conceptual_flow_with_tasks .nav-chapter {
|
219
|
-
font-size: .8em;
|
220
|
-
list-style-position: outside;
|
221
|
-
list-style-type: none;
|
222
|
-
margin: 0;
|
223
|
-
padding: 0 0 8px;
|
224
|
-
}
|
225
|
-
#conceptual_flow_with_tasks.jazz .nav-chapters {
|
226
|
-
position: relative;
|
227
|
-
top: 15px;
|
228
|
-
}
|
229
|
-
#conceptual_flow_with_tasks .nav-chapters .nav-chapter {
|
230
|
-
margin-left: 0;
|
231
|
-
}
|
232
|
-
#conceptual_flow_with_tasks .nav-part-active .nav-chapter-active {
|
233
|
-
font-weight: 500;
|
234
|
-
color: rgba(0, 0, 0, 1);
|
235
|
-
}
|
236
|
-
#conceptual_flow_with_tasks .nav-chapter .nav-chapter-active {
|
237
|
-
color: rgba(0, 0, 0, 1);
|
238
|
-
font-weight: 700;
|
239
|
-
text-decoration: none;
|
240
|
-
}
|
241
|
-
#conceptual_flow_with_tasks .book-parts a {
|
242
|
-
color: rgba(128, 128, 128, 1);
|
243
|
-
display: block;
|
244
|
-
margin-left: 15px;
|
245
|
-
text-decoration: none;
|
246
|
-
}
|
247
|
-
#conceptual_flow_with_tasks .rec-container {
|
248
|
-
margin: 40px auto;
|
249
|
-
text-align: center;
|
250
|
-
width: 95%}
|
251
|
-
#conceptual_flow_with_tasks .rec-container .blurb {
|
252
|
-
text-align: center;
|
253
|
-
}
|
254
|
-
#conceptual_flow_with_tasks .rec-container .blurb .para:nth-child(1) {
|
255
|
-
color: rgba(128, 128, 128, 1);
|
256
|
-
font-size: 2em;
|
257
|
-
font-weight: 100;
|
258
|
-
line-height: 120%;
|
259
|
-
margin: 0 auto 20px;
|
260
|
-
width: 460px;
|
261
|
-
}
|
262
|
-
#conceptual_flow_with_tasks .rec-container .blurb .para {
|
263
|
-
margin-bottom: 20px;
|
264
|
-
}
|
265
|
-
#conceptual_flow_with_tasks .rec-container .left-container, #conceptual_flow_with_tasks .rec-container .right-container {
|
266
|
-
display: table-cell;
|
267
|
-
margin-top: 20px;
|
268
|
-
width: 325px;
|
269
|
-
}
|
270
|
-
#conceptual_flow_with_tasks .rec-container .left-container {
|
271
|
-
padding-right: 10px;
|
272
|
-
}
|
273
|
-
#conceptual_flow_with_tasks .rec-container .right-container {
|
274
|
-
padding-left: 10px;
|
275
|
-
}
|
276
|
-
#conceptual_flow_with_tasks .rec-container .container-label {
|
277
|
-
font-size: 1.5em;
|
278
|
-
margin-bottom: 10px;
|
279
|
-
}
|
280
|
-
#conceptual_flow_with_tasks .rec-container .do {
|
281
|
-
color: rgba(17, 183, 40, 1);
|
282
|
-
}
|
283
|
-
#conceptual_flow_with_tasks .rec-container .do-not {
|
284
|
-
color: rgba(208, 50, 54, 1);
|
285
|
-
}
|
286
|
-
#conceptual_flow_with_tasks .rec-container .recommended {
|
287
|
-
color: rgba(40, 103, 206, 1);
|
288
|
-
}
|
289
|
-
#conceptual_flow_with_tasks .rec-container .not-recommended {
|
290
|
-
color: rgba(255, 133, 0, 1);
|
291
|
-
}
|
292
|
-
#conceptual_flow_with_tasks .rec-container .inline-graphic {
|
293
|
-
margin: 10px auto;
|
294
|
-
max-width: 100%}
|
295
|
-
#conceptual_flow_with_tasks.jazz .k-constant-name.Swift {
|
296
|
-
display: none;
|
297
|
-
}
|
298
|
-
body#guidance.jazz {
|
299
|
-
background-color: rgba(242, 242, 242, 1);
|
300
|
-
color: rgba(0, 0, 0, 1);
|
301
|
-
font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
|
302
|
-
font-size: 62.5%;
|
303
|
-
margin: 0 auto;
|
304
|
-
}
|
305
|
-
#guidance #ios_header {
|
306
|
-
font-family: Helvetica, Arial, sans-serif;
|
307
|
-
}
|
308
|
-
#guidance .chapter {
|
309
|
-
width: 980px;
|
310
|
-
margin-left: 0;
|
311
|
-
}
|
312
|
-
#guidance #navigator_less_content {
|
313
|
-
width: 880px;
|
314
|
-
margin: 0 auto;
|
315
|
-
}
|
316
|
-
#guidance .featured-doc {
|
317
|
-
display: table;
|
318
|
-
margin-left: 30px;
|
319
|
-
}
|
320
|
-
#guidance .featured-doc img.banner {
|
321
|
-
width: 200px;
|
322
|
-
height: 200px;
|
323
|
-
display: table-cell;
|
324
|
-
}
|
325
|
-
#guidance .headline {
|
326
|
-
display: table-cell;
|
327
|
-
max-width: 460px;
|
328
|
-
vertical-align: middle;
|
329
|
-
}
|
330
|
-
#guidance #hero {
|
331
|
-
margin-left: -50px;
|
332
|
-
margin-right: -50px;
|
333
|
-
background: -moz-linear-gradient(top, rgba(0, 136, 204, .43) 0, rgba(0, 136, 204, .13) 43%, rgba(0, 136, 204, .02) 100%, rgba(0, 136, 204, 0) 60%, rgba(0, 136, 204, 0) 61%, rgba(255, 255, 255, 0) 100%);
|
334
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 136, 204, .43)), color-stop(43%, rgba(0, 136, 204, .13)), color-stop(100%, rgba(0, 136, 204, .02)), color-stop(60%, rgba(0, 136, 204, 0)), color-stop(61%, rgba(0, 136, 204, 0)), color-stop(100%, rgba(255, 255, 255, 0)));
|
335
|
-
background: -webkit-linear-gradient(top, rgba(0, 136, 204, .43) 0, rgba(0, 136, 204, .13) 43%, rgba(0, 136, 204, .02) 100%, rgba(0, 136, 204, 0) 60%, rgba(0, 136, 204, 0) 61%, rgba(255, 255, 255, 0) 100%);
|
336
|
-
background: -o-linear-gradient(top, rgba(0, 136, 204, .43) 0, rgba(0, 136, 204, .13) 43%, rgba(0, 136, 204, .02) 100%, rgba(0, 136, 204, 0) 60%, rgba(0, 136, 204, 0) 61%, rgba(255, 255, 255, 0) 100%);
|
337
|
-
background: -ms-linear-gradient(top, rgba(0, 136, 204, .43) 0, rgba(0, 136, 204, .13) 43%, rgba(0, 136, 204, .02) 100%, rgba(0, 136, 204, 0) 60%, rgba(0, 136, 204, 0) 61%, rgba(255, 255, 255, 0) 100%);
|
338
|
-
background: linear-gradient(to bottom, rgba(0, 136, 204, .43) 0, rgba(255, 255, 255, 0) 100%);
|
339
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d0088cc', endColorstr='#00ffffff', GradientType=0);
|
340
|
-
}
|
341
|
-
#guidance #hero:before, #guidance #hero:after {
|
342
|
-
content: "";
|
343
|
-
display: table;
|
344
|
-
}
|
345
|
-
#guidance #hero:after {
|
346
|
-
clear: both;
|
347
|
-
}
|
348
|
-
#guidance #hero {
|
349
|
-
zoom: 1;
|
350
|
-
}
|
351
|
-
#guidance #hero_copy {
|
352
|
-
margin-top: 55px;
|
353
|
-
width: 550px;
|
354
|
-
float: left;
|
355
|
-
margin-left: 50px;
|
356
|
-
}
|
357
|
-
#guidance #hero_copy h2.chapter-name {
|
358
|
-
font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
|
359
|
-
font-size: 2.8em;
|
360
|
-
padding: 0 0 25px;
|
361
|
-
width: auto;
|
362
|
-
}
|
363
|
-
#guidance #hero_copy .para {
|
364
|
-
font-size: 1.6em;
|
365
|
-
}
|
366
|
-
#guidance #hero_copy .para, #guidance .highlighted-feature .highlighted-doc-copy .para, #guidance #highlights .highlighted-doc .highlighted-doc-copy .para {
|
367
|
-
color: rgba(128, 128, 128, 1);
|
368
|
-
}
|
369
|
-
#guidance #hero_banner {
|
370
|
-
float: right;
|
371
|
-
margin-right: 50px;
|
372
|
-
}
|
373
|
-
#guidance .featured-section {
|
374
|
-
clear: both;
|
375
|
-
}
|
376
|
-
#guidance hr.hero-line {
|
377
|
-
clear: both;
|
378
|
-
float: none;
|
379
|
-
width: 880px;
|
380
|
-
height: 1px;
|
381
|
-
border: 0;
|
382
|
-
background-color: rgba(185, 185, 185, 1);
|
383
|
-
position: relative;
|
384
|
-
top: 20px;
|
385
|
-
}
|
386
|
-
#guidance #highlights, #guidance .featured-section {
|
387
|
-
margin-top: 20px;
|
388
|
-
clear: both;
|
389
|
-
}
|
390
|
-
#guidance .featured-section .code-sample {
|
391
|
-
margin-left: 0;
|
392
|
-
}
|
393
|
-
#guidance #highlights .highlighted-doc, #guidance .featured-section .highlighted-feature {
|
394
|
-
clear: both;
|
395
|
-
}
|
396
|
-
#guidance #carousel .featured-doc .featured-link {
|
397
|
-
font-size: 1.3em;
|
398
|
-
}
|
399
|
-
#guidance .all-documents {
|
400
|
-
font-size: 1.5em;
|
401
|
-
margin-left: 2em;
|
402
|
-
}
|
403
|
-
#guidance #highlights .highlighted-doc img.banner, #guidance .featured-section .highlighted-feature img.banner {
|
404
|
-
margin-top: 25px;
|
405
|
-
float: left;
|
406
|
-
}
|
407
|
-
#guidance #highlights .highlighted-doc .u-book {
|
408
|
-
display: block;
|
409
|
-
font-weight: 700;
|
410
|
-
font-size: 1.4em;
|
411
|
-
margin-bottom: 5px;
|
412
|
-
}
|
413
|
-
#guidance .feature-name {
|
414
|
-
font-weight: 700;
|
415
|
-
font-size: 1.6em;
|
416
|
-
margin-bottom: 5px;
|
417
|
-
}
|
418
|
-
#guidance #highlights .highlighted-doc-copy, #guidance .highlighted-feature .highlighted-doc-copy {
|
419
|
-
width: 750px;
|
420
|
-
margin-top: 25px;
|
421
|
-
float: right;
|
422
|
-
}
|
423
|
-
#guidance .code-sample {
|
424
|
-
background: transparent;
|
425
|
-
}
|
426
|
-
#guidance .code-lines li:before {
|
427
|
-
color: inherit;
|
428
|
-
content: '';
|
429
|
-
counter-increment: none;
|
430
|
-
margin-right: 0;
|
431
|
-
}
|
432
|
-
#guidance .code-lines {
|
433
|
-
margin-left: 0;
|
434
|
-
background: transparent;
|
435
|
-
}
|
436
|
-
#guidance .highlighted-doc-copy .list-bullet .item .para {
|
437
|
-
font-size: 1.3em;
|
438
|
-
}
|
439
|
-
#guidance ul.list-bullet li.item:before {
|
440
|
-
font-size: 1em;
|
441
|
-
}
|
442
|
-
#guidance.jazz .code-lines li {
|
443
|
-
border-left-color: transparent;
|
444
|
-
}
|
445
|
-
#guidance.jazz #leave_feedback {
|
446
|
-
margin-left: 910px;
|
447
|
-
}
|
448
|
-
body#landing .chapter {
|
449
|
-
font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
|
450
|
-
}
|
451
|
-
#landing nav li.item.part-name.current {
|
452
|
-
background-color: rgba(255, 255, 255, 1);
|
453
|
-
}
|
454
|
-
#landing .headline {
|
455
|
-
margin-top: 55px;
|
456
|
-
margin-left: 55px;
|
457
|
-
width: 600px;
|
458
|
-
}
|
459
|
-
#landing .headline .u-book {
|
460
|
-
display: none;
|
461
|
-
}
|
462
|
-
#landing .headline .chapter-name {
|
463
|
-
font-size: 44px;
|
464
|
-
font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
|
465
|
-
text-align: center;
|
466
|
-
width: auto;
|
467
|
-
padding: 0;
|
468
|
-
}
|
469
|
-
#landing .featured-doc .banner {
|
470
|
-
max-width: 420px;
|
471
|
-
max-height: 300px;
|
472
|
-
display: block;
|
473
|
-
margin-left: auto;
|
474
|
-
margin-right: auto;
|
475
|
-
margin-top: 25px;
|
476
|
-
}
|
477
|
-
#landing .headline .para {
|
478
|
-
font-size: 20px;
|
479
|
-
text-align: center;
|
480
|
-
margin-top: 10px;
|
481
|
-
color: rgba(128, 128, 128, 1);
|
482
|
-
}
|
483
|
-
#landing #highlights {
|
484
|
-
margin-top: 20px;
|
485
|
-
}
|
486
|
-
#landing #highlights .highlighted-doc:first-child {
|
487
|
-
margin-left: 55px;
|
488
|
-
}
|
489
|
-
#landing #highlights .highlighted-doc .u-book {
|
490
|
-
font-weight: 700;
|
491
|
-
font-size: 1.4em;
|
492
|
-
color: rgba(0, 136, 204, 1);
|
493
|
-
}
|
494
|
-
#landing #highlights .highlighted-doc {
|
495
|
-
max-width: 150px;
|
496
|
-
display: inline-block;
|
497
|
-
margin: 4em;
|
498
|
-
vertical-align: top;
|
499
|
-
}
|
500
|
-
#landing #highlights .highlighted-doc .banner-case {
|
501
|
-
width: 150px;
|
502
|
-
height: 150px;
|
503
|
-
margin-bottom: 10px;
|
504
|
-
}
|
505
|
-
#landing #highlights .highlighted-doc img.banner {
|
506
|
-
max-width: 150px;
|
507
|
-
max-height: 150px;
|
508
|
-
display: block;
|
509
|
-
margin-bottom: 10px;
|
510
|
-
}
|
511
|
-
#landing #highlights .highlighted-doc .para {
|
512
|
-
color: rgba(128, 128, 128, 1);
|
513
|
-
}
|
514
|
-
body.swift .Swift, body.both .Swift {
|
515
|
-
display: inline-block;
|
516
|
-
}
|
517
|
-
body.obj_c .Swift {
|
518
|
-
display: none;
|
519
|
-
}
|
520
|
-
body.obj_c .Objective-C, body.both .Objective-C {
|
521
|
-
display: inline-block;
|
522
|
-
}
|
523
|
-
body.swift .Objective-C {
|
524
|
-
display: none;
|
525
|
-
}
|
526
|
-
body.swift #metadata_table .Swift, body.obj_c #metadata_table .Objective-C, body.both #metadata_table .Objective-C {
|
527
|
-
display: block;
|
528
|
-
}
|
529
|
-
body.both #metadata_table .Swift, body.swift #metadata_table .Objective-C {
|
530
|
-
display: none;
|
531
|
-
}
|
532
|
-
body.swift .task-group-term a.Swift, body.swift #jump_to .Swift {
|
533
|
-
display: block;
|
534
|
-
}
|
535
|
-
body.obj_c .task-group-term a.Swift, body.both .task-group-term a.Swift, body.obj_c #jump_to .Swift, body.both #jump_to .Swift {
|
536
|
-
display: none;
|
537
|
-
}
|
538
|
-
body.swift .task-group-term a.Objective-C, body.swift #jump_to .Objective-C {
|
539
|
-
display: none;
|
540
|
-
}
|
541
|
-
body.obj_c .task-group-term a.Objective-C, body.both .task-group-term a.Objective-C, body.obj_c #jump_to .Objective-C, body.both #jump_to .Objective-C {
|
542
|
-
display: block;
|
543
|
-
}
|
544
|
-
body#reference #jump_to.closed .list-bullet {
|
545
|
-
display: none;
|
546
|
-
}
|
547
|
-
#reference .x-class-method.Swift, #reference .x-instance-method.Swift {
|
548
|
-
margin-left: 15px;
|
549
|
-
}
|
550
|
-
body.swift .declaration .Swift, body.both .declaration .Swift {
|
551
|
-
display: block;
|
552
|
-
}
|
553
|
-
body.obj_c .declaration .Objective-C, body.both .declaration .Objective-C {
|
554
|
-
display: block;
|
555
|
-
}
|
556
|
-
body.both .symbol .constant .Swift {
|
557
|
-
display: none;
|
558
|
-
}
|
559
|
-
body.both .k-constant-name.Swift {
|
560
|
-
display: none;
|
561
|
-
}
|
562
|
-
#reference .chapter {
|
563
|
-
overflow-x: hidden;
|
564
|
-
border-top: 0;
|
565
|
-
border-left: 1px solid rgba(233, 233, 233, 1);
|
566
|
-
border-right: 1px solid rgba(233, 233, 233, 1);
|
567
|
-
border-bottom: 1px solid rgba(233, 233, 233, 1);
|
568
|
-
}
|
569
|
-
#reference .nav-chapters {
|
570
|
-
height: 100%;
|
571
|
-
padding: 12px 0 0;
|
572
|
-
}
|
573
|
-
#reference .part-name {
|
574
|
-
color: #000;
|
575
|
-
cursor: default;
|
576
|
-
padding: 15px 15px 15px 20px;
|
577
|
-
}
|
578
|
-
#reference .part-name.tasks {
|
579
|
-
background: rgba(255, 255, 255, 1);
|
580
|
-
overflow: auto;
|
581
|
-
min-height: 61px;
|
582
|
-
}
|
583
|
-
#reference .part-name.tasks .nav-chapters:not(:last-of-type) {
|
584
|
-
margin-bottom: 15px;
|
585
|
-
}
|
586
|
-
#reference .book-parts a {
|
587
|
-
display: initial;
|
588
|
-
margin-left: 0;
|
589
|
-
}
|
590
|
-
#reference .nav-chapters li {
|
591
|
-
color: rgba(128, 128, 128, 1);
|
592
|
-
margin-left: 12px;
|
593
|
-
padding-left: 10px;
|
594
|
-
text-indent: -10px;
|
595
|
-
}
|
596
|
-
#reference .nav-chapter a.active-task {
|
597
|
-
color: rgba(0, 0, 0, 1);
|
598
|
-
}
|
599
|
-
#reference .nav-chapter .u-book {
|
600
|
-
font-style: normal;
|
601
|
-
}
|
602
|
-
#reference #bashful {
|
603
|
-
width: 734px;
|
604
|
-
height: 32px;
|
605
|
-
padding-left: 0;
|
606
|
-
position: fixed;
|
607
|
-
background: rgba(255, 255, 255, .8);
|
608
|
-
z-index: 2;
|
609
|
-
margin-top: 0;
|
610
|
-
}
|
611
|
-
#reference #language {
|
612
|
-
position: relative;
|
613
|
-
left: 15px;
|
614
|
-
float: left;
|
615
|
-
padding: 10px;
|
616
|
-
}
|
617
|
-
#reference #language input[type=radio] {
|
618
|
-
display: none;
|
619
|
-
}
|
620
|
-
#reference #language label {
|
621
|
-
margin-left: 4px;
|
622
|
-
padding: 1px 3px;
|
623
|
-
color: rgba(0, 136, 204, 1);
|
624
|
-
border-bottom: 1px solid rgba(0, 136, 204, .25);
|
625
|
-
cursor: pointer;
|
626
|
-
}
|
627
|
-
#reference #language label.selected {
|
628
|
-
background: rgba(0, 136, 204, 1);
|
629
|
-
color: rgba(255, 255, 255, 1);
|
630
|
-
border-radius: 2px;
|
631
|
-
cursor: default;
|
632
|
-
}
|
633
|
-
#reference #bashful .shield {
|
634
|
-
background: #fff;
|
635
|
-
width: 734px;
|
636
|
-
height: 32px;
|
637
|
-
position: absolute;
|
638
|
-
opacity: .8;
|
639
|
-
}
|
640
|
-
#reference #bashful .menu-bar-item {
|
641
|
-
border-right: 1px solid rgba(233, 233, 233, 0);
|
642
|
-
border-left: 1px solid rgba(233, 233, 233, 0);
|
643
|
-
border-bottom: 1px solid rgba(255, 255, 255, 0);
|
644
|
-
cursor: pointer;
|
645
|
-
padding: 10px;
|
646
|
-
position: relative;
|
647
|
-
left: 15px;
|
648
|
-
float: left;
|
649
|
-
-webkit-transition: background-color .3s ease, border-color .3s ease;
|
650
|
-
}
|
651
|
-
#reference #bashful .menu-bar-item span {
|
652
|
-
-webkit-user-select: none;
|
653
|
-
}
|
654
|
-
#reference #bashful .menu-bar-item.open {
|
655
|
-
background-color: #fff;
|
656
|
-
border-right: 1px solid rgba(233, 233, 233, 1);
|
657
|
-
border-left: 1px solid rgba(233, 233, 233, 1);
|
658
|
-
border-bottom: 1px solid rgba(255, 255, 255, 1);
|
659
|
-
}
|
660
|
-
#reference #bashful .menu-bar-item.closing {
|
661
|
-
background-color: #fff;
|
662
|
-
}
|
663
|
-
#reference #bashful .chevron {
|
664
|
-
position: relative;
|
665
|
-
display: inline-block;
|
666
|
-
left: 2px;
|
667
|
-
width: 13px;
|
668
|
-
height: 4px;
|
669
|
-
}
|
670
|
-
#reference #bashful .chevy {
|
671
|
-
background: #878787;
|
672
|
-
height: 2px;
|
673
|
-
position: absolute;
|
674
|
-
width: 10px;
|
675
|
-
-webkit-transition: -webkit-transform .3s ease;
|
676
|
-
-moz-transition: -moz-transform .3s ease;
|
677
|
-
-o-transition: -o-transform .3s ease;
|
678
|
-
transition: transform .3s ease;
|
679
|
-
}
|
680
|
-
#reference #bashful .chevron-left {
|
681
|
-
-webkit-transform: rotateZ(45deg) scale(0.6);
|
682
|
-
-moz-transform: rotateZ(45deg) scale(0.6);
|
683
|
-
-o-transform: rotateZ(45deg) scale(0.6);
|
684
|
-
transform: rotateZ(45deg) scale(0.6);
|
685
|
-
}
|
686
|
-
#reference #bashful .chevron-right {
|
687
|
-
left: 4px;
|
688
|
-
-webkit-transform: rotateZ(-45deg) scale(0.6);
|
689
|
-
-moz-transform: rotateZ(-45deg) scale(0.6);
|
690
|
-
-o-transform: rotateZ(-45deg) scale(0.6);
|
691
|
-
transform: rotateZ(-45deg) scale(0.6);
|
692
|
-
}
|
693
|
-
#reference #bashful .open .chevron-left {
|
694
|
-
-webkit-transform: rotateZ(-45deg) scale(0.6);
|
695
|
-
-moz-transform: rotateZ(-45deg) scale(0.6);
|
696
|
-
-o-transform: rotateZ(-45deg) scale(0.6);
|
697
|
-
transform: rotateZ(-45deg) scale(0.6);
|
698
|
-
}
|
699
|
-
#reference #bashful .open .chevron-right {
|
700
|
-
-webkit-transform: rotateZ(45deg) scale(0.6);
|
701
|
-
-moz-transform: rotateZ(45deg) scale(0.6);
|
702
|
-
-o-transform: rotateZ(45deg) scale(0.6);
|
703
|
-
transform: rotateZ(45deg) scale(0.6);
|
704
|
-
}
|
705
|
-
#reference #bashful .menu-bar-item menu {
|
706
|
-
background: #fff;
|
707
|
-
border: 1px solid rgba(233, 233, 233, 1);
|
708
|
-
box-shadow: 0 0 1px rgba(0, 0, 0, .07);
|
709
|
-
cursor: default;
|
710
|
-
padding: 10px;
|
711
|
-
opacity: 0;
|
712
|
-
position: absolute;
|
713
|
-
z-index: -1;
|
714
|
-
left: -1px;
|
715
|
-
-webkit-transform: translateY(-120px);
|
716
|
-
-moz-transform: translateY(-120px);
|
717
|
-
-o-transform: translateY(-120px);
|
718
|
-
transform: translateY(-120px);
|
719
|
-
-webkit-transition: -webkit-transform .3s ease, opacity .3s ease;
|
720
|
-
-moz-transition: -moz-transform .3s ease, opacity .3s ease;
|
721
|
-
-o-transition: -o-transform .3s ease, opacity .3s ease;
|
722
|
-
transition: transform .3s ease, opacity .3s ease;
|
723
|
-
}
|
724
|
-
#reference #bashful #options menu {
|
725
|
-
width: 191px;
|
726
|
-
padding: 10px 6px 10px 10px;
|
727
|
-
}
|
728
|
-
#reference .keyboard-shortcut {
|
729
|
-
background: rgba(172, 180, 190, 1);
|
730
|
-
border-bottom: 1px solid rgba(136, 139, 143, 1);
|
731
|
-
border-radius: 2px;
|
732
|
-
color: #fff;
|
733
|
-
font-size: 8px;
|
734
|
-
padding: 2px 4px 1px;
|
735
|
-
margin-left: 5px;
|
736
|
-
position: relative;
|
737
|
-
top: -1px;
|
738
|
-
}
|
739
|
-
#reference #bashful .menu-bar-item.open menu {
|
740
|
-
-webkit-transform: translateY(0);
|
741
|
-
-moz-transform: translateY(0);
|
742
|
-
-o-transform: translateY(0);
|
743
|
-
transform: translateY(0);
|
744
|
-
opacity: 1;
|
745
|
-
}
|
746
|
-
#reference .chapter-name {
|
747
|
-
margin-top: 21px;
|
748
|
-
}
|
749
|
-
#reference #bashful #jump_to menu {
|
750
|
-
max-height: 519px;
|
751
|
-
min-width: 190px;
|
752
|
-
white-space: nowrap;
|
753
|
-
overflow-x: hidden;
|
754
|
-
overflow-y: auto;
|
755
|
-
padding-bottom: 5px;
|
756
|
-
}
|
757
|
-
#reference #jump_to .filter {
|
758
|
-
position: relative;
|
759
|
-
width: 98%;
|
760
|
-
background: 0;
|
761
|
-
padding-left: 0;
|
762
|
-
float: none;
|
763
|
-
margin-top: 0;
|
764
|
-
}
|
765
|
-
#reference #jump_to #filter_matches {
|
766
|
-
position: absolute;
|
767
|
-
top: 19px;
|
768
|
-
right: 38px;
|
769
|
-
color: #bbb;
|
770
|
-
}
|
771
|
-
#reference #jump_to .highlighted {
|
772
|
-
background: #ff0;
|
773
|
-
}
|
774
|
-
#reference #jump_to .list-bullet {
|
775
|
-
cursor: default;
|
776
|
-
margin: 10px 0 0;
|
777
|
-
}
|
778
|
-
#reference #jump_to .list-bullet .item {
|
779
|
-
padding-left: 0;
|
780
|
-
margin-bottom: 5px;
|
781
|
-
}
|
782
|
-
#reference #jump_to .list-bullet .item::before {
|
783
|
-
content: ""}
|
784
|
-
#reference #jump_to .list-bullet a {
|
785
|
-
font: 10px Menlo, monospace;
|
786
|
-
}
|
787
|
-
#reference #jump_to .list-bullet a.otp-indent {
|
788
|
-
margin-left: 12px;
|
789
|
-
}
|
790
|
-
#reference #jump_to .list-bullet a.focused {
|
791
|
-
outline-style: auto;
|
792
|
-
outline-color: -webkit-focus-ring-color;
|
793
|
-
outline-width: thick;
|
794
|
-
}
|
795
|
-
#reference .rubber-band-gap {
|
796
|
-
background: rgba(255, 255, 255, 1);
|
797
|
-
height: 250px;
|
798
|
-
position: fixed;
|
799
|
-
width: 734px;
|
800
|
-
z-index: -1;
|
801
|
-
}
|
802
|
-
#reference #reference_container>.important {
|
803
|
-
margin-top: 15px;
|
804
|
-
margin-bottom: 15px;
|
805
|
-
}
|
806
|
-
#reference .overview-bulk.squashed {
|
807
|
-
height: 0;
|
808
|
-
opacity: .00001;
|
809
|
-
pointer-events: none;
|
810
|
-
}
|
811
|
-
#reference .overview-bulk {
|
812
|
-
height: inherit;
|
813
|
-
opacity: 1;
|
814
|
-
pointer-events: auto;
|
815
|
-
}
|
816
|
-
#reference .overview-bulk-toggle {
|
817
|
-
cursor: pointer;
|
818
|
-
}
|
819
|
-
#reference #metadata_table {
|
820
|
-
height: 150px;
|
821
|
-
margin: 0 25px;
|
822
|
-
display: -webkit-flex;
|
823
|
-
display: -moz-box;
|
824
|
-
display: -o-box;
|
825
|
-
display: flex;
|
826
|
-
-webkit-justify-content: space-between;
|
827
|
-
-moz-justify-content: space-between;
|
828
|
-
-o-justify-content: space-between;
|
829
|
-
justify-content: space-between;
|
830
|
-
}
|
831
|
-
#reference #metadata_table>div {
|
832
|
-
height: 100%;
|
833
|
-
min-width: 25%;
|
834
|
-
margin-right: 20px;
|
835
|
-
}
|
836
|
-
#reference #metadata_table .last-box {
|
837
|
-
margin-right: 0;
|
838
|
-
}
|
839
|
-
#reference #metadata_table .half {
|
840
|
-
height: 50%}
|
841
|
-
#reference #metadata_table .para {
|
842
|
-
margin-bottom: 0;
|
843
|
-
}
|
844
|
-
#reference #metadata_table hr {
|
845
|
-
margin: 0 0 3px;
|
846
|
-
border: 0;
|
847
|
-
height: 1px;
|
848
|
-
background: rgba(233, 233, 233, 1);
|
849
|
-
position: relative;
|
850
|
-
top: -1px;
|
851
|
-
}
|
852
|
-
#reference #metadata_table ol, #reference #metadata_table ul {
|
853
|
-
overflow: auto;
|
854
|
-
height: 118px;
|
855
|
-
}
|
856
|
-
#reference #metadata_table li {
|
857
|
-
list-style-type: none;
|
858
|
-
text-overflow: ellipsis;
|
859
|
-
white-space: nowrap;
|
860
|
-
overflow-x: hidden;
|
861
|
-
color: rgba(0, 136, 204, 1);
|
862
|
-
}
|
863
|
-
#reference #metadata_table .inheritance .depth4 {
|
864
|
-
padding-left: 12px;
|
865
|
-
}
|
866
|
-
#reference #metadata_table .inheritance .depth5 {
|
867
|
-
padding-left: 26px;
|
868
|
-
background-position: -1px -6px;
|
869
|
-
}
|
870
|
-
#reference #metadata_table .inheritance .depth6 {
|
871
|
-
padding-left: 40px;
|
872
|
-
background-position: 13px -6px;
|
873
|
-
}
|
874
|
-
#reference #metadata_table .inheritance .depth7 {
|
875
|
-
padding-left: 54px;
|
876
|
-
background-position: 27px -6px;
|
877
|
-
}
|
878
|
-
#reference #metadata_table .inheritance .depth8 {
|
879
|
-
padding-left: 68px;
|
880
|
-
background-position: 41px -6px;
|
881
|
-
}
|
882
|
-
#reference #metadata_table .inheritance .depth9 {
|
883
|
-
padding-left: 82px;
|
884
|
-
background-position: 55px -6px;
|
885
|
-
}
|
886
|
-
#reference #metadata_table .inheritance li {
|
887
|
-
background-image: url(../Images/class_node_parent_and_child_2x.png);
|
888
|
-
background-position: -15px -6px;
|
889
|
-
background-repeat: no-repeat;
|
890
|
-
background-size: 48px 29px;
|
891
|
-
}
|
892
|
-
#reference #metadata_table .inheritance li.subclass {
|
893
|
-
background-image: url(../Images/class_node_subclass_with_siblings_2x.png);
|
894
|
-
}
|
895
|
-
#reference #metadata_table .inheritance li:last-of-type {
|
896
|
-
background-image: url(../Images/class_node_subclass_last_child_2x.png);
|
897
|
-
}
|
898
|
-
#reference #metadata_table .code-voice {
|
899
|
-
font-size: 12px;
|
900
|
-
line-height: 1.5;
|
901
|
-
}
|
902
|
-
#reference #metadata_table span {
|
903
|
-
font-size: 13px;
|
904
|
-
color: rgba(128, 128, 128, 1);
|
905
|
-
}
|
906
|
-
#reference .z-methods-by-task {
|
907
|
-
padding-top: 0;
|
908
|
-
padding-bottom: 0;
|
909
|
-
}
|
910
|
-
#reference .task-name-container {
|
911
|
-
background: #fff;
|
912
|
-
left: -25px;
|
913
|
-
margin-bottom: 0;
|
914
|
-
padding: 35px 25px 0;
|
915
|
-
position: relative;
|
916
|
-
width: 100%}
|
917
|
-
#reference .section-name {
|
918
|
-
cursor: pointer;
|
919
|
-
display: inline-block;
|
920
|
-
}
|
921
|
-
#reference .section .section {
|
922
|
-
margin-top: 0;
|
923
|
-
}
|
924
|
-
#reference .section .section .task-name-container {
|
925
|
-
padding-top: 15px;
|
926
|
-
}
|
927
|
-
#reference .task-group-section {
|
928
|
-
padding: 1px 25px 0;
|
929
|
-
-webkit-transition: -webkit-transform .3s ease;
|
930
|
-
-moz-transition: -moz-transform .3s ease;
|
931
|
-
-o-transition: -o-transform .3s ease;
|
932
|
-
transition: transform .3s ease;
|
933
|
-
}
|
934
|
-
#reference .symbol, #reference .task-group section.intro {
|
935
|
-
background: #fff;
|
936
|
-
left: -25px;
|
937
|
-
list-style-type: none;
|
938
|
-
padding: 13px 25px 0;
|
939
|
-
position: relative;
|
940
|
-
width: 100%}
|
941
|
-
#reference .task-group section.intro {
|
942
|
-
padding-bottom: 1px;
|
943
|
-
}
|
944
|
-
#reference .task-group-term {
|
945
|
-
font-size: 1.4em;
|
946
|
-
word-break: break-all;
|
947
|
-
-webkit-transition: -webkit-transform .3s ease;
|
948
|
-
-moz-transition: -moz-transform .3s ease;
|
949
|
-
-o-transition: -o-transform .3s ease;
|
950
|
-
transition: transform .3s ease;
|
951
|
-
}
|
952
|
-
#reference .on .task-group-term {
|
953
|
-
-webkit-transform: translateX(-15px);
|
954
|
-
-moz-transform: translateX(-15px);
|
955
|
-
-o-transform: translateX(-15px);
|
956
|
-
transform: translateX(-15px);
|
957
|
-
}
|
958
|
-
#reference .task-group-term .x-class-method.Objective-C::before {
|
959
|
-
content: '+ '}
|
960
|
-
#reference .task-group-term .x-instance-method.Objective-C::before {
|
961
|
-
content: '- '}
|
962
|
-
#reference .task-group-term>.code-voice {
|
963
|
-
display: inline-block;
|
964
|
-
}
|
965
|
-
#reference .item a.x-api-property-task-list, #reference .item a.type-def, #reference .item a.constant-group, #reference .item a.data-type, #reference .item a.notification, #reference .item a.x-function, #reference .item a.struct, #reference .item a.union, #reference .item a.variable, #reference .item a.filter, #reference .item a.x-callback {
|
966
|
-
margin-left: 15px;
|
967
|
-
}
|
968
|
-
#reference .deprecated a {
|
969
|
-
position: relative;
|
970
|
-
}
|
971
|
-
#reference .deprecated a, #reference .constant .deprecated .code-voice {
|
972
|
-
text-decoration: line-through;
|
973
|
-
-webkit-text-stroke-color: rgba(163, 21, 21, 1);
|
974
|
-
-webkit-text-stroke-width: .0000000001px;
|
975
|
-
-moz-text-decoration-color: rgba(163, 21, 21, 1);
|
976
|
-
}
|
977
|
-
#reference .deprecated .deprecated-version {
|
978
|
-
color: rgba(163, 21, 21, 1);
|
979
|
-
font-size: .8em;
|
980
|
-
margin-left: 5px;
|
981
|
-
display: inline-block;
|
982
|
-
}
|
983
|
-
#reference .new {
|
984
|
-
color: rgba(113, 188, 120, 1);
|
985
|
-
font-size: .8em;
|
986
|
-
}
|
987
|
-
#reference .pointy-thing-container {
|
988
|
-
background: #fff;
|
989
|
-
border-bottom: 1px solid rgba(233, 233, 233, 1);
|
990
|
-
left: -25px;
|
991
|
-
padding-left: 25px;
|
992
|
-
padding-right: 25px;
|
993
|
-
padding-bottom: 13px;
|
994
|
-
position: relative;
|
995
|
-
width: 100%}
|
996
|
-
#reference .pointy-thing {
|
997
|
-
background: rgba(249, 249, 249, 1);
|
998
|
-
border-left: 1px solid rgba(233, 233, 233, 1);
|
999
|
-
border-top: 1px solid rgba(233, 233, 233, 1);
|
1000
|
-
height: 12px;
|
1001
|
-
left: 21px;
|
1002
|
-
top: -7px;
|
1003
|
-
-webkit-transform: rotate(45deg);
|
1004
|
-
-moz-transform: rotate(45deg);
|
1005
|
-
-o-transform: rotate(45deg);
|
1006
|
-
transform: rotate(45deg);
|
1007
|
-
position: absolute;
|
1008
|
-
width: 12px;
|
1009
|
-
}
|
1010
|
-
#reference .height-container {
|
1011
|
-
height: 0;
|
1012
|
-
left: -25px;
|
1013
|
-
padding: 0 25px;
|
1014
|
-
position: relative;
|
1015
|
-
width: 100%}
|
1016
|
-
#reference .height-container .section {
|
1017
|
-
background: rgba(249, 249, 249, 1);
|
1018
|
-
border-bottom: 1px solid rgba(233, 233, 233, 1);
|
1019
|
-
left: -25px;
|
1020
|
-
margin: 0;
|
1021
|
-
padding: 13px 25px 0;
|
1022
|
-
position: relative;
|
1023
|
-
width: 100%}
|
1024
|
-
#reference .height-container .section h4 {
|
1025
|
-
font-size: 13px;
|
1026
|
-
line-height: 1.5;
|
1027
|
-
margin-top: 21px;
|
1028
|
-
}
|
1029
|
-
#reference .section .declaration {
|
1030
|
-
margin-top: 21px;
|
1031
|
-
}
|
1032
|
-
#reference .section .declaration .code-voice {
|
1033
|
-
color: rgba(128, 128, 128, 1);
|
1034
|
-
margin-bottom: 15px;
|
1035
|
-
padding-bottom: 6px;
|
1036
|
-
}
|
1037
|
-
#reference .declaration div .para {
|
1038
|
-
margin-bottom: 0;
|
1039
|
-
}
|
1040
|
-
#reference .constant-group .declaration .code-voice, #reference .type-def .declaration .code-voice {
|
1041
|
-
white-space: pre-wrap;
|
1042
|
-
}
|
1043
|
-
#reference .task-group .item .graybox {
|
1044
|
-
margin: 5px 0 26px;
|
1045
|
-
}
|
1046
|
-
#reference .graybox .tip, #reference .graybox .note, #reference .graybox .warning, #reference .graybox .important {
|
1047
|
-
margin: 25px auto;
|
1048
|
-
}
|
1049
|
-
#reference .symbol .graybox .para:last-of-type {
|
1050
|
-
margin-bottom: 0;
|
1051
|
-
padding-bottom: 0;
|
1052
|
-
}
|
1053
|
-
#reference .parameters .graybox tr td:first-of-type {
|
1054
|
-
text-align: right;
|
1055
|
-
padding: 7px;
|
1056
|
-
vertical-align: top;
|
1057
|
-
word-break: normal;
|
1058
|
-
width: 40px;
|
1059
|
-
}
|
1060
|
-
#reference .task-group .item .graybox .graybox {
|
1061
|
-
margin-bottom: 0;
|
1062
|
-
}
|
1063
|
-
#reference .graybox .TableHeading_TableRow_TableCell {
|
1064
|
-
background: rgba(243, 243, 243, 1);
|
1065
|
-
}
|
1066
|
-
#reference .symbol .height-container .figure {
|
1067
|
-
margin: 15px 0 0;
|
1068
|
-
}
|
1069
|
-
#reference .symbol .height-container .figure .caption {
|
1070
|
-
display: none;
|
1071
|
-
}
|
1072
|
-
#reference em.term, #reference em.parameter-name {
|
1073
|
-
color: rgba(65, 65, 65, 1);
|
1074
|
-
font-size: 12px;
|
1075
|
-
line-height: 1.5;
|
1076
|
-
}
|
1077
|
-
#reference .see-also {
|
1078
|
-
cursor: pointer;
|
1079
|
-
font-family: Menlo, monospace;
|
1080
|
-
}
|
1081
|
-
#reference .height-container .section>div:last-of-type {
|
1082
|
-
margin-bottom: 15px;
|
1083
|
-
}
|
1084
|
-
#reference .hiding-symbol-counts {
|
1085
|
-
background-color: rgba(255, 255, 255, 1);
|
1086
|
-
color: rgba(204, 204, 204, 1);
|
1087
|
-
cursor: default;
|
1088
|
-
font-size: 11px;
|
1089
|
-
left: -25px;
|
1090
|
-
line-height: 1.75;
|
1091
|
-
list-style-type: none;
|
1092
|
-
padding-top: 13px;
|
1093
|
-
padding-left: 39px;
|
1094
|
-
position: relative;
|
1095
|
-
width: 695px;
|
1096
|
-
-webkit-transition: -webkit-transform .3s ease;
|
1097
|
-
-moz-transition: -moz-transform .3s ease;
|
1098
|
-
-o-transition: -o-transform .3s ease;
|
1099
|
-
transition: transform .3s ease;
|
1100
|
-
}
|
1101
|
-
#reference .symbol, #reference .task-group {
|
1102
|
-
-webkit-transition: -webkit-transform .3s ease;
|
1103
|
-
-moz-transition: -moz-transform .3s ease;
|
1104
|
-
-o-transition: -o-transform .3s ease;
|
1105
|
-
transition: transform .3s ease;
|
1106
|
-
}
|
1107
|
-
#reference .constant-group .list-bullet, #reference .type-def .list-bullet {
|
1108
|
-
margin-left: 15px;
|
1109
|
-
}
|
1110
|
-
#reference .symbol .constant::before {
|
1111
|
-
color: rgba(65, 65, 65, 1);
|
1112
|
-
content: "\02022";
|
1113
|
-
font-size: 1.5em;
|
1114
|
-
left: -15px;
|
1115
|
-
top: 4px;
|
1116
|
-
position: absolute;
|
1117
|
-
}
|
1118
|
-
#reference .symbol .constant {
|
1119
|
-
margin-bottom: 20px;
|
1120
|
-
padding-top: 1px;
|
1121
|
-
position: relative;
|
1122
|
-
}
|
1123
|
-
#reference .symbol .constant .Swift .code-voice, #reference .symbol .constant .Objective-C .code-voice {
|
1124
|
-
position: relative;
|
1125
|
-
}
|
1126
|
-
#reference .symbol .constant .abstract, #reference .symbol .constant .definition {
|
1127
|
-
margin-bottom: 15px;
|
1128
|
-
}
|
1129
|
-
#reference .last-one.fat {
|
1130
|
-
padding-bottom: 750px;
|
1131
|
-
}
|
1132
|
-
#reference #next_previous {
|
1133
|
-
width: 614px;
|
1134
|
-
z-index: 1;
|
1135
|
-
}
|
1136
|
-
#reference .para .function-name {
|
1137
|
-
color: rgba(128, 128, 128, 1);
|
1138
|
-
word-wrap: break-word;
|
1139
|
-
}
|
1140
|
-
#reference .code-sample {
|
1141
|
-
background: inherit;
|
1142
|
-
}
|
1143
|
-
#reference .declaration .code-line {
|
1144
|
-
font: 1em Menlo, monospace;
|
1145
|
-
}
|
1146
|
-
#reference .z-class-description .section .section-name, #reference .z-protocol-description .section .section-name {
|
1147
|
-
color: rgba(128, 128, 128, 1);
|
1148
|
-
font-size: 2.2em;
|
1149
|
-
cursor: default;
|
1150
|
-
}
|
1151
|
-
#reference .z-protocol-description .section .section .section-name, #reference .z-class-description .section .section .section-name {
|
1152
|
-
color: rgba(0, 0, 0, 1);
|
1153
|
-
font-size: 1.8em;
|
1154
|
-
padding-top: 20px;
|
1155
|
-
}
|
1156
|
-
#reference .item .para {
|
1157
|
-
padding-bottom: 0;
|
1158
|
-
margin: 0 0 15px;
|
1159
|
-
}
|
1160
|
-
#reference a[name] {
|
1161
|
-
padding-top: 112px;
|
1162
|
-
margin: -112px 0 0;
|
1163
|
-
}
|
1164
|
-
#reference .height-container td {
|
1165
|
-
max-width: inherit;
|
1166
|
-
}
|
1167
|
-
#reference .declaration .kt a, #reference .declaration .n a {
|
1168
|
-
color: inherit;
|
1169
|
-
}
|
1170
|
-
#reference .declaration .kt a:hover, #reference .declaration .n a:hover, #reference .declaration a:hover .kt, #reference .declaration a:hover .n {
|
1171
|
-
border-bottom: 1px solid;
|
1172
|
-
}
|
1173
|
-
#reference .copyright {
|
1174
|
-
margin: 10px 0;
|
1175
|
-
}
|
1176
|
-
/*! Copyright © 2012 Apple Inc. All rights reserved. */#release_notes .chapter-name {
|
1177
|
-
width: auto;
|
1178
|
-
}
|
1179
|
-
#release_notes .nav-part-active {
|
1180
|
-
background-color: rgba(255, 255, 255, 1);
|
1181
|
-
color: rgba(0, 0, 0, 1);
|
1182
|
-
cursor: default;
|
1183
|
-
}
|
1184
|
-
#release_notes #contents {
|
1185
|
-
width: 980px;
|
1186
|
-
margin-left: 0;
|
1187
|
-
}
|
1188
|
-
#release_notes .section {
|
1189
|
-
width: 734px;
|
1190
|
-
margin: 0 auto;
|
1191
|
-
}
|
1192
|
-
#release_notes #mini_toc {
|
1193
|
-
left: 434px;
|
1194
|
-
}
|
1195
|
-
#roadmap.jazz .nav-chapters {
|
1196
|
-
font-weight: 400;
|
1197
|
-
line-height: 110%;
|
1198
|
-
list-style-position: outside;
|
1199
|
-
list-style-type: none;
|
1200
|
-
margin: 0;
|
1201
|
-
padding: 8px 0 0;
|
1202
|
-
height: 100%;
|
1203
|
-
width: 200px;
|
1204
|
-
}
|
1205
|
-
#roadmap .nav-part-active {
|
1206
|
-
background-color: rgba(255, 255, 255, 1);
|
1207
|
-
color: rgba(0, 0, 0, 1);
|
1208
|
-
cursor: default;
|
1209
|
-
}
|
1210
|
-
#roadmap.jazz .conceptual-with-tasks:before {
|
1211
|
-
border: 2px solid rgba(128, 128, 128, 1);
|
1212
|
-
border-radius: 50%;
|
1213
|
-
content: "";
|
1214
|
-
display: block;
|
1215
|
-
float: left;
|
1216
|
-
height: 10px;
|
1217
|
-
margin: 2px 8px 0 0;
|
1218
|
-
width: 10px;
|
1219
|
-
}
|
1220
|
-
#roadmap.jazz .tutorial:before {
|
1221
|
-
border: 2px solid rgba(128, 128, 128, 1);
|
1222
|
-
content: "";
|
1223
|
-
display: block;
|
1224
|
-
float: left;
|
1225
|
-
height: 10px;
|
1226
|
-
margin: 2px 8px 0 0;
|
1227
|
-
width: 10px;
|
1228
|
-
}
|
1229
|
-
#roadmap.jazz .nav-visited-chapter.conceptual-with-tasks:before {
|
1230
|
-
background-color: rgba(128, 128, 128, 1);
|
1231
|
-
}
|
1232
|
-
#roadmap.jazz .nav-visited-chapter.tutorial:before {
|
1233
|
-
background-color: rgba(128, 128, 128, 1);
|
1234
|
-
}
|
1235
|
-
#roadmap.jazz .nav-current-chapter.conceptual-with-tasks:before {
|
1236
|
-
background-color: rgba(0, 0, 0, 1);
|
1237
|
-
border-color: rgba(0, 0, 0, 1);
|
1238
|
-
}
|
1239
|
-
#roadmap.jazz .nav-current-chapter.tutorial:before {
|
1240
|
-
background-color: rgba(0, 0, 0, 1);
|
1241
|
-
border-color: rgba(0, 0, 0, 1);
|
1242
|
-
}
|
1243
|
-
.jazz .book-parts a {
|
1244
|
-
margin-left: 24px;
|
1245
|
-
}
|
1246
|
-
#roadmap .nav-chapters li:first-child .pipe {
|
1247
|
-
height: 9px;
|
1248
|
-
top: auto;
|
1249
|
-
}
|
1250
|
-
#roadmap .nav-chapters .pipe {
|
1251
|
-
background-color: gray;
|
1252
|
-
height: 9px;
|
1253
|
-
padding-top: 2px;
|
1254
|
-
position: absolute;
|
1255
|
-
right: auto;
|
1256
|
-
bottom: auto;
|
1257
|
-
left: 26px;
|
1258
|
-
width: 2px;
|
1259
|
-
margin-top: -1px;
|
1260
|
-
}
|
1261
|
-
#roadmap .nav-chapters li:last-child .pipe {
|
1262
|
-
height: 0;
|
1263
|
-
display: none;
|
1264
|
-
}
|
1265
|
-
body.jazz {
|
1266
|
-
background-color: rgba(242, 242, 242, 1);
|
1267
|
-
color: rgba(0, 0, 0, 1);
|
1268
|
-
font-family: Helvetica, Arial, sans-serif;
|
1269
|
-
font-size: 62.5%;
|
1270
|
-
margin: 0 auto;
|
1271
|
-
-webkit-font-smoothing: subpixel-antialiased;
|
1272
|
-
}
|
1273
|
-
.jazz a[name] {
|
1274
|
-
display: block;
|
1275
|
-
padding-top: 85px;
|
1276
|
-
margin: -85px 0 0;
|
1277
|
-
width: 0;
|
1278
|
-
height: 0;
|
1279
|
-
}
|
1280
|
-
.jazz .content-wrapper {
|
1281
|
-
background-color: rgba(242, 242, 242, 1);
|
1282
|
-
margin: 0 auto;
|
1283
|
-
width: 980px;
|
1284
|
-
}
|
1285
|
-
.jazz .pixel-line {
|
1286
|
-
background: rgba(233, 233, 233, 1);
|
1287
|
-
height: 1px;
|
1288
|
-
position: fixed;
|
1289
|
-
top: 70px;
|
1290
|
-
width: 734px;
|
1291
|
-
z-index: 3;
|
1292
|
-
}
|
1293
|
-
.jazz .chapter {
|
1294
|
-
background-color: rgba(255, 255, 255, 1);
|
1295
|
-
border: 1px solid rgba(233, 233, 233, 1);
|
1296
|
-
box-shadow: 0 0 1px rgba(0, 0, 0, .07);
|
1297
|
-
display: block;
|
1298
|
-
margin-left: 246px;
|
1299
|
-
min-height: calc(100% - 173px);
|
1300
|
-
min-height: -moz-calc(100% - 173px);
|
1301
|
-
min-height: -webkit-calc(100% - 173px);
|
1302
|
-
min-height: -o-calc(100% - 173px);
|
1303
|
-
position: absolute;
|
1304
|
-
overflow: auto;
|
1305
|
-
padding-bottom: 100px;
|
1306
|
-
top: 70px;
|
1307
|
-
-webkit-overflow-scrolling: touch;
|
1308
|
-
width: 734px;
|
1309
|
-
}
|
1310
|
-
.jazz #hierarchial_navigation {
|
1311
|
-
float: left;
|
1312
|
-
font-size: 1.4em;
|
1313
|
-
margin-top: 29px;
|
1314
|
-
vertical-align: middle;
|
1315
|
-
}
|
1316
|
-
.jazz #mini_toc {
|
1317
|
-
background-color: rgba(255, 255, 255, 1);
|
1318
|
-
background-image: url(../Images/plus_2x.png);
|
1319
|
-
background-position: 90% 11px;
|
1320
|
-
background-repeat: no-repeat;
|
1321
|
-
background-size: 12px 12px;
|
1322
|
-
border: 1px solid rgba(233, 233, 233, 1);
|
1323
|
-
box-shadow: 0 0 1px rgba(0, 0, 0, .07);
|
1324
|
-
margin-left: 505px;
|
1325
|
-
padding: 10px 10px 0 15px;
|
1326
|
-
position: fixed;
|
1327
|
-
top: 85px;
|
1328
|
-
width: 190px;
|
1329
|
-
z-index: 1;
|
1330
|
-
overflow-x: hidden;
|
1331
|
-
overflow-y: auto;
|
1332
|
-
height: 25px;
|
1333
|
-
max-height: 500px;
|
1334
|
-
-webkit-transition: height .3s ease, -webkit-transform .3s ease;
|
1335
|
-
-moz-transition: height .3s ease, -moz-transform .3s ease;
|
1336
|
-
-o-transition: height .3s ease, -o-transform .3s ease;
|
1337
|
-
-ms-transition: height .3s ease, -ms-transform .3s ease;
|
1338
|
-
transition: height .3s ease, transform .3s ease;
|
1339
|
-
}
|
1340
|
-
.jazz #mini_toc.slide-out {
|
1341
|
-
-webkit-transform: translateY(-85px);
|
1342
|
-
-moz-transform: translateY(-85px);
|
1343
|
-
-o-transform: translateY(-85px);
|
1344
|
-
-ms-transform: translateY(-85px);
|
1345
|
-
transform: translateY(-85px);
|
1346
|
-
}
|
1347
|
-
.jazz #mini_toc.open {
|
1348
|
-
background-image: url(../Images/minus_2x.png);
|
1349
|
-
z-index: 2;
|
1350
|
-
}
|
1351
|
-
.jazz #mini_toc #mini_toc_button {
|
1352
|
-
cursor: pointer;
|
1353
|
-
width: 195px;
|
1354
|
-
}
|
1355
|
-
.jazz .section {
|
1356
|
-
padding: 15px 25px 30px;
|
1357
|
-
}
|
1358
|
-
.jazz .section .section {
|
1359
|
-
margin: 30px 0 0;
|
1360
|
-
padding: 0;
|
1361
|
-
}
|
1362
|
-
.jazz .clear {
|
1363
|
-
}
|
1364
|
-
.jazz .two-columns {
|
1365
|
-
clear: both;
|
1366
|
-
display: table;
|
1367
|
-
margin: 60px auto;
|
1368
|
-
vertical-align: middle;
|
1369
|
-
width: 85%}
|
1370
|
-
.jazz .left-column, .jazz .right-column {
|
1371
|
-
display: table-cell;
|
1372
|
-
height: 100%;
|
1373
|
-
vertical-align: middle;
|
1374
|
-
}
|
1375
|
-
.jazz .left-column {
|
1376
|
-
padding-right: 10px;
|
1377
|
-
}
|
1378
|
-
.jazz .right-column {
|
1379
|
-
padding-left: 10px;
|
1380
|
-
}
|
1381
|
-
.jazz .right-column.left-align {
|
1382
|
-
width: 100%}
|
1383
|
-
.jazz .right-column.left-align .para {
|
1384
|
-
color: rgba(128, 128, 128, 1);
|
1385
|
-
font-size: 1.6em;
|
1386
|
-
}
|
1387
|
-
.jazz .two-columns .inline-graphic {
|
1388
|
-
margin: 0 auto;
|
1389
|
-
text-align: center;
|
1390
|
-
}
|
1391
|
-
.jazz .two-columns .para {
|
1392
|
-
clear: both;
|
1393
|
-
font-size: 1.4em;
|
1394
|
-
}
|
1395
|
-
.jazz #ios_header {
|
1396
|
-
background-color: rgba(65, 65, 65, 1);
|
1397
|
-
box-shadow: 0 1px 1px rgba(0, 0, 0, .07);
|
1398
|
-
color: rgba(255, 255, 255, 1);
|
1399
|
-
height: 25px;
|
1400
|
-
letter-spacing: .05em;
|
1401
|
-
position: fixed;
|
1402
|
-
top: 0;
|
1403
|
-
width: 100%;
|
1404
|
-
z-index: 4;
|
1405
|
-
}
|
1406
|
-
.jazz .header-text {
|
1407
|
-
font-size: 1.1em;
|
1408
|
-
margin: 0 auto;
|
1409
|
-
padding-top: 6px;
|
1410
|
-
vertical-align: middle;
|
1411
|
-
float: left;
|
1412
|
-
}
|
1413
|
-
.jazz .header-text a {
|
1414
|
-
color: rgba(255, 255, 255, 1);
|
1415
|
-
text-decoration: none;
|
1416
|
-
}
|
1417
|
-
.jazz #apple_logo {
|
1418
|
-
padding-right: 8px;
|
1419
|
-
vertical-align: -2px;
|
1420
|
-
}
|
1421
|
-
.jazz #wwdr {
|
1422
|
-
float: right;
|
1423
|
-
padding-top: 4px;
|
1424
|
-
font-size: 1.1em;
|
1425
|
-
vertical-align: middle;
|
1426
|
-
margin: 0 auto;
|
1427
|
-
}
|
1428
|
-
.jazz #wwdr a {
|
1429
|
-
color: rgba(255, 255, 255, 1);
|
1430
|
-
text-decoration: none;
|
1431
|
-
}
|
1432
|
-
.jazz #valence {
|
1433
|
-
background-color: rgba(242, 242, 242, 1);
|
1434
|
-
display: block;
|
1435
|
-
height: 60px;
|
1436
|
-
padding-top: 10px;
|
1437
|
-
position: fixed;
|
1438
|
-
top: 0;
|
1439
|
-
width: 100%;
|
1440
|
-
z-index: 3;
|
1441
|
-
}
|
1442
|
-
.jazz #hierarchial_navigation {
|
1443
|
-
float: left;
|
1444
|
-
font-size: 1.4em;
|
1445
|
-
margin-top: 29px;
|
1446
|
-
vertical-align: middle;
|
1447
|
-
}
|
1448
|
-
.jazz #carat {
|
1449
|
-
margin: 0 10px;
|
1450
|
-
}
|
1451
|
-
.jazz #design_resources_link {
|
1452
|
-
color: rgba(0, 136, 204, 1);
|
1453
|
-
text-decoration: none;
|
1454
|
-
}
|
1455
|
-
.jazz #book_title {
|
1456
|
-
color: rgba(0, 0, 0, 1);
|
1457
|
-
font-size: 1em;
|
1458
|
-
}
|
1459
|
-
.jazz .download-text {
|
1460
|
-
float: right;
|
1461
|
-
font-size: 1.1em;
|
1462
|
-
margin-right: 10px;
|
1463
|
-
margin-top: 32px;
|
1464
|
-
text-decoration: none;
|
1465
|
-
}
|
1466
|
-
.jazz .download-text a {
|
1467
|
-
color: rgba(0, 136, 204, 1);
|
1468
|
-
font-size: 1.1em;
|
1469
|
-
text-decoration: none;
|
1470
|
-
}
|
1471
|
-
.jazz .download-text .thin-pipe {
|
1472
|
-
color: rgba(128, 128, 128, 1);
|
1473
|
-
font-size: 1.1em;
|
1474
|
-
font-weight: 100;
|
1475
|
-
padding-left: 7px;
|
1476
|
-
position: relative;
|
1477
|
-
top: -1px;
|
1478
|
-
}
|
1479
|
-
.jazz #ssi_SearchField {
|
1480
|
-
margin-left: 3px;
|
1481
|
-
}
|
1482
|
-
.jazz input[type=search] {
|
1483
|
-
background-size: 14px 14px;
|
1484
|
-
background-image: url(../Images/magnify_2x.png);
|
1485
|
-
background-position: 3% 50%;
|
1486
|
-
background-repeat: no-repeat;
|
1487
|
-
border: 1px solid rgba(233, 233, 233, 1);
|
1488
|
-
box-shadow: 0 0 1px rgba(0, 0, 0, .07);
|
1489
|
-
-webkit-appearance: none;
|
1490
|
-
float: right;
|
1491
|
-
font-family: Helvetica, Arial, sans-serif;
|
1492
|
-
font-size: 1.1em;
|
1493
|
-
height: 30px;
|
1494
|
-
margin-right: -2px;
|
1495
|
-
margin-top: 23px;
|
1496
|
-
padding-left: 18px;
|
1497
|
-
vertical-align: middle;
|
1498
|
-
width: 200px;
|
1499
|
-
}
|
1500
|
-
.jazz #shortstack {
|
1501
|
-
display: none;
|
1502
|
-
}
|
1503
|
-
.jazz .para {
|
1504
|
-
color: rgba(65, 65, 65, 1);
|
1505
|
-
font-size: 1.4em;
|
1506
|
-
line-height: 145%;
|
1507
|
-
margin-bottom: 15px;
|
1508
|
-
}
|
1509
|
-
.jazz sup {
|
1510
|
-
vertical-align: super;
|
1511
|
-
font-size: x-small;
|
1512
|
-
margin-left: 1px;
|
1513
|
-
}
|
1514
|
-
.jazz .chapter-name {
|
1515
|
-
color: rgba(0, 0, 0, 1);
|
1516
|
-
display: block;
|
1517
|
-
font-family: Helvetica;
|
1518
|
-
font-size: 2.8em;
|
1519
|
-
font-weight: 100;
|
1520
|
-
margin-bottom: 0;
|
1521
|
-
padding: 15px 25px;
|
1522
|
-
width: 63%}
|
1523
|
-
.jazz #mini_toc p {
|
1524
|
-
font-size: 1.4em;
|
1525
|
-
}
|
1526
|
-
.jazz #mini_toc .list-bullet a {
|
1527
|
-
color: rgba(0, 136, 204, 1);
|
1528
|
-
list-style-type: none;
|
1529
|
-
list-style-position: outside;
|
1530
|
-
margin-left: 0;
|
1531
|
-
padding-left: 0;
|
1532
|
-
text-decoration: none;
|
1533
|
-
}
|
1534
|
-
.jazz #mini_toc ul.list-bullet {
|
1535
|
-
list-style-type: none;
|
1536
|
-
margin-bottom: 0;
|
1537
|
-
margin-left: 0;
|
1538
|
-
margin-top: 15px;
|
1539
|
-
overflow: hidden;
|
1540
|
-
padding-left: 0;
|
1541
|
-
width: 167px;
|
1542
|
-
display: none;
|
1543
|
-
}
|
1544
|
-
.jazz #mini_toc.open ul.list-bullet {
|
1545
|
-
display: block;
|
1546
|
-
}
|
1547
|
-
.jazz #mini_toc ul.list-bullet li.item {
|
1548
|
-
padding-left: 0;
|
1549
|
-
display: block;
|
1550
|
-
}
|
1551
|
-
.jazz #mini_toc ul.list-bullet li.item:before {
|
1552
|
-
content: none;
|
1553
|
-
}
|
1554
|
-
.jazz #mini_toc ul.list-bullet li.item .para {
|
1555
|
-
color: rgba(0, 136, 204, 1);
|
1556
|
-
font-size: 1.4em;
|
1557
|
-
line-height: 135%;
|
1558
|
-
padding-bottom: 22px;
|
1559
|
-
text-decoration: none;
|
1560
|
-
}
|
1561
|
-
.jazz .chapter a {
|
1562
|
-
color: rgba(0, 136, 204, 1);
|
1563
|
-
text-decoration: none;
|
1564
|
-
}
|
1565
|
-
.jazz h3.section-name:before {
|
1566
|
-
display: block;
|
1567
|
-
content: " ";
|
1568
|
-
margin-top: -85px;
|
1569
|
-
height: 85px;
|
1570
|
-
visibility: hidden;
|
1571
|
-
}
|
1572
|
-
.jazz .section-name {
|
1573
|
-
color: rgba(128, 128, 128, 1);
|
1574
|
-
display: block;
|
1575
|
-
font-family: Helvetica;
|
1576
|
-
font-size: 2.2em;
|
1577
|
-
font-weight: 100;
|
1578
|
-
margin-bottom: 15px;
|
1579
|
-
}
|
1580
|
-
.jazz .section .section .section-name {
|
1581
|
-
color: rgba(0, 0, 0, 1);
|
1582
|
-
font-size: 1.8em;
|
1583
|
-
letter-spacing: 0;
|
1584
|
-
padding-top: 20px;
|
1585
|
-
}
|
1586
|
-
.jazz .section .section .section .section-name {
|
1587
|
-
font-size: 1.6em;
|
1588
|
-
padding-top: 0;
|
1589
|
-
}
|
1590
|
-
.jazz .title-three {
|
1591
|
-
color: rgba(0, 0, 0, 1);
|
1592
|
-
font-size: 2em;
|
1593
|
-
font-weight: 400;
|
1594
|
-
margin-bottom: 10px;
|
1595
|
-
}
|
1596
|
-
.jazz .inline-head {
|
1597
|
-
}
|
1598
|
-
.jazz .term-definition .term, .jazz .term-definition-hanging .term {
|
1599
|
-
color: rgba(65, 65, 65, 1);
|
1600
|
-
font-size: 1.4em;
|
1601
|
-
line-height: 145%}
|
1602
|
-
.jazz .term-definition .definition {
|
1603
|
-
margin-left: 1.25em;
|
1604
|
-
}
|
1605
|
-
.jazz .code-voice, .jazz .path-name, .jazz .function-name {
|
1606
|
-
color: rgba(128, 128, 128, 1);
|
1607
|
-
font-family: Menlo, monospace;
|
1608
|
-
font-size: .85em;
|
1609
|
-
word-wrap: break-word;
|
1610
|
-
}
|
1611
|
-
.jazz .copyright {
|
1612
|
-
clear: both;
|
1613
|
-
color: rgba(160, 160, 160, 1);
|
1614
|
-
float: none;
|
1615
|
-
margin: 70px 25px 10px 0;
|
1616
|
-
}
|
1617
|
-
.jazz .link {
|
1618
|
-
color: rgba(0, 136, 204, 1);
|
1619
|
-
text-decoration: none;
|
1620
|
-
}
|
1621
|
-
.jazz .u-book {
|
1622
|
-
}
|
1623
|
-
.jazz .pediaLink {
|
1624
|
-
}
|
1625
|
-
.jazz .x-name-no-link {
|
1626
|
-
}
|
1627
|
-
.jazz .u-api {
|
1628
|
-
}
|
1629
|
-
.jazz ul.list-bullet {
|
1630
|
-
list-style: none;
|
1631
|
-
margin-bottom: 12px;
|
1632
|
-
margin-left: 24px;
|
1633
|
-
padding-left: 0;
|
1634
|
-
}
|
1635
|
-
.jazz ul.list-bullet li.item {
|
1636
|
-
list-style-type: none;
|
1637
|
-
list-style-image: none;
|
1638
|
-
padding-left: 1.3em;
|
1639
|
-
position: relative;
|
1640
|
-
}
|
1641
|
-
.jazz .aside ul.list-bullet li.item {
|
1642
|
-
padding-left: 1.1em;
|
1643
|
-
}
|
1644
|
-
.jazz ul.list-bullet li.item:before {
|
1645
|
-
color: rgba(65, 65, 65, 1);
|
1646
|
-
content: "\02022";
|
1647
|
-
font-size: 1.5em;
|
1648
|
-
left: 0;
|
1649
|
-
padding-top: 2px;
|
1650
|
-
position: absolute;
|
1651
|
-
}
|
1652
|
-
.jazz .aside ul.list-bullet li.item:before {
|
1653
|
-
font-size: 1.2em;
|
1654
|
-
margin-top: -2px;
|
1655
|
-
}
|
1656
|
-
.jazz .list-number, .jazz .list-simple, .jazz .list-check {
|
1657
|
-
margin-bottom: 12px;
|
1658
|
-
margin-left: 20px;
|
1659
|
-
padding-left: 20px;
|
1660
|
-
}
|
1661
|
-
.jazz .list-number {
|
1662
|
-
color: rgba(65, 65, 65, 1);
|
1663
|
-
font-size: 1.4em;
|
1664
|
-
}
|
1665
|
-
.jazz .aside .list-number {
|
1666
|
-
font-size: 1em;
|
1667
|
-
}
|
1668
|
-
.jazz ol.list-number li.item ol.list-number {
|
1669
|
-
font-size: 1em;
|
1670
|
-
}
|
1671
|
-
.jazz .list-number .item p {
|
1672
|
-
font-size: 1em;
|
1673
|
-
}
|
1674
|
-
.jazz .list-simple {
|
1675
|
-
list-style-type: none;
|
1676
|
-
}
|
1677
|
-
.jazz .list-check {
|
1678
|
-
list-style: url(../Images/check.png) outside none;
|
1679
|
-
}
|
1680
|
-
.jazz .item p {
|
1681
|
-
margin: 0;
|
1682
|
-
padding-bottom: 6px;
|
1683
|
-
}
|
1684
|
-
.jazz .book-parts {
|
1685
|
-
background-color: rgba(249, 249, 249, 1);
|
1686
|
-
border-top: 1px solid rgba(233, 233, 233, 1);
|
1687
|
-
border-left: 1px solid rgba(233, 233, 233, 1);
|
1688
|
-
border-right: 1px solid rgba(233, 233, 233, 1);
|
1689
|
-
bottom: 0;
|
1690
|
-
box-shadow: 0 0 1px rgba(0, 0, 0, .07);
|
1691
|
-
overflow: auto;
|
1692
|
-
-webkit-overflow-scrolling: touch;
|
1693
|
-
position: fixed;
|
1694
|
-
top: 70px;
|
1695
|
-
width: 230px;
|
1696
|
-
}
|
1697
|
-
.jazz .nav-parts {
|
1698
|
-
color: rgba(128, 128, 128, 1);
|
1699
|
-
font-weight: 100;
|
1700
|
-
line-height: 140%;
|
1701
|
-
list-style-type: none;
|
1702
|
-
margin: 0;
|
1703
|
-
-webkit-padding-start: 0;
|
1704
|
-
}
|
1705
|
-
.jazz .part-name {
|
1706
|
-
border-bottom: 1px solid rgba(233, 233, 233, 1);
|
1707
|
-
font-family: Helvetica;
|
1708
|
-
font-size: 1.6em;
|
1709
|
-
line-height: 150%;
|
1710
|
-
list-style-type: none;
|
1711
|
-
margin: 0;
|
1712
|
-
padding: 15px 30px 15px 20px;
|
1713
|
-
cursor: pointer;
|
1714
|
-
}
|
1715
|
-
.jazz .part-name .part-name-hoverable {
|
1716
|
-
cursor: pointer;
|
1717
|
-
}
|
1718
|
-
.jazz .nav-chapters {
|
1719
|
-
font-weight: 400;
|
1720
|
-
line-height: 110%;
|
1721
|
-
list-style-position: outside;
|
1722
|
-
list-style-type: none;
|
1723
|
-
margin: 0;
|
1724
|
-
padding: 0;
|
1725
|
-
height: 0;
|
1726
|
-
overflow: hidden;
|
1727
|
-
-webkit-transition: height .3s ease-in-out;
|
1728
|
-
-moz-transition: height .3s ease-in-out;
|
1729
|
-
-o-transition: height .3s ease-in-out;
|
1730
|
-
-ms-transition: height .3s ease-in-out;
|
1731
|
-
transition: height .3s ease-in-out;
|
1732
|
-
}
|
1733
|
-
.jazz .nav-chapter {
|
1734
|
-
font-size: .8em;
|
1735
|
-
list-style-position: outside;
|
1736
|
-
list-style-type: none;
|
1737
|
-
margin: 0;
|
1738
|
-
padding: 0 0 8px;
|
1739
|
-
}
|
1740
|
-
.jazz .nav-chapters .nav-chapter {
|
1741
|
-
margin-left: 0;
|
1742
|
-
}
|
1743
|
-
.jazz .nav-chapter .nav-chapter-active {
|
1744
|
-
color: rgba(0, 0, 0, 1);
|
1745
|
-
font-weight: 700;
|
1746
|
-
text-decoration: none;
|
1747
|
-
}
|
1748
|
-
.jazz .book-parts a {
|
1749
|
-
color: rgba(128, 128, 128, 1);
|
1750
|
-
display: block;
|
1751
|
-
margin-left: 15px;
|
1752
|
-
text-decoration: none;
|
1753
|
-
}
|
1754
|
-
.jazz .aside-title {
|
1755
|
-
color: rgba(128, 128, 128, 1);
|
1756
|
-
font-size: .6em;
|
1757
|
-
letter-spacing: 2px;
|
1758
|
-
margin-bottom: 8px;
|
1759
|
-
text-transform: uppercase;
|
1760
|
-
}
|
1761
|
-
.jazz .tip, .jazz .warning, .jazz .important, .jazz .note {
|
1762
|
-
background-color: rgba(249, 249, 249, 1);
|
1763
|
-
border-left: 5px solid rgba(233, 233, 233, 1);
|
1764
|
-
color: rgba(0, 0, 0, 1);
|
1765
|
-
font-size: 1.2em;
|
1766
|
-
margin: 30px auto 35px;
|
1767
|
-
padding: 15px 15px 7px;
|
1768
|
-
width: 85%}
|
1769
|
-
.jazz .note .para, .jazz .important .para, .jazz .tip .para, .jazz .warning .para {
|
1770
|
-
font-size: 1em;
|
1771
|
-
margin-bottom: 8px;
|
1772
|
-
}
|
1773
|
-
.jazz .aside .code-voice {
|
1774
|
-
font-size: .9em;
|
1775
|
-
}
|
1776
|
-
.jazz .aside .code-listing .code-sample {
|
1777
|
-
font-size: inherit;
|
1778
|
-
}
|
1779
|
-
.jazz .list-number .item .code-listing .code-sample .aside-title {
|
1780
|
-
font-size: .6em;
|
1781
|
-
}
|
1782
|
-
.jazz .note {
|
1783
|
-
border-left: 5px solid rgba(233, 233, 233, 1);
|
1784
|
-
}
|
1785
|
-
.jazz .important {
|
1786
|
-
border-left: 5px solid rgba(128, 128, 128, 1);
|
1787
|
-
}
|
1788
|
-
.jazz .tip {
|
1789
|
-
border-left: 5px solid rgba(233, 233, 233, 1);
|
1790
|
-
}
|
1791
|
-
.jazz .warning {
|
1792
|
-
border-left: 5px solid rgba(247, 235, 97, 1);
|
1793
|
-
}
|
1794
|
-
.jazz .experiment {
|
1795
|
-
border-left: 5px solid rgba(0, 136, 204, 1);
|
1796
|
-
}
|
1797
|
-
.jazz .rec-container {
|
1798
|
-
margin: 40px auto;
|
1799
|
-
text-align: center;
|
1800
|
-
width: 95%}
|
1801
|
-
.jazz .rec-container .blurb {
|
1802
|
-
text-align: center;
|
1803
|
-
}
|
1804
|
-
.jazz .rec-container .blurb .para:nth-child(1) {
|
1805
|
-
color: rgba(128, 128, 128, 1);
|
1806
|
-
font-size: 2em;
|
1807
|
-
font-weight: 100;
|
1808
|
-
line-height: 120%;
|
1809
|
-
margin: 0 auto 20px;
|
1810
|
-
width: 460px;
|
1811
|
-
}
|
1812
|
-
.jazz .rec-container .blurb .para {
|
1813
|
-
margin-bottom: 20px;
|
1814
|
-
}
|
1815
|
-
.jazz .rec-container .left-container, .jazz .rec-container .right-container {
|
1816
|
-
display: table-cell;
|
1817
|
-
margin-top: 20px;
|
1818
|
-
width: 325px;
|
1819
|
-
}
|
1820
|
-
.jazz .rec-container .left-container {
|
1821
|
-
padding-right: 10px;
|
1822
|
-
}
|
1823
|
-
.jazz .rec-container .right-container {
|
1824
|
-
padding-left: 10px;
|
1825
|
-
}
|
1826
|
-
.jazz .rec-container .container-label {
|
1827
|
-
font-size: 1.5em;
|
1828
|
-
margin-bottom: 10px;
|
1829
|
-
}
|
1830
|
-
.jazz .rec-container .do {
|
1831
|
-
color: rgba(17, 183, 40, 1);
|
1832
|
-
}
|
1833
|
-
.jazz .rec-container .do-not {
|
1834
|
-
color: rgba(208, 50, 54, 1);
|
1835
|
-
}
|
1836
|
-
.jazz .rec-container .recommended {
|
1837
|
-
color: rgba(40, 103, 206, 1);
|
1838
|
-
}
|
1839
|
-
.jazz .rec-container .not-recommended {
|
1840
|
-
color: rgba(255, 133, 0, 1);
|
1841
|
-
}
|
1842
|
-
.jazz .rec-container .inline-graphic {
|
1843
|
-
margin: 10px auto;
|
1844
|
-
max-width: 100%}
|
1845
|
-
.jazz .code-listing {
|
1846
|
-
background-clip: padding-box;
|
1847
|
-
margin: 20px 0;
|
1848
|
-
text-align: left;
|
1849
|
-
}
|
1850
|
-
.jazz .item .code-listing {
|
1851
|
-
padding: 0;
|
1852
|
-
margin: 0 0 15px;
|
1853
|
-
}
|
1854
|
-
.jazz .code-listing .caption {
|
1855
|
-
caption-side: top;
|
1856
|
-
display: block;
|
1857
|
-
font-size: 1.1em;
|
1858
|
-
text-align: left;
|
1859
|
-
margin-bottom: 16px;
|
1860
|
-
}
|
1861
|
-
.jazz>.content-wrapper>.chapter>.section>.list-number>.item>.code-listing {
|
1862
|
-
padding-top: 0;
|
1863
|
-
padding-bottom: 5px;
|
1864
|
-
margin-top: 0;
|
1865
|
-
margin-bottom: 0;
|
1866
|
-
}
|
1867
|
-
.jazz .code-sample {
|
1868
|
-
display: block;
|
1869
|
-
font-size: 1.4em;
|
1870
|
-
margin-left: 21px;
|
1871
|
-
}
|
1872
|
-
.jazz ol .code-sample {
|
1873
|
-
font-size: 1em;
|
1874
|
-
}
|
1875
|
-
.jazz .code-lines {
|
1876
|
-
background-color: rgba(255, 255, 255, 1);
|
1877
|
-
counter-reset: li;
|
1878
|
-
line-height: 1.6em;
|
1879
|
-
list-style: none;
|
1880
|
-
margin: 0 0 0 20px;
|
1881
|
-
padding: 0;
|
1882
|
-
}
|
1883
|
-
.jazz .code-listing .code-sample div {
|
1884
|
-
background: #fff;
|
1885
|
-
width: 93%;
|
1886
|
-
margin-left: 13px;
|
1887
|
-
}
|
1888
|
-
.jazz .code-listing .code-sample .code-lines {
|
1889
|
-
margin-left: 0;
|
1890
|
-
}
|
1891
|
-
.jazz .code-listing .code-sample div .code-lines li {
|
1892
|
-
list-style-type: none;
|
1893
|
-
margin: 6px 0;
|
1894
|
-
border-left-color: #fff;
|
1895
|
-
padding-right: 10px;
|
1896
|
-
}
|
1897
|
-
.jazz .code-sample div .code-lines li::before {
|
1898
|
-
margin-left: -35px;
|
1899
|
-
margin-right: 25px;
|
1900
|
-
}
|
1901
|
-
.jazz .code-sample div .code-lines li:nth-child(n+10)::before {
|
1902
|
-
margin-left: -39px;
|
1903
|
-
margin-right: 25px;
|
1904
|
-
}
|
1905
|
-
.jazz .code-sample div .code-lines li:nth-child(n+100)::before {
|
1906
|
-
margin-left: -46px;
|
1907
|
-
margin-right: 25px;
|
1908
|
-
}
|
1909
|
-
.jazz .code-listing .code-sample .code-lines .code-voice {
|
1910
|
-
color: #000;
|
1911
|
-
}
|
1912
|
-
.jazz div.Swift, .jazz div.Objective-C, .jazz div.CPlusPlus, .jazz div.JavaScript {
|
1913
|
-
padding: 4px 0 2px 10px;
|
1914
|
-
margin: 10px 0 21px;
|
1915
|
-
}
|
1916
|
-
.jazz div.Swift {
|
1917
|
-
border-left: 5px solid rgba(205, 233, 244, 1);
|
1918
|
-
}
|
1919
|
-
.jazz div.Swift .aside-title {
|
1920
|
-
color: rgba(75, 138, 251, 1);
|
1921
|
-
-webkit-user-select: none;
|
1922
|
-
}
|
1923
|
-
.jazz div.Objective-C, .jazz div.CPlusPlus {
|
1924
|
-
border-left: 5px solid rgba(0, 155, 51, .2);
|
1925
|
-
}
|
1926
|
-
.jazz div.Objective-C .aside-title, .jazz div.CPlusPlus .aside-title {
|
1927
|
-
color: rgba(0, 155, 51, 1);
|
1928
|
-
-webkit-user-select: none;
|
1929
|
-
}
|
1930
|
-
.jazz div.JavaScript {
|
1931
|
-
border-left: 5px solid rgba(92, 17, 168, .2);
|
1932
|
-
}
|
1933
|
-
.jazz div.JavaScript .aside-title {
|
1934
|
-
color: rgba(92, 17, 168, 1);
|
1935
|
-
-webkit-user-select: none;
|
1936
|
-
}
|
1937
|
-
.jazz pre {
|
1938
|
-
white-space: pre-wrap;
|
1939
|
-
}
|
1940
|
-
.jazz .code-lines li::before {
|
1941
|
-
color: rgba(128, 128, 128, 1);
|
1942
|
-
content: counter(li);
|
1943
|
-
counter-increment: li;
|
1944
|
-
font-family: Menlo, monospace;
|
1945
|
-
font-size: .9em;
|
1946
|
-
margin-right: 16px;
|
1947
|
-
-webkit-user-select: none;
|
1948
|
-
}
|
1949
|
-
.jazz .code-lines li {
|
1950
|
-
padding-left: 0;
|
1951
|
-
text-indent: -13px;
|
1952
|
-
white-space: pre-wrap;
|
1953
|
-
border-left: 18px solid #f9f9f9;
|
1954
|
-
}
|
1955
|
-
.jazz .code-lines li:only-of-type::before {
|
1956
|
-
color: rgba(255, 255, 255, 1);
|
1957
|
-
content: ' '}
|
1958
|
-
.jazz .code-lines li:only-of-type {
|
1959
|
-
color: rgba(255, 255, 255, 1);
|
1960
|
-
content: ' ';
|
1961
|
-
border-left-color: rgba(255, 255, 255, 1);
|
1962
|
-
}
|
1963
|
-
.jazz .code-lines li:nth-child(n+10) {
|
1964
|
-
text-indent: -17px;
|
1965
|
-
}
|
1966
|
-
.jazz .code-lines li:nth-child(n+10)::before {
|
1967
|
-
margin-right: 12px;
|
1968
|
-
}
|
1969
|
-
.jazz #next_previous {
|
1970
|
-
bottom: 0;
|
1971
|
-
color: rgba(0, 136, 204, 1);
|
1972
|
-
margin: 0 25px;
|
1973
|
-
position: absolute;
|
1974
|
-
width: 684px;
|
1975
|
-
}
|
1976
|
-
.jazz .next-link a, .jazz .previous-link a {
|
1977
|
-
background-size: 6px 12px;
|
1978
|
-
background-repeat: no-repeat;
|
1979
|
-
font-size: 1.4em;
|
1980
|
-
margin-bottom: 50px;
|
1981
|
-
margin-top: 50px;
|
1982
|
-
width: 45%}
|
1983
|
-
.jazz .next-link a {
|
1984
|
-
background-image: url(../Images/right_arrow_2x.png);
|
1985
|
-
background-position: 100% 50%;
|
1986
|
-
float: right;
|
1987
|
-
padding-right: 16px;
|
1988
|
-
text-align: right;
|
1989
|
-
}
|
1990
|
-
.jazz .previous-link a {
|
1991
|
-
background-image: url(../Images/left_arrow_2x.png);
|
1992
|
-
background-position: 0 50%;
|
1993
|
-
float: left;
|
1994
|
-
padding-left: 16px;
|
1995
|
-
text-align: left;
|
1996
|
-
}
|
1997
|
-
.jazz #footer {
|
1998
|
-
bottom: 0;
|
1999
|
-
position: fixed;
|
2000
|
-
width: 100%}
|
2001
|
-
.jazz #leave_feedback {
|
2002
|
-
background-color: rgba(160, 160, 160, 1);
|
2003
|
-
box-shadow: 0 0 1px rgba(0, 0, 0, .07);
|
2004
|
-
color: rgba(255, 255, 255, 1);
|
2005
|
-
font-size: 1.1em;
|
2006
|
-
margin-left: 912px;
|
2007
|
-
padding: 5px 10px;
|
2008
|
-
position: absolute;
|
2009
|
-
text-align: center;
|
2010
|
-
right: auto;
|
2011
|
-
z-index: 3;
|
2012
|
-
}
|
2013
|
-
.jazz #leave_feedback.leave_feedback_zh {
|
2014
|
-
margin-left: 895px;
|
2015
|
-
}
|
2016
|
-
.jazz #modal {
|
2017
|
-
font-family: Helvetica, Arial, sans-serif;
|
2018
|
-
-webkit-border-radius: 0;
|
2019
|
-
width: 600px;
|
2020
|
-
}
|
2021
|
-
.jazz #modal #feedback h2 {
|
2022
|
-
font-size: 1.5em;
|
2023
|
-
font-weight: 100;
|
2024
|
-
margin-bottom: 10px;
|
2025
|
-
}
|
2026
|
-
.jazz #modal #feedback #star_group, .jazz #modal #feedback #improve {
|
2027
|
-
top: 0;
|
2028
|
-
}
|
2029
|
-
.jazz #modal #feedback #star_group label, .jazz #modal #feedback .right-leaf, .jazz #modal #feedback .checkboxes label {
|
2030
|
-
color: rgba(0, 0, 0, 1);
|
2031
|
-
}
|
2032
|
-
.jazz #modal #feedback #star_group label {
|
2033
|
-
width: 200px;
|
2034
|
-
}
|
2035
|
-
.jazz #modal #feedback .right-leaf {
|
2036
|
-
width: 297px;
|
2037
|
-
}
|
2038
|
-
.jazz #modal #feedback #comment, .jazz #modal #feedback #email {
|
2039
|
-
border: 1px solid rgba(128, 128, 128, 1);
|
2040
|
-
font-family: Helvetica, Arial, sans-serif;
|
2041
|
-
}
|
2042
|
-
.jazz #modal #feedback #comment {
|
2043
|
-
margin: 26px 0 12px;
|
2044
|
-
}
|
2045
|
-
.jazz #modal #feedback #email {
|
2046
|
-
height: 13px;
|
2047
|
-
}
|
2048
|
-
.jazz #modal #feedback #submit {
|
2049
|
-
background-color: rgba(160, 160, 160, 1);
|
2050
|
-
background-image: none;
|
2051
|
-
color: rgba(255, 255, 255, 1);
|
2052
|
-
font-family: Helvetica, Arial, sans-serif;
|
2053
|
-
height: 27px;
|
2054
|
-
margin: 0 0 0 6px;
|
2055
|
-
-webkit-border-radius: 0;
|
2056
|
-
}
|
2057
|
-
.jazz #modal #feedback #legal {
|
2058
|
-
margin-top: 22px;
|
2059
|
-
}
|
2060
|
-
.jazz .caption {
|
2061
|
-
caption-side: top;
|
2062
|
-
display: block;
|
2063
|
-
font-size: 1.1em;
|
2064
|
-
text-align: left;
|
2065
|
-
margin-bottom: 8px;
|
2066
|
-
}
|
2067
|
-
.jazz .figure {
|
2068
|
-
margin: 40px auto;
|
2069
|
-
text-align: center;
|
2070
|
-
}
|
2071
|
-
.jazz .list-number .figure, .jazz .list-bullet .figure {
|
2072
|
-
margin-left: -40px;
|
2073
|
-
}
|
2074
|
-
.jazz .inline-graphic {
|
2075
|
-
margin: 20px auto;
|
2076
|
-
text-align: center;
|
2077
|
-
display: block;
|
2078
|
-
}
|
2079
|
-
.jazz tr td .para .inline-graphic {
|
2080
|
-
margin: 10px 0;
|
2081
|
-
}
|
2082
|
-
.jazz .list-bullet .item .para .inline-graphic, .jazz .list-number .item .para .inline-graphic {
|
2083
|
-
margin: 0 4px;
|
2084
|
-
display: inline;
|
2085
|
-
vertical-align: middle;
|
2086
|
-
}
|
2087
|
-
.jazz .tableholder {
|
2088
|
-
}
|
2089
|
-
.jazz .tablecaption {
|
2090
|
-
caption-side: top;
|
2091
|
-
font-size: 1.1em;
|
2092
|
-
text-align: left;
|
2093
|
-
margin-bottom: 8px;
|
2094
|
-
}
|
2095
|
-
.jazz ol .tablecaption {
|
2096
|
-
font-size: .78em;
|
2097
|
-
}
|
2098
|
-
.jazz .caption-number {
|
2099
|
-
padding-right: .4em;
|
2100
|
-
}
|
2101
|
-
.jazz .graybox {
|
2102
|
-
border: 1px solid rgba(233, 233, 233, 1);
|
2103
|
-
border-collapse: collapse;
|
2104
|
-
border-spacing: 0;
|
2105
|
-
empty-cells: hide;
|
2106
|
-
margin: 20px 0 36px;
|
2107
|
-
text-align: left;
|
2108
|
-
width: 100%}
|
2109
|
-
.jazz .graybox p {
|
2110
|
-
margin: 0;
|
2111
|
-
word-break: break-word;
|
2112
|
-
min-width: 50px;
|
2113
|
-
}
|
2114
|
-
.jazz .TableHeading_TableRow_TableCell {
|
2115
|
-
padding: 5px 10px;
|
2116
|
-
border-left: 1px solid rgba(233, 233, 233, 1);
|
2117
|
-
background-color: rgba(249, 249, 249, 1);
|
2118
|
-
font-weight: 400;
|
2119
|
-
white-space: normal;
|
2120
|
-
}
|
2121
|
-
.jazz td {
|
2122
|
-
border: 1px solid rgba(233, 233, 233, 1);
|
2123
|
-
padding: 5px 25px 5px 10px;
|
2124
|
-
margin: 0;
|
2125
|
-
vertical-align: middle;
|
2126
|
-
max-width: 260px;
|
2127
|
-
}
|
2128
|
-
.jazz .row-heading {
|
2129
|
-
background-color: rgba(249, 249, 249, 1);
|
2130
|
-
}
|
2131
|
-
.video-container {
|
2132
|
-
position: relative;
|
2133
|
-
}
|
2134
|
-
.video-container video {
|
2135
|
-
outline: 0;
|
2136
|
-
-webkit-transition: -webkit-filter .3s ease;
|
2137
|
-
-moz-transition: -moz-filter .3s ease;
|
2138
|
-
-o-transition: -o-filter .3s ease;
|
2139
|
-
cursor: pointer;
|
2140
|
-
}
|
2141
|
-
.playButtonOverlay {
|
2142
|
-
opacity: 1;
|
2143
|
-
display: block;
|
2144
|
-
-webkit-transition: opacity .3s ease;
|
2145
|
-
position: absolute;
|
2146
|
-
background: url(../Images/playbutton.svg) no-repeat;
|
2147
|
-
background-size: cover;
|
2148
|
-
left: 312px;
|
2149
|
-
width: 60px;
|
2150
|
-
height: 60px;
|
2151
|
-
pointer-events: none;
|
2152
|
-
top: 40%}
|
2153
|
-
.playButtonOverlay.hide {
|
2154
|
-
opacity: 0;
|
2155
|
-
}
|
2156
|
-
.jazz #big_button.active {
|
2157
|
-
position: fixed;
|
2158
|
-
top: 0;
|
2159
|
-
bottom: 0;
|
2160
|
-
left: 0;
|
2161
|
-
right: 0;
|
2162
|
-
z-index: 1;
|
2163
|
-
background-color: transparent;
|
2164
|
-
}
|
2165
|
-
.svg-container {
|
2166
|
-
position: relative;
|
2167
|
-
}
|
2168
|
-
.svg-play-button {
|
2169
|
-
background: url(../Images/playbutton.svg) no-repeat;
|
2170
|
-
background-position: 0 0;
|
2171
|
-
background-size: cover;
|
2172
|
-
width: 32px;
|
2173
|
-
height: 32px;
|
2174
|
-
position: absolute;
|
2175
|
-
top: 90px;
|
2176
|
-
left: 90px;
|
2177
|
-
pointer-events: none;
|
2178
|
-
opacity: 1;
|
2179
|
-
-webkit-transition: opacity .3s ease;
|
2180
|
-
}
|
2181
|
-
.svg-play-button.faded {
|
2182
|
-
opacity: 0;
|
2183
|
-
}
|
2184
|
-
.p {
|
2185
|
-
color: rgba(0, 0, 0, 1);
|
2186
|
-
}
|
2187
|
-
.c {
|
2188
|
-
color: rgba(0, 131, 18, 1);
|
2189
|
-
}
|
2190
|
-
.err {
|
2191
|
-
}
|
2192
|
-
.k {
|
2193
|
-
color: rgba(170, 13, 145, 1);
|
2194
|
-
}
|
2195
|
-
.o {
|
2196
|
-
color: #000;
|
2197
|
-
}
|
2198
|
-
.cm {
|
2199
|
-
color: rgba(0, 116, 0, 1);
|
2200
|
-
}
|
2201
|
-
.cp {
|
2202
|
-
color: rgba(100, 56, 32, 1);
|
2203
|
-
}
|
2204
|
-
.c1 {
|
2205
|
-
color: rgba(0, 116, 0, 1);
|
2206
|
-
}
|
2207
|
-
.cs {
|
2208
|
-
color: rgba(0, 116, 0, 1);
|
2209
|
-
}
|
2210
|
-
.gd {
|
2211
|
-
color: #A00000;
|
2212
|
-
}
|
2213
|
-
.ge {
|
2214
|
-
font-style: italic;
|
2215
|
-
}
|
2216
|
-
.gr {
|
2217
|
-
color: #F00;
|
2218
|
-
}
|
2219
|
-
.gh {
|
2220
|
-
color: navy;
|
2221
|
-
font-weight: 700;
|
2222
|
-
}
|
2223
|
-
.gi {
|
2224
|
-
color: #00A000;
|
2225
|
-
}
|
2226
|
-
.go {
|
2227
|
-
color: gray;
|
2228
|
-
}
|
2229
|
-
.gp {
|
2230
|
-
color: navy;
|
2231
|
-
font-weight: 700;
|
2232
|
-
}
|
2233
|
-
.gs {
|
2234
|
-
font-weight: 700;
|
2235
|
-
}
|
2236
|
-
.gu {
|
2237
|
-
color: purple;
|
2238
|
-
font-weight: 700;
|
2239
|
-
}
|
2240
|
-
.gt {
|
2241
|
-
color: #0040D0;
|
2242
|
-
}
|
2243
|
-
.kc {
|
2244
|
-
color: rgba(170, 13, 145, 1);
|
2245
|
-
}
|
2246
|
-
.kd {
|
2247
|
-
color: rgba(170, 13, 145, 1);
|
2248
|
-
}
|
2249
|
-
.kp {
|
2250
|
-
color: rgba(170, 13, 145, 1);
|
2251
|
-
}
|
2252
|
-
.kr {
|
2253
|
-
color: rgba(170, 13, 145, 1);
|
2254
|
-
}
|
2255
|
-
.kt {
|
2256
|
-
color: rgba(184, 51, 161, 1);
|
2257
|
-
}
|
2258
|
-
.m {
|
2259
|
-
color: rgba(28, 0, 207, 1);
|
2260
|
-
}
|
2261
|
-
.s {
|
2262
|
-
color: rgba(196, 26, 22, 1);
|
2263
|
-
}
|
2264
|
-
.n {
|
2265
|
-
color: rgba(111, 65, 167, 1);
|
2266
|
-
}
|
2267
|
-
.na {
|
2268
|
-
color: rgba(131, 48, 30, 1);
|
2269
|
-
}
|
2270
|
-
.nb {
|
2271
|
-
color: rgba(170, 13, 145, 1);
|
2272
|
-
}
|
2273
|
-
.nc {
|
2274
|
-
color: rgba(63, 110, 116, 1);
|
2275
|
-
}
|
2276
|
-
.no {
|
2277
|
-
color: rgba(38, 71, 75, 1);
|
2278
|
-
}
|
2279
|
-
.nd {
|
2280
|
-
color: #A2F;
|
2281
|
-
}
|
2282
|
-
.ni {
|
2283
|
-
color: #999;
|
2284
|
-
font-weight: 700;
|
2285
|
-
}
|
2286
|
-
.ne {
|
2287
|
-
color: #D2413A;
|
2288
|
-
font-weight: 700;
|
2289
|
-
}
|
2290
|
-
.nf {
|
2291
|
-
color: rgba(0, 0, 0, 1);
|
2292
|
-
}
|
2293
|
-
.nl {
|
2294
|
-
color: rgba(46, 13, 110, 1);
|
2295
|
-
}
|
2296
|
-
.nn {
|
2297
|
-
color: #00F;
|
2298
|
-
font-weight: 700;
|
2299
|
-
}
|
2300
|
-
.nt {
|
2301
|
-
color: green;
|
2302
|
-
font-weight: 700;
|
2303
|
-
}
|
2304
|
-
.nv {
|
2305
|
-
color: #19177C;
|
2306
|
-
}
|
2307
|
-
.ow {
|
2308
|
-
color: #A2F;
|
2309
|
-
font-weight: 700;
|
2310
|
-
}
|
2311
|
-
.w {
|
2312
|
-
color: #bbb;
|
2313
|
-
}
|
2314
|
-
.mf {
|
2315
|
-
color: rgba(28, 0, 207, 1);
|
2316
|
-
}
|
2317
|
-
.mh {
|
2318
|
-
color: rgba(28, 0, 207, 1);
|
2319
|
-
}
|
2320
|
-
.mi {
|
2321
|
-
color: rgba(28, 0, 207, 1);
|
2322
|
-
}
|
2323
|
-
.mo {
|
2324
|
-
color: rgba(28, 0, 207, 1);
|
2325
|
-
}
|
2326
|
-
.sb {
|
2327
|
-
color: rgba(196, 26, 22, 1);
|
2328
|
-
}
|
2329
|
-
.sc {
|
2330
|
-
color: rgba(196, 26, 22, 1);
|
2331
|
-
}
|
2332
|
-
.sd {
|
2333
|
-
color: rgba(196, 26, 22, 1);
|
2334
|
-
}
|
2335
|
-
.s2 {
|
2336
|
-
color: rgba(196, 26, 22, 1);
|
2337
|
-
}
|
2338
|
-
.se {
|
2339
|
-
color: rgba(196, 26, 22, 1);
|
2340
|
-
}
|
2341
|
-
.sh {
|
2342
|
-
color: rgba(196, 26, 22, 1);
|
2343
|
-
}
|
2344
|
-
.si {
|
2345
|
-
color: rgba(196, 26, 22, 1);
|
2346
|
-
}
|
2347
|
-
.sx {
|
2348
|
-
color: rgba(196, 26, 22, 1);
|
2349
|
-
}
|
2350
|
-
.sr {
|
2351
|
-
color: rgba(196, 26, 22, 1);
|
2352
|
-
}
|
2353
|
-
.s1 {
|
2354
|
-
color: rgba(196, 26, 22, 1);
|
2355
|
-
}
|
2356
|
-
.ss {
|
2357
|
-
color: rgba(196, 26, 22, 1);
|
2358
|
-
}
|
2359
|
-
.bp {
|
2360
|
-
color: green;
|
2361
|
-
}
|
2362
|
-
.vc {
|
2363
|
-
color: rgba(80, 129, 135, 1);
|
2364
|
-
}
|
2365
|
-
.vg {
|
2366
|
-
color: #19177C;
|
2367
|
-
}
|
2368
|
-
.vi {
|
2369
|
-
color: #19177C;
|
2370
|
-
}
|
2371
|
-
.il {
|
2372
|
-
color: rgba(28, 0, 207, 1);
|
2373
|
-
}
|
2374
|
-
@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait) {
|
2375
|
-
body.jazz {
|
2376
|
-
font-size: 75%}
|
2377
|
-
body.jazz h3.section-name::before {
|
2378
|
-
margin-top: -120px;
|
2379
|
-
height: 120px;
|
2380
|
-
}
|
2381
|
-
.jazz .content-wrapper {
|
2382
|
-
width: 100%}
|
2383
|
-
.jazz #ios_header .content-wrapper {
|
2384
|
-
background-color: rgba(242, 242, 242, 1);
|
2385
|
-
margin: 0 auto;
|
2386
|
-
width: 96%}
|
2387
|
-
.jazz #valence .content-wrapper {
|
2388
|
-
background-color: rgba(242, 242, 242, 1);
|
2389
|
-
margin: 0 auto;
|
2390
|
-
width: 96%}
|
2391
|
-
.jazz #ios_header {
|
2392
|
-
height: 30px;
|
2393
|
-
letter-spacing: 0;
|
2394
|
-
margin-bottom: 0;
|
2395
|
-
position: fixed;
|
2396
|
-
top: 0;
|
2397
|
-
width: 100%;
|
2398
|
-
z-index: 3;
|
2399
|
-
}
|
2400
|
-
.jazz #valence {
|
2401
|
-
height: 70px;
|
2402
|
-
top: 30px;
|
2403
|
-
position: fixed;
|
2404
|
-
width: 100%;
|
2405
|
-
z-index: 2;
|
2406
|
-
}
|
2407
|
-
.jazz #hierarchial_navigation {
|
2408
|
-
margin-top: 2px;
|
2409
|
-
}
|
2410
|
-
.jazz .download-text {
|
2411
|
-
position: relative;
|
2412
|
-
top: -26px;
|
2413
|
-
}
|
2414
|
-
.jazz #search {
|
2415
|
-
background-image: url(../Images/search_2x.png);
|
2416
|
-
background-size: 30px 30px;
|
2417
|
-
background-position: 0;
|
2418
|
-
float: right;
|
2419
|
-
height: 30px;
|
2420
|
-
margin: 0 0 0 10px;
|
2421
|
-
padding: 0;
|
2422
|
-
width: 30px;
|
2423
|
-
}
|
2424
|
-
.jazz #search.enabled {
|
2425
|
-
}
|
2426
|
-
.jazz input[type=search] {
|
2427
|
-
display: none;
|
2428
|
-
}
|
2429
|
-
.jazz input[type=search].enabled {
|
2430
|
-
background-image: none;
|
2431
|
-
display: block;
|
2432
|
-
height: 30px;
|
2433
|
-
margin-top: 34px;
|
2434
|
-
padding-left: 8px;
|
2435
|
-
-webkit-border-radius: 0;
|
2436
|
-
width: 248px;
|
2437
|
-
}
|
2438
|
-
.jazz #shortstack {
|
2439
|
-
display: block;
|
2440
|
-
float: none;
|
2441
|
-
height: 30px;
|
2442
|
-
margin-left: -12px;
|
2443
|
-
margin-top: 18px;
|
2444
|
-
padding: 13px 10px;
|
2445
|
-
position: absolute;
|
2446
|
-
width: 30px;
|
2447
|
-
}
|
2448
|
-
.jazz .chapter {
|
2449
|
-
bottom: 0;
|
2450
|
-
left: 0;
|
2451
|
-
margin-left: 0;
|
2452
|
-
padding-bottom: 0;
|
2453
|
-
position: relative;
|
2454
|
-
right: 0;
|
2455
|
-
top: 110px;
|
2456
|
-
z-index: -2;
|
2457
|
-
}
|
2458
|
-
.jazz .part-name {
|
2459
|
-
padding: 20px 20px 20px 25px;
|
2460
|
-
}
|
2461
|
-
.jazz .book-parts {
|
2462
|
-
box-shadow: 0 0 1px rgba(0, 0, 0, .07);
|
2463
|
-
display: none;
|
2464
|
-
top: 110px;
|
2465
|
-
position: fixed;
|
2466
|
-
left: 0;
|
2467
|
-
-webkit-overflow-scrolling: touch;
|
2468
|
-
width: 295px;
|
2469
|
-
z-index: -1;
|
2470
|
-
}
|
2471
|
-
.jazz .nav-parts {
|
2472
|
-
overflow: auto;
|
2473
|
-
}
|
2474
|
-
.jazz .book-parts.open {
|
2475
|
-
box-shadow: 7px 0 5px rgba(0, 0, 0, .05);
|
2476
|
-
display: block;
|
2477
|
-
z-index: 5;
|
2478
|
-
}
|
2479
|
-
.jazz #big_button.active {
|
2480
|
-
position: fixed;
|
2481
|
-
top: 0;
|
2482
|
-
bottom: 0;
|
2483
|
-
left: 0;
|
2484
|
-
right: 0;
|
2485
|
-
z-index: 4;
|
2486
|
-
background-color: transparent;
|
2487
|
-
}
|
2488
|
-
.jazz .nav-chapter {
|
2489
|
-
padding: 0 0 16px;
|
2490
|
-
}
|
2491
|
-
.jazz #mini_toc {
|
2492
|
-
background-position: 90% 14px;
|
2493
|
-
margin-top: 2px;
|
2494
|
-
padding: 10px 10px 5px 15px;
|
2495
|
-
width: 220px;
|
2496
|
-
top: 125px;
|
2497
|
-
}
|
2498
|
-
.jazz #mini_toc ul.list-bullet {
|
2499
|
-
margin-top: 15px;
|
2500
|
-
padding-bottom: 0;
|
2501
|
-
width: 200px;
|
2502
|
-
}
|
2503
|
-
.jazz .section {
|
2504
|
-
padding: 20px 13px;
|
2505
|
-
}
|
2506
|
-
.jazz .chapter {
|
2507
|
-
margin: 0 auto;
|
2508
|
-
width: 100%;
|
2509
|
-
z-index: 0;
|
2510
|
-
overflow: visible;
|
2511
|
-
}
|
2512
|
-
.jazz .chapter-name {
|
2513
|
-
padding: 15px 20px 15px 13px;
|
2514
|
-
}
|
2515
|
-
.jazz .figure img {
|
2516
|
-
max-width: 600px;
|
2517
|
-
}
|
2518
|
-
.jazz .two-columns .inline-graphic {
|
2519
|
-
max-width: 100%}
|
2520
|
-
.jazz .intro ul.list-bullet {
|
2521
|
-
width: 100%}
|
2522
|
-
.jazz .intro ul.list-bullet li.item {
|
2523
|
-
width: 40%;
|
2524
|
-
padding-right: 80px;
|
2525
|
-
}
|
2526
|
-
.jazz #next_previous {
|
2527
|
-
margin: 0 13px;
|
2528
|
-
position: static;
|
2529
|
-
width: 95%}
|
2530
|
-
.jazz .copyright {
|
2531
|
-
margin: 70px 13px 15px 0;
|
2532
|
-
position: relative;
|
2533
|
-
bottom: 0;
|
2534
|
-
}
|
2535
|
-
.jazz #footer {
|
2536
|
-
position: relative;
|
2537
|
-
}
|
2538
|
-
.jazz #footer #leave_feedback {
|
2539
|
-
height: 17px;
|
2540
|
-
right: 0;
|
2541
|
-
position: fixed;
|
2542
|
-
}
|
2543
|
-
.jazz #modal #feedback #comment {
|
2544
|
-
-webkit-border-radius: 0;
|
2545
|
-
height: 111px;
|
2546
|
-
margin: 16px 0 12px;
|
2547
|
-
}
|
2548
|
-
.jazz #feedback .asterisk#a1.ipad, .asterisk#modal_a1.ipad {
|
2549
|
-
left: 257px;
|
2550
|
-
}
|
2551
|
-
.jazz #feedback .asterisk#a2.ipad, .asterisk#modal_a2.ipad {
|
2552
|
-
top: 178px;
|
2553
|
-
}
|
2554
|
-
.jazz .fineprint.invalid, #modal_feedback .fineprint.invalid {
|
2555
|
-
bottom: 53px;
|
2556
|
-
}
|
2557
|
-
.jazz #modal #feedback #email {
|
2558
|
-
-webkit-border-radius: 0;
|
2559
|
-
}
|
2560
|
-
.jazz #modal #feedback input[type=button] {
|
2561
|
-
background-color: rgba(160, 160, 160, 1);
|
2562
|
-
background-image: none;
|
2563
|
-
color: rgba(255, 255, 255, 1);
|
2564
|
-
font-family: Helvetica, Arial, sans-serif;
|
2565
|
-
margin: 10px 0 0;
|
2566
|
-
-webkit-border-radius: 0;
|
2567
|
-
-webkit-appearance: none;
|
2568
|
-
-moz-appearance: none;
|
2569
|
-
appearance: none;
|
2570
|
-
}
|
2571
|
-
#reference #bashful {
|
2572
|
-
top: 109px;
|
2573
|
-
left: -10px;
|
2574
|
-
padding-bottom: 5px;
|
2575
|
-
}
|
2576
|
-
#reference #jump_to .filter {
|
2577
|
-
display: block;
|
2578
|
-
}
|
2579
|
-
#reference .keyboard-shortcut {
|
2580
|
-
display: none;
|
2581
|
-
}
|
2582
|
-
#reference.jazz .copyright {
|
2583
|
-
position: absolute;
|
2584
|
-
}
|
2585
|
-
}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape) {
|
2586
|
-
.jazz .content-wrapper {
|
2587
|
-
background-color: rgba(242, 242, 242, 1);
|
2588
|
-
margin: 0 auto;
|
2589
|
-
width: 96%}
|
2590
|
-
.jazz #ios_header {
|
2591
|
-
letter-spacing: 0;
|
2592
|
-
}
|
2593
|
-
.jazz #valence {
|
2594
|
-
top: 25px;
|
2595
|
-
height: 35px;
|
2596
|
-
}
|
2597
|
-
.jazz #hierarchial_navigation {
|
2598
|
-
margin-top: 4px;
|
2599
|
-
}
|
2600
|
-
.jazz .download-text {
|
2601
|
-
margin-top: 6px;
|
2602
|
-
}
|
2603
|
-
.jazz input[type=search] {
|
2604
|
-
margin-right: 0;
|
2605
|
-
margin-top: 0;
|
2606
|
-
padding-left: 25px;
|
2607
|
-
-webkit-border-radius: 0;
|
2608
|
-
}
|
2609
|
-
.jazz .book-parts {
|
2610
|
-
-webkit-overflow-scrolling: touch;
|
2611
|
-
}
|
2612
|
-
.jazz .part-name {
|
2613
|
-
padding: 15px 20px;
|
2614
|
-
}
|
2615
|
-
.jazz .chapter {
|
2616
|
-
bottom: 0;
|
2617
|
-
left: 246px;
|
2618
|
-
margin-left: 20px;
|
2619
|
-
padding-bottom: 0;
|
2620
|
-
overflow: visible;
|
2621
|
-
}
|
2622
|
-
.jazz .section {
|
2623
|
-
background: rgba(255, 255, 255, 1);
|
2624
|
-
}
|
2625
|
-
.jazz #next_previous {
|
2626
|
-
position: static;
|
2627
|
-
background: rgba(255, 255, 255, 1);
|
2628
|
-
margin: 0;
|
2629
|
-
padding: 0 25px;
|
2630
|
-
}
|
2631
|
-
.jazz #dpf_leave_feedback {
|
2632
|
-
height: 16px;
|
2633
|
-
margin-left: 797px;
|
2634
|
-
}
|
2635
|
-
.jazz .two-columns .inline-graphic {
|
2636
|
-
max-width: 100%}
|
2637
|
-
.jazz #footer {
|
2638
|
-
position: relative;
|
2639
|
-
}
|
2640
|
-
.jazz .copyright {
|
2641
|
-
margin: 0;
|
2642
|
-
position: relative;
|
2643
|
-
bottom: 8px;
|
2644
|
-
}
|
2645
|
-
.jazz #footer #leave_feedback {
|
2646
|
-
position: fixed;
|
2647
|
-
}
|
2648
|
-
.jazz #modal #feedback #comment {
|
2649
|
-
-webkit-border-radius: 0;
|
2650
|
-
height: 106px;
|
2651
|
-
}
|
2652
|
-
.jazz #feedback .asterisk#a1.ipad, .asterisk#modal_a1.ipad {
|
2653
|
-
left: 257px;
|
2654
|
-
}
|
2655
|
-
.jazz .fineprint.invalid, #modal_feedback .fineprint.invalid {
|
2656
|
-
bottom: 48px;
|
2657
|
-
}
|
2658
|
-
.jazz #modal #feedback #email {
|
2659
|
-
-webkit-border-radius: 0;
|
2660
|
-
}
|
2661
|
-
.jazz #modal #feedback input[type=button] {
|
2662
|
-
background-color: rgba(160, 160, 160, 1);
|
2663
|
-
background-image: none;
|
2664
|
-
color: rgba(255, 255, 255, 1);
|
2665
|
-
font-family: Helvetica, Arial, sans-serif;
|
2666
|
-
margin: 10px 0 0;
|
2667
|
-
-webkit-border-radius: 0;
|
2668
|
-
-webkit-appearance: none;
|
2669
|
-
-moz-appearance: none;
|
2670
|
-
appearance: none;
|
2671
|
-
}
|
2672
|
-
#reference .keyboard-shortcut {
|
2673
|
-
display: none;
|
2674
|
-
}
|
2675
|
-
#reference.jazz .copyright {
|
2676
|
-
position: absolute;
|
2677
|
-
bottom: 0;
|
2678
|
-
}
|
2679
|
-
}@media only screen and (min-device-width:320px) and (max-device-width:480px) and (orientation:portrait) {
|
2680
|
-
html {
|
2681
|
-
-webkit-text-size-adjust: none;
|
2682
|
-
}
|
2683
|
-
body.jazz {
|
2684
|
-
background-color: rgba(255, 255, 255, 1);
|
2685
|
-
font-size: 70%;
|
2686
|
-
overflow-x: hidden;
|
2687
|
-
}
|
2688
|
-
.jazz #ios_header {
|
2689
|
-
display: block;
|
2690
|
-
height: 30px;
|
2691
|
-
position: static;
|
2692
|
-
top: 0;
|
2693
|
-
z-index: 3;
|
2694
|
-
}
|
2695
|
-
.jazz #ios_header .content-wrapper {
|
2696
|
-
background-color: rgba(242, 242, 242, 1);
|
2697
|
-
margin: 0 auto;
|
2698
|
-
width: 96%}
|
2699
|
-
.jazz .header-text {
|
2700
|
-
letter-spacing: 0;
|
2701
|
-
padding-top: 8px;
|
2702
|
-
}
|
2703
|
-
.jazz #wwdr {
|
2704
|
-
padding-top: 8px;
|
2705
|
-
}
|
2706
|
-
.jazz #valence {
|
2707
|
-
display: block;
|
2708
|
-
height: 91px;
|
2709
|
-
left: 0;
|
2710
|
-
position: relative;
|
2711
|
-
top: 0;
|
2712
|
-
width: 100%;
|
2713
|
-
z-index: 2;
|
2714
|
-
}
|
2715
|
-
.jazz #valence .content-wrapper {
|
2716
|
-
background-color: rgba(242, 242, 242, 1);
|
2717
|
-
margin: 0 auto;
|
2718
|
-
width: 96%}
|
2719
|
-
.jazz #hierarchial_navigation {
|
2720
|
-
font-size: 1.4em;
|
2721
|
-
margin-bottom: 0;
|
2722
|
-
margin-top: 0;
|
2723
|
-
padding-left: 10%;
|
2724
|
-
padding-right: 10%;
|
2725
|
-
text-align: center;
|
2726
|
-
}
|
2727
|
-
.jazz #search {
|
2728
|
-
background-image: url(../Images/search_2x.png);
|
2729
|
-
background-position: 50% 50%;
|
2730
|
-
background-repeat: no-repeat;
|
2731
|
-
background-size: 32px 32px;
|
2732
|
-
float: right;
|
2733
|
-
height: 44px;
|
2734
|
-
margin: 0 80px 0 0;
|
2735
|
-
padding: 0;
|
2736
|
-
width: 44px;
|
2737
|
-
}
|
2738
|
-
.jazz input[type=search] {
|
2739
|
-
display: none;
|
2740
|
-
}
|
2741
|
-
.jazz input[type=search].enabled {
|
2742
|
-
background-image: none;
|
2743
|
-
display: block;
|
2744
|
-
font-size: 1.4em;
|
2745
|
-
height: 40px;
|
2746
|
-
margin-right: -75px;
|
2747
|
-
margin-top: 64px;
|
2748
|
-
outline: 13px solid rgba(160, 160, 160, 1);
|
2749
|
-
padding-left: 8px;
|
2750
|
-
-webkit-border-radius: 0;
|
2751
|
-
width: 297px;
|
2752
|
-
}
|
2753
|
-
.jazz .download-text {
|
2754
|
-
background-image: url(../Images/download_2x.png);
|
2755
|
-
background-position: 50% 50%;
|
2756
|
-
background-repeat: no-repeat;
|
2757
|
-
background-size: 32px 32px;
|
2758
|
-
color: transparent;
|
2759
|
-
height: 44px;
|
2760
|
-
margin: 0 10px 0 0;
|
2761
|
-
width: 44px;
|
2762
|
-
}
|
2763
|
-
.jazz #shortstack {
|
2764
|
-
float: none;
|
2765
|
-
display: block;
|
2766
|
-
height: 32px;
|
2767
|
-
margin-left: 75px;
|
2768
|
-
margin-top: 42px;
|
2769
|
-
padding: 6px;
|
2770
|
-
position: absolute;
|
2771
|
-
width: 32px;
|
2772
|
-
}
|
2773
|
-
.jazz .book-parts {
|
2774
|
-
border: 0;
|
2775
|
-
box-shadow: 0 0 0;
|
2776
|
-
clear: both;
|
2777
|
-
margin: 61px 0 0 -20px;
|
2778
|
-
-webkit-overflow-scrolling: auto;
|
2779
|
-
z-index: -1;
|
2780
|
-
}
|
2781
|
-
.jazz .book-parts.open {
|
2782
|
-
display: block;
|
2783
|
-
margin-left: 0;
|
2784
|
-
-webkit-overflow-scrolling: touch;
|
2785
|
-
width: 100%;
|
2786
|
-
z-index: 2;
|
2787
|
-
}
|
2788
|
-
.jazz .part-name {
|
2789
|
-
padding-left: 30px;
|
2790
|
-
}
|
2791
|
-
.jazz .nav-part-active {
|
2792
|
-
padding-bottom: 0;
|
2793
|
-
}
|
2794
|
-
.jazz .nav-chapters {
|
2795
|
-
line-height: 180%}
|
2796
|
-
.jazz .nav-chapter {
|
2797
|
-
line-height: 140%;
|
2798
|
-
padding-bottom: 22px;
|
2799
|
-
padding-left: 5px;
|
2800
|
-
}
|
2801
|
-
.jazz .content-wrapper {
|
2802
|
-
background-color: rgba(255, 255, 255, 1);
|
2803
|
-
width: 100%}
|
2804
|
-
.jazz .chapter {
|
2805
|
-
border: 0;
|
2806
|
-
box-shadow: none;
|
2807
|
-
left: 0;
|
2808
|
-
margin: 0 auto;
|
2809
|
-
padding-bottom: 50px;
|
2810
|
-
padding-top: 6px;
|
2811
|
-
position: relative;
|
2812
|
-
right: 0;
|
2813
|
-
top: 0;
|
2814
|
-
-webkit-overflow-scrolling: touch;
|
2815
|
-
width: 96%}
|
2816
|
-
.jazz .frozen {
|
2817
|
-
position: fixed;
|
2818
|
-
z-index: -10;
|
2819
|
-
}
|
2820
|
-
.jazz .chapter-name {
|
2821
|
-
margin-top: 0;
|
2822
|
-
padding: 10px 15px 10px 5px;
|
2823
|
-
width: 100%}
|
2824
|
-
.jazz #mini_toc {
|
2825
|
-
background-position-y: 14px;
|
2826
|
-
margin: 10px 0 10px 5px;
|
2827
|
-
padding: 10px 10px 5px;
|
2828
|
-
position: static;
|
2829
|
-
width: 246px;
|
2830
|
-
}
|
2831
|
-
.jazz #mini_toc #mini_toc_button {
|
2832
|
-
width: 246px;
|
2833
|
-
}
|
2834
|
-
.jazz .section {
|
2835
|
-
padding: 10px 5px 20px;
|
2836
|
-
}
|
2837
|
-
.jazz .section-name {
|
2838
|
-
margin-top: 0;
|
2839
|
-
}
|
2840
|
-
.jazz .figure img {
|
2841
|
-
max-width: 275px;
|
2842
|
-
}
|
2843
|
-
.jazz .list-bullet {
|
2844
|
-
margin-left: 18px;
|
2845
|
-
padding-left: 15px;
|
2846
|
-
}
|
2847
|
-
.jazz .intro ul.list-bullet {
|
2848
|
-
margin-top: 10px;
|
2849
|
-
}
|
2850
|
-
.jazz .intro ul.list-bullet li.item {
|
2851
|
-
float: none;
|
2852
|
-
padding: 5px 0;
|
2853
|
-
width: 100%}
|
2854
|
-
.jazz ul.list-bullet li.item:before {
|
2855
|
-
padding-top: 1px;
|
2856
|
-
}
|
2857
|
-
.jazz .intro ul.list-bullet li.item .para {
|
2858
|
-
line-height: 200%}
|
2859
|
-
.jazz .two-columns {
|
2860
|
-
display: block;
|
2861
|
-
margin: 80px auto;
|
2862
|
-
}
|
2863
|
-
.jazz .two-columns .inline-graphic {
|
2864
|
-
max-width: 100%}
|
2865
|
-
.jazz .left-column {
|
2866
|
-
display: block;
|
2867
|
-
}
|
2868
|
-
.jazz .right-column {
|
2869
|
-
display: block;
|
2870
|
-
padding-left: 0;
|
2871
|
-
}
|
2872
|
-
.jazz .two-columns img {
|
2873
|
-
padding-bottom: 10px;
|
2874
|
-
}
|
2875
|
-
.jazz .two-columns .para {
|
2876
|
-
font-size: 1.2em;
|
2877
|
-
}
|
2878
|
-
.jazz .rec-container .blurb .para:nth-child(1) {
|
2879
|
-
width: 95%}
|
2880
|
-
.jazz .rec-container .left-container {
|
2881
|
-
display: block;
|
2882
|
-
width: 100%}
|
2883
|
-
.jazz .rec-container .right-container {
|
2884
|
-
display: block;
|
2885
|
-
margin-top: 10px;
|
2886
|
-
width: 100%}
|
2887
|
-
.jazz #next_previous {
|
2888
|
-
margin: 0 10px;
|
2889
|
-
position: static;
|
2890
|
-
width: 95%}
|
2891
|
-
.jazz .previous-link {
|
2892
|
-
display: table-cell;
|
2893
|
-
height: 60px;
|
2894
|
-
margin-bottom: 30px;
|
2895
|
-
width: 40%}
|
2896
|
-
.jazz .next-link {
|
2897
|
-
display: table-cell;
|
2898
|
-
height: 60px;
|
2899
|
-
margin-bottom: 30px;
|
2900
|
-
width: 40%}
|
2901
|
-
.jazz .next-link a, .jazz .previous-link a {
|
2902
|
-
display: table-cell;
|
2903
|
-
vertical-align: middle;
|
2904
|
-
width: 90%}
|
2905
|
-
.jazz #next_previous .copyright a {
|
2906
|
-
display: inline;
|
2907
|
-
vertical-align: baseline;
|
2908
|
-
}
|
2909
|
-
.jazz .copyright {
|
2910
|
-
margin: 0;
|
2911
|
-
text-align: center;
|
2912
|
-
}
|
2913
|
-
.jazz #footer {
|
2914
|
-
background-color: rgba(255, 255, 255, 1);
|
2915
|
-
padding-bottom: 20px;
|
2916
|
-
position: relative;
|
2917
|
-
}
|
2918
|
-
.jazz #footer #leave_feedback {
|
2919
|
-
margin: 0 auto;
|
2920
|
-
height: 15px;
|
2921
|
-
position: static;
|
2922
|
-
width: 60px;
|
2923
|
-
}
|
2924
|
-
.jazz #modal {
|
2925
|
-
margin-bottom: 7px;
|
2926
|
-
overflow: scroll!important;
|
2927
|
-
padding: 0;
|
2928
|
-
-webkit-overflow-scrolling: touch;
|
2929
|
-
width: 300px;
|
2930
|
-
}
|
2931
|
-
.jazz #modal #closebox {
|
2932
|
-
left: 266px;
|
2933
|
-
top: 5px;
|
2934
|
-
}
|
2935
|
-
.jazz .activated {
|
2936
|
-
height: 700px;
|
2937
|
-
margin-bottom: 0;
|
2938
|
-
}
|
2939
|
-
.jazz #feedback {
|
2940
|
-
padding: 10px;
|
2941
|
-
width: 280px;
|
2942
|
-
}
|
2943
|
-
.jazz #modal #sending {
|
2944
|
-
width: 300px;
|
2945
|
-
}
|
2946
|
-
.jazz #modal #feedback h2 {
|
2947
|
-
font-size: 1.1em;
|
2948
|
-
margin-bottom: 5px;
|
2949
|
-
margin-top: 0;
|
2950
|
-
padding-top: 0;
|
2951
|
-
}
|
2952
|
-
.jazz #modal #feedback .left-leaf {
|
2953
|
-
float: none;
|
2954
|
-
margin-bottom: 15px;
|
2955
|
-
width: 250px;
|
2956
|
-
}
|
2957
|
-
.jazz #modal #feedback .right-leaf {
|
2958
|
-
float: none;
|
2959
|
-
width: 250px;
|
2960
|
-
}
|
2961
|
-
.jazz #modal #feedback #comment {
|
2962
|
-
-webkit-border-radius: 0;
|
2963
|
-
height: 90px;
|
2964
|
-
width: 266px;
|
2965
|
-
}
|
2966
|
-
.jazz #feedback .asterisk#a1 {
|
2967
|
-
left: 185px;
|
2968
|
-
top: 5px;
|
2969
|
-
}
|
2970
|
-
.jazz #feedback .asterisk#a2 {
|
2971
|
-
top: 270px;
|
2972
|
-
left: 279px;
|
2973
|
-
}
|
2974
|
-
.jazz #modal #feedback #email {
|
2975
|
-
-webkit-border-radius: 0;
|
2976
|
-
width: 266px;
|
2977
|
-
}
|
2978
|
-
.jazz #modal #feedback .fineprint {
|
2979
|
-
bottom: 0;
|
2980
|
-
position: relative;
|
2981
|
-
width: 200px;
|
2982
|
-
}
|
2983
|
-
.jazz #modal #feedback input[type=button] {
|
2984
|
-
background-color: rgba(160, 160, 160, 1);
|
2985
|
-
background-image: none;
|
2986
|
-
color: rgba(255, 255, 255, 1);
|
2987
|
-
font-family: Helvetica, Arial, sans-serif;
|
2988
|
-
left: 0;
|
2989
|
-
margin: 10px 0 0;
|
2990
|
-
-webkit-border-radius: 0;
|
2991
|
-
-webkit-appearance: none;
|
2992
|
-
-moz-appearance: none;
|
2993
|
-
appearance: none;
|
2994
|
-
}
|
2995
|
-
.jazz #modal #feedback #submit {
|
2996
|
-
margin: 10px 0 0;
|
2997
|
-
}
|
2998
|
-
}@media only screen and (min-device-width:320px) and (max-device-width:568px) and (orientation:landscape) {
|
2999
|
-
html {
|
3000
|
-
-webkit-text-size-adjust: none;
|
3001
|
-
}
|
3002
|
-
body.jazz {
|
3003
|
-
background-color: rgba(255, 255, 255, 1);
|
3004
|
-
font-size: 70%;
|
3005
|
-
overflow-x: hidden;
|
3006
|
-
}
|
3007
|
-
.jazz #ios_header {
|
3008
|
-
display: block;
|
3009
|
-
height: 30px;
|
3010
|
-
position: static;
|
3011
|
-
top: 0;
|
3012
|
-
z-index: 3;
|
3013
|
-
}
|
3014
|
-
.jazz #ios_header .content-wrapper {
|
3015
|
-
background-color: rgba(242, 242, 242, 1);
|
3016
|
-
margin: 0 auto;
|
3017
|
-
width: 96%}
|
3018
|
-
.jazz .header-text {
|
3019
|
-
letter-spacing: 0;
|
3020
|
-
padding-top: 8px;
|
3021
|
-
}
|
3022
|
-
.jazz #wwdr {
|
3023
|
-
padding-top: 8px;
|
3024
|
-
}
|
3025
|
-
.jazz #valence {
|
3026
|
-
display: block;
|
3027
|
-
height: 82px;
|
3028
|
-
left: 0;
|
3029
|
-
position: relative;
|
3030
|
-
top: 0;
|
3031
|
-
width: 100%;
|
3032
|
-
z-index: 2;
|
3033
|
-
}
|
3034
|
-
.jazz #valence .content-wrapper {
|
3035
|
-
background-color: rgba(242, 242, 242, 1);
|
3036
|
-
margin: 0 auto;
|
3037
|
-
width: 96%}
|
3038
|
-
.jazz #hierarchial_navigation {
|
3039
|
-
float: none;
|
3040
|
-
font-size: 1.4em;
|
3041
|
-
margin: 0 auto;
|
3042
|
-
padding-top: 0;
|
3043
|
-
text-align: center;
|
3044
|
-
width: 90%}
|
3045
|
-
.jazz #search {
|
3046
|
-
background-image: url(../Images/search_2x.png);
|
3047
|
-
background-position: 50% 50%;
|
3048
|
-
background-repeat: no-repeat;
|
3049
|
-
background-size: 32px 32px;
|
3050
|
-
float: right;
|
3051
|
-
height: 44px;
|
3052
|
-
margin: 4px 199px 0 0;
|
3053
|
-
padding: 0;
|
3054
|
-
width: 44px;
|
3055
|
-
}
|
3056
|
-
.jazz input[type=search] {
|
3057
|
-
display: none;
|
3058
|
-
}
|
3059
|
-
.jazz input[type=search].enabled {
|
3060
|
-
background-image: none;
|
3061
|
-
display: block;
|
3062
|
-
font-size: 1.4em;
|
3063
|
-
height: 40px;
|
3064
|
-
margin-right: -200px;
|
3065
|
-
margin-top: 60px;
|
3066
|
-
outline: 13px solid rgba(128, 128, 128, 1);
|
3067
|
-
padding-left: 8px;
|
3068
|
-
-webkit-border-radius: 0;
|
3069
|
-
width: 545px;
|
3070
|
-
}
|
3071
|
-
.jazz .download-text {
|
3072
|
-
background-image: url(../Images/download_2x.png);
|
3073
|
-
background-position: 50% 50%;
|
3074
|
-
background-repeat: no-repeat;
|
3075
|
-
background-size: 32px 32px;
|
3076
|
-
color: transparent;
|
3077
|
-
height: 44px;
|
3078
|
-
margin: 4px 10px 0 0;
|
3079
|
-
width: 44px;
|
3080
|
-
}
|
3081
|
-
.jazz #shortstack {
|
3082
|
-
float: none;
|
3083
|
-
display: block;
|
3084
|
-
height: 32px;
|
3085
|
-
margin-left: 192px;
|
3086
|
-
margin-top: 5px;
|
3087
|
-
padding: 6px;
|
3088
|
-
position: absolute;
|
3089
|
-
width: 32px;
|
3090
|
-
}
|
3091
|
-
.jazz .book-parts {
|
3092
|
-
clear: both;
|
3093
|
-
display: none;
|
3094
|
-
margin: 51px 0 0 -20px;
|
3095
|
-
-webkit-overflow-scrolling: touch;
|
3096
|
-
z-index: 1;
|
3097
|
-
}
|
3098
|
-
.jazz .book-parts.open {
|
3099
|
-
display: block;
|
3100
|
-
width: 60%;
|
3101
|
-
z-index: 2;
|
3102
|
-
}
|
3103
|
-
.jazz .part-name {
|
3104
|
-
padding-left: 30px;
|
3105
|
-
}
|
3106
|
-
.jazz .nav-part-active {
|
3107
|
-
padding-bottom: 0;
|
3108
|
-
}
|
3109
|
-
.jazz .nav-chapters {
|
3110
|
-
line-height: 180%}
|
3111
|
-
.jazz .nav-chapter {
|
3112
|
-
line-height: 140%;
|
3113
|
-
padding-bottom: 22px;
|
3114
|
-
padding-left: 5px;
|
3115
|
-
}
|
3116
|
-
.jazz .content-wrapper {
|
3117
|
-
background-color: rgba(255, 255, 255, 1);
|
3118
|
-
width: 100%}
|
3119
|
-
.jazz .chapter {
|
3120
|
-
border: 0;
|
3121
|
-
box-shadow: none;
|
3122
|
-
left: 0;
|
3123
|
-
margin: 0 auto;
|
3124
|
-
padding-bottom: 50px;
|
3125
|
-
padding-top: 6px;
|
3126
|
-
position: relative;
|
3127
|
-
right: 0;
|
3128
|
-
top: 0;
|
3129
|
-
-webkit-overflow-scrolling: touch;
|
3130
|
-
width: 96%}
|
3131
|
-
.jazz .frozen {
|
3132
|
-
padding-top: 112px;
|
3133
|
-
position: fixed;
|
3134
|
-
z-index: -10;
|
3135
|
-
}
|
3136
|
-
.jazz .chapter-name {
|
3137
|
-
padding: 10px 15px 10px 5px;
|
3138
|
-
width: 100%}
|
3139
|
-
.jazz #mini_toc {
|
3140
|
-
background-position-y: 14px;
|
3141
|
-
margin: 10px 0 10px 5px;
|
3142
|
-
padding: 10px 10px 5px;
|
3143
|
-
position: static;
|
3144
|
-
width: 246px;
|
3145
|
-
}
|
3146
|
-
.jazz #mini_toc #mini_toc_button {
|
3147
|
-
width: 246px;
|
3148
|
-
}
|
3149
|
-
.jazz .section {
|
3150
|
-
padding: 10px 5px 20px;
|
3151
|
-
}
|
3152
|
-
.jazz .figure img {
|
3153
|
-
max-width: 275px;
|
3154
|
-
}
|
3155
|
-
.jazz .list-bullet {
|
3156
|
-
margin-left: 18px;
|
3157
|
-
padding-left: 15px;
|
3158
|
-
}
|
3159
|
-
.jazz .intro ul.list-bullet {
|
3160
|
-
margin-top: 10px;
|
3161
|
-
}
|
3162
|
-
.jazz .intro ul.list-bullet li.item {
|
3163
|
-
float: none;
|
3164
|
-
padding: 5px 0;
|
3165
|
-
width: 100%}
|
3166
|
-
.jazz ul.list-bullet li.item:before {
|
3167
|
-
padding-top: 1px;
|
3168
|
-
}
|
3169
|
-
.jazz .intro ul.list-bullet li.item .para {
|
3170
|
-
line-height: 200%}
|
3171
|
-
.jazz .two-columns {
|
3172
|
-
display: block;
|
3173
|
-
margin: 80px auto;
|
3174
|
-
}
|
3175
|
-
.jazz .left-column {
|
3176
|
-
display: block;
|
3177
|
-
}
|
3178
|
-
.jazz .right-column {
|
3179
|
-
display: block;
|
3180
|
-
padding-left: 0;
|
3181
|
-
}
|
3182
|
-
.jazz .two-columns img {
|
3183
|
-
padding-bottom: 10px;
|
3184
|
-
}
|
3185
|
-
.jazz .two-columns .inline-graphic {
|
3186
|
-
max-width: 100%}
|
3187
|
-
.jazz .two-columns .para {
|
3188
|
-
font-size: 1.2em;
|
3189
|
-
}
|
3190
|
-
.jazz .rec-container .blurb .para:nth-child(1) {
|
3191
|
-
width: 95%}
|
3192
|
-
.jazz .rec-container .left-container {
|
3193
|
-
display: block;
|
3194
|
-
width: 100%}
|
3195
|
-
.jazz .rec-container .right-container {
|
3196
|
-
display: block;
|
3197
|
-
margin-top: 10px;
|
3198
|
-
width: 100%}
|
3199
|
-
.jazz #next_previous {
|
3200
|
-
margin: 0 10px;
|
3201
|
-
position: static;
|
3202
|
-
width: 95%}
|
3203
|
-
.jazz .previous-link {
|
3204
|
-
display: table-cell;
|
3205
|
-
height: 60px;
|
3206
|
-
margin-bottom: 30px;
|
3207
|
-
width: 40%}
|
3208
|
-
.jazz .next-link {
|
3209
|
-
display: table-cell;
|
3210
|
-
height: 60px;
|
3211
|
-
margin-bottom: 30px;
|
3212
|
-
width: 40%}
|
3213
|
-
.jazz .next-link a, .jazz .previous-link a {
|
3214
|
-
display: table-cell;
|
3215
|
-
vertical-align: middle;
|
3216
|
-
width: 90%}
|
3217
|
-
.jazz #next_previous .copyright a {
|
3218
|
-
display: inline;
|
3219
|
-
vertical-align: baseline;
|
3220
|
-
}
|
3221
|
-
.jazz .copyright {
|
3222
|
-
margin: 0;
|
3223
|
-
text-align: center;
|
3224
|
-
}
|
3225
|
-
.jazz #footer {
|
3226
|
-
background-color: rgba(255, 255, 255, 1);
|
3227
|
-
padding-bottom: 20px;
|
3228
|
-
position: relative;
|
3229
|
-
}
|
3230
|
-
.jazz #footer #leave_feedback {
|
3231
|
-
margin: 0 auto;
|
3232
|
-
height: 15px;
|
3233
|
-
position: static;
|
3234
|
-
width: 100px;
|
3235
|
-
}
|
3236
|
-
.jazz #modal {
|
3237
|
-
margin-bottom: 7px;
|
3238
|
-
overflow: scroll!important;
|
3239
|
-
padding: 0;
|
3240
|
-
-webkit-overflow-scrolling: touch;
|
3241
|
-
width: 300px;
|
3242
|
-
}
|
3243
|
-
.jazz #modal #closebox {
|
3244
|
-
left: 266px;
|
3245
|
-
top: 5px;
|
3246
|
-
}
|
3247
|
-
.jazz .activated {
|
3248
|
-
height: 700px;
|
3249
|
-
margin-bottom: 0;
|
3250
|
-
}
|
3251
|
-
.jazz #feedback {
|
3252
|
-
padding: 10px;
|
3253
|
-
width: 280px;
|
3254
|
-
}
|
3255
|
-
.jazz #modal #sending {
|
3256
|
-
width: 300px;
|
3257
|
-
}
|
3258
|
-
.jazz #modal #feedback h2 {
|
3259
|
-
font-size: 1.1em;
|
3260
|
-
margin-bottom: 5px;
|
3261
|
-
margin-top: 0;
|
3262
|
-
padding-top: 0;
|
3263
|
-
}
|
3264
|
-
.jazz #modal #feedback .left-leaf {
|
3265
|
-
float: none;
|
3266
|
-
margin-bottom: 15px;
|
3267
|
-
width: 250px;
|
3268
|
-
}
|
3269
|
-
.jazz #modal #feedback .right-leaf {
|
3270
|
-
float: none;
|
3271
|
-
width: 250px;
|
3272
|
-
}
|
3273
|
-
.jazz #modal #feedback #comment {
|
3274
|
-
-webkit-border-radius: 0;
|
3275
|
-
height: 90px;
|
3276
|
-
width: 266px;
|
3277
|
-
}
|
3278
|
-
.jazz #feedback .asterisk#a1 {
|
3279
|
-
left: 185px;
|
3280
|
-
top: 5px;
|
3281
|
-
}
|
3282
|
-
.jazz #feedback .asterisk#a2 {
|
3283
|
-
top: 270px;
|
3284
|
-
left: 279px;
|
3285
|
-
}
|
3286
|
-
.jazz #modal #feedback #email {
|
3287
|
-
-webkit-border-radius: 0;
|
3288
|
-
width: 266px;
|
3289
|
-
}
|
3290
|
-
.jazz #modal #feedback .fineprint {
|
3291
|
-
bottom: 0;
|
3292
|
-
position: relative;
|
3293
|
-
width: 200px;
|
3294
|
-
}
|
3295
|
-
.jazz #modal #feedback input[type=button] {
|
3296
|
-
background-color: rgba(160, 160, 160, 1);
|
3297
|
-
background-image: none;
|
3298
|
-
color: rgba(255, 255, 255, 1);
|
3299
|
-
font-family: Helvetica, Arial, sans-serif;
|
3300
|
-
left: 0;
|
3301
|
-
margin: 10px 0 0;
|
3302
|
-
-webkit-border-radius: 0;
|
3303
|
-
-webkit-appearance: none;
|
3304
|
-
-moz-appearance: none;
|
3305
|
-
appearance: none;
|
3306
|
-
}
|
3307
|
-
.jazz #modal #feedback #submit {
|
3308
|
-
margin: 10px 0 0;
|
3309
|
-
}
|
3310
|
-
}/*! Copyright © 2010 Apple Inc. All rights reserved. */@media only print {
|
3311
|
-
.jazz #valence {
|
3312
|
-
display: none;
|
3313
|
-
}
|
3314
|
-
.jazz #ios_header {
|
3315
|
-
display: none;
|
3316
|
-
}
|
3317
|
-
.jazz #footer #leave_feedback {
|
3318
|
-
display: none;
|
3319
|
-
}
|
3320
|
-
.jazz #mini_toc {
|
3321
|
-
display: none;
|
3322
|
-
}
|
3323
|
-
.jazz .chapter {
|
3324
|
-
position: relative;
|
3325
|
-
margin: 0 auto;
|
3326
|
-
top: 0;
|
3327
|
-
border: 0;
|
3328
|
-
box-shadow: none;
|
3329
|
-
padding-bottom: 0;
|
3330
|
-
}
|
3331
|
-
.jazz .book-parts {
|
3332
|
-
display: none;
|
3333
|
-
}
|
3334
|
-
body.jazz, .jazz .content-wrapper {
|
3335
|
-
background-color: rgba(255, 255, 255, 1);
|
3336
|
-
}
|
3337
|
-
.jazz a[name] {
|
3338
|
-
margin: auto;
|
3339
|
-
padding-top: 0;
|
3340
|
-
display: static;
|
3341
|
-
}
|
3342
|
-
.jazz .next-link a {
|
3343
|
-
display: none;
|
3344
|
-
}
|
3345
|
-
.jazz .previous-link a {
|
3346
|
-
display: none;
|
3347
|
-
}
|
3348
|
-
.jazz .rec-container .left-container {
|
3349
|
-
padding-right: 0;
|
3350
|
-
float: left;
|
3351
|
-
}
|
3352
|
-
.jazz .rec-container .right-container {
|
3353
|
-
float: right;
|
3354
|
-
padding-left: 0;
|
3355
|
-
}
|
3356
|
-
.jazz .rec-container .left-container, .jazz .rec-container .right-container {
|
3357
|
-
display: static;
|
3358
|
-
width: auto;
|
3359
|
-
}
|
3360
|
-
.jazz .para {
|
3361
|
-
clear: both;
|
3362
|
-
}
|
3363
|
-
.jazz .copyright {
|
3364
|
-
margin: auto;
|
3365
|
-
}
|
3366
|
-
}
|