jazzy 0.0.4 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (156) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -2
  3. data/.gitmodules +3 -0
  4. data/.rubocop.yml +67 -0
  5. data/.rubocop_todo.yml +16 -0
  6. data/.travis.yml +6 -0
  7. data/Gemfile +15 -7
  8. data/Gemfile.lock +62 -12
  9. data/LICENSE +0 -0
  10. data/README.md +39 -12
  11. data/Rakefile +87 -1
  12. data/bin/jazzy +10 -44
  13. data/bin/sourcekitten +0 -0
  14. data/jazzy.gemspec +16 -16
  15. data/lib/jazzy.rb +1 -159
  16. data/lib/jazzy/assets/css/jazzy.css +561 -0
  17. data/lib/{assets/Images/carat_2x.png → jazzy/assets/img/carat.png} +0 -0
  18. data/lib/jazzy/assets/img/dash.png +0 -0
  19. data/lib/jazzy/assets/img/gh.png +0 -0
  20. data/lib/jazzy/assets/js/jazzy.js +15 -0
  21. data/lib/jazzy/assets/js/jquery.min.js +4 -0
  22. data/lib/jazzy/config.rb +100 -0
  23. data/lib/jazzy/doc.mustache +46 -0
  24. data/lib/jazzy/doc.rb +23 -0
  25. data/lib/jazzy/doc_builder.rb +166 -0
  26. data/lib/jazzy/gem_version.rb +3 -0
  27. data/lib/jazzy/jazzy_markdown.rb +13 -0
  28. data/lib/jazzy/partials/footer.mustache +4 -0
  29. data/lib/jazzy/partials/nav.mustache +16 -0
  30. data/lib/jazzy/partials/parameter.mustache +12 -0
  31. data/lib/jazzy/partials/task.mustache +66 -0
  32. data/lib/jazzy/partials/tasks.mustache +7 -0
  33. data/lib/jazzy/source_declaration.rb +19 -0
  34. data/lib/jazzy/sourcekitten.rb +146 -0
  35. data/lib/jazzy/xml_helper.rb +15 -0
  36. data/screenshot.jpg +0 -0
  37. data/spec/.gitkeep +0 -0
  38. data/spec/integration_spec.rb +89 -0
  39. data/spec/integration_specs/document_alamofire/after/docs/Classes.html +266 -0
  40. data/spec/integration_specs/document_alamofire/after/docs/Classes/Manager.html +677 -0
  41. data/spec/integration_specs/document_alamofire/after/docs/Classes/Manager/SessionDelegate.html +866 -0
  42. data/spec/integration_specs/document_alamofire/after/docs/Classes/Manager/Singleton.html +246 -0
  43. data/spec/integration_specs/document_alamofire/after/docs/Classes/Request.html +1376 -0
  44. data/spec/integration_specs/document_alamofire/after/docs/Classes/Request/DataTaskDelegate.html +486 -0
  45. data/spec/integration_specs/document_alamofire/after/docs/Classes/Request/TaskDelegate.html +506 -0
  46. data/spec/integration_specs/document_alamofire/after/docs/Enums.html +266 -0
  47. data/spec/integration_specs/document_alamofire/after/docs/Enums/ParameterEncoding.html +391 -0
  48. data/spec/integration_specs/document_alamofire/after/docs/Extensions.html +641 -0
  49. data/spec/integration_specs/document_alamofire/after/docs/Extensions/Manager.html +376 -0
  50. data/spec/integration_specs/document_alamofire/after/docs/Extensions/NSURL.html +226 -0
  51. data/spec/integration_specs/document_alamofire/after/docs/Extensions/NSURLComponents.html +226 -0
  52. data/spec/integration_specs/document_alamofire/after/docs/Extensions/NSURLRequest.html +226 -0
  53. data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request.html +377 -0
  54. data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request/DownloadTaskDelegate.html +406 -0
  55. data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request/MIMEType.html +286 -0
  56. data/spec/integration_specs/document_alamofire/after/docs/Extensions/Request/UploadTaskDelegate.html +266 -0
  57. data/spec/integration_specs/document_alamofire/after/docs/Extensions/String.html +226 -0
  58. data/spec/integration_specs/document_alamofire/after/docs/Functions.html +1001 -0
  59. data/spec/integration_specs/document_alamofire/after/docs/Global Variables.html +236 -0
  60. data/spec/integration_specs/document_alamofire/after/docs/Protocols.html +266 -0
  61. data/spec/integration_specs/document_alamofire/after/docs/Protocols/URLRequestConvertible.html +236 -0
  62. data/spec/integration_specs/document_alamofire/after/docs/Protocols/URLStringConvertible.html +236 -0
  63. data/spec/integration_specs/document_alamofire/after/docs/Typealiases.html +266 -0
  64. data/spec/integration_specs/document_alamofire/after/docs/css/jazzy.css +561 -0
  65. data/spec/integration_specs/document_alamofire/after/docs/img/carat.png +0 -0
  66. data/spec/integration_specs/document_alamofire/after/docs/img/dash.png +0 -0
  67. data/spec/integration_specs/document_alamofire/after/docs/img/gh.png +0 -0
  68. data/spec/integration_specs/document_alamofire/after/docs/index.html +194 -0
  69. data/spec/integration_specs/document_alamofire/after/docs/js/jazzy.js +15 -0
  70. data/spec/integration_specs/document_alamofire/after/docs/js/jquery.min.js +4 -0
  71. data/spec/integration_specs/document_alamofire/after/execution_output.txt +2 -0
  72. data/spec/integration_specs/misc_jazzy_features/after/docs/Classes.html +317 -0
  73. data/spec/integration_specs/misc_jazzy_features/after/docs/Classes/ImplicitlyInternalTopLevelClass.html +138 -0
  74. data/spec/integration_specs/misc_jazzy_features/after/docs/Enums.html +155 -0
  75. data/spec/integration_specs/misc_jazzy_features/after/docs/Enums/DocumentedEnum.html +128 -0
  76. data/spec/integration_specs/misc_jazzy_features/after/docs/Global Variables.html +138 -0
  77. data/spec/integration_specs/misc_jazzy_features/after/docs/css/jazzy.css +561 -0
  78. data/spec/integration_specs/misc_jazzy_features/after/docs/img/carat.png +0 -0
  79. data/spec/integration_specs/misc_jazzy_features/after/docs/img/dash.png +0 -0
  80. data/spec/integration_specs/misc_jazzy_features/after/docs/img/gh.png +0 -0
  81. data/spec/integration_specs/misc_jazzy_features/after/docs/index.html +99 -0
  82. data/spec/integration_specs/misc_jazzy_features/after/docs/js/jazzy.js +15 -0
  83. data/spec/integration_specs/misc_jazzy_features/after/docs/js/jquery.min.js +4 -0
  84. data/spec/integration_specs/misc_jazzy_features/after/execution_output.txt +2 -0
  85. data/spec/integration_specs/misc_jazzy_features/before/MiscJazzyFeatures.xcodeproj/project.pbxproj +293 -0
  86. data/{parser/ASTDump.xcodeproj → spec/integration_specs/misc_jazzy_features/before/MiscJazzyFeatures.xcodeproj}/project.xcworkspace/contents.xcworkspacedata +1 -1
  87. data/spec/integration_specs/misc_jazzy_features/before/MiscJazzyFeatures/Classes.swift +60 -0
  88. data/spec/integration_specs/misc_jazzy_features/before/MiscJazzyFeatures/Info.plist +28 -0
  89. data/spec/integration_specs/misc_jazzy_features/before/MiscJazzyFeatures/MiscJazzyFeatures.h +10 -0
  90. data/spec/integration_specs/misc_jazzy_features/before/docs/Classes.html +317 -0
  91. data/spec/integration_specs/misc_jazzy_features/before/docs/Classes/ImplicitlyInternalTopLevelClass.html +138 -0
  92. data/spec/integration_specs/misc_jazzy_features/before/docs/Enums.html +155 -0
  93. data/spec/integration_specs/misc_jazzy_features/before/docs/Enums/DocumentedEnum.html +128 -0
  94. data/spec/integration_specs/misc_jazzy_features/before/docs/Global Variables.html +138 -0
  95. data/spec/integration_specs/misc_jazzy_features/before/docs/css/jazzy.css +561 -0
  96. data/spec/integration_specs/misc_jazzy_features/before/docs/img/carat.png +0 -0
  97. data/spec/integration_specs/misc_jazzy_features/before/docs/img/dash.png +0 -0
  98. data/spec/integration_specs/misc_jazzy_features/before/docs/img/gh.png +0 -0
  99. data/spec/integration_specs/misc_jazzy_features/before/docs/index.html +99 -0
  100. data/spec/integration_specs/misc_jazzy_features/before/docs/js/jazzy.js +15 -0
  101. data/spec/integration_specs/misc_jazzy_features/before/docs/js/jquery.min.js +4 -0
  102. metadata +112 -76
  103. data/DEV_README.md +0 -35
  104. data/bin/ASTDump +0 -0
  105. data/bin/generate_swift_header.sh +0 -14
  106. data/lib/assets/CSS/style-1.1.15.css +0 -3366
  107. data/lib/assets/Images/apple2.png +0 -0
  108. data/lib/assets/Images/check.png +0 -0
  109. data/lib/assets/Images/class_node_parent_and_child_2x.png +0 -0
  110. data/lib/assets/Images/class_node_subclass_last_child_2x.png +0 -0
  111. data/lib/assets/Images/class_node_subclass_with_siblings_2x.png +0 -0
  112. data/lib/assets/Images/closebox_2x.png +0 -0
  113. data/lib/assets/Images/collection_last_child_2x.png +0 -0
  114. data/lib/assets/Images/collection_last_child_orphan_grandparent_2x.png +0 -0
  115. data/lib/assets/Images/collection_last_child_orphan_parent_2x.png +0 -0
  116. data/lib/assets/Images/collection_last_child_orphan_parent_and_grandparent_2x.png +0 -0
  117. data/lib/assets/Images/collection_node_2x.png +0 -0
  118. data/lib/assets/Images/collection_node_orphan_grandparent_2x.png +0 -0
  119. data/lib/assets/Images/collection_node_orphan_parent_2x.png +0 -0
  120. data/lib/assets/Images/collection_node_orphan_parent_and_grandparent_2x.png +0 -0
  121. data/lib/assets/Images/collection_node_parent_2x.png +0 -0
  122. data/lib/assets/Images/collection_node_parent_last_child_orphan_parent_2x.png +0 -0
  123. data/lib/assets/Images/collection_node_parent_orphan_parent_2x.png +0 -0
  124. data/lib/assets/Images/collection_parent_last_child_2x.png +0 -0
  125. data/lib/assets/Images/download_2x.png +0 -0
  126. data/lib/assets/Images/left_arrow_2x.png +0 -0
  127. data/lib/assets/Images/magnify_2x.png +0 -0
  128. data/lib/assets/Images/minus_2x.png +0 -0
  129. data/lib/assets/Images/playbutton.svg +0 -15
  130. data/lib/assets/Images/plus_2x.png +0 -0
  131. data/lib/assets/Images/right_arrow_2x.png +0 -0
  132. data/lib/assets/Images/search_2x.png +0 -0
  133. data/lib/assets/Images/shortstack_2x.png +0 -0
  134. data/lib/assets/JavaScript/devpubs-1.1.15.js +0 -1293
  135. data/lib/jazzy/jazzhtml.rb +0 -7
  136. data/lib/jazzy/klass.mustache +0 -150
  137. data/lib/jazzy/klass.rb +0 -23
  138. data/lib/jazzy/partials/klass-method.mustache +0 -70
  139. data/lib/jazzy/partials/klass-overview.mustache +0 -6
  140. data/lib/jazzy/partials/klass-property.mustache +0 -41
  141. data/parser/ASTDump.xcodeproj/project.pbxproj +0 -301
  142. data/parser/ASTDump.xcodeproj/project.xcworkspace/xcshareddata/ASTDump.xccheckout +0 -41
  143. data/parser/ASTDump.xcodeproj/project.xcworkspace/xcuserdata/ta.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  144. data/parser/ASTDump.xcodeproj/xcuserdata/ta.xcuserdatad/xcschemes/ASTDump.xcscheme +0 -86
  145. data/parser/ASTDump.xcodeproj/xcuserdata/ta.xcuserdatad/xcschemes/xcschememanagement.plist +0 -22
  146. data/parser/ASTDump/main.cpp +0 -71
  147. data/parser/clang-c/BuildSystem.h +0 -148
  148. data/parser/clang-c/CXCompilationDatabase.h +0 -170
  149. data/parser/clang-c/CXErrorCode.h +0 -64
  150. data/parser/clang-c/CXString.h +0 -61
  151. data/parser/clang-c/Documentation.h +0 -554
  152. data/parser/clang-c/Index.h +0 -5454
  153. data/parser/clang-c/Platform.h +0 -45
  154. data/sample/JAZMusician.h +0 -38
  155. data/sample/JAZMusician.m +0 -19
  156. data/sample/Musician.swift +0 -37
@@ -0,0 +1,155 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <title>Enums Reference</title>
5
+ <link rel="stylesheet" type="text/css" href="css/jazzy.css" />
6
+ <meta charset='utf-8'>
7
+ <script src="js/jquery.min.js" defer></script>
8
+ <script src="js/jazzy.js" defer></script>
9
+ </head>
10
+ <body id="reference" class="Swift">
11
+ <a title="Enums Reference"></a>
12
+ <header>
13
+ <div class="content-wrapper">
14
+ <p class="header-text"><a href="#"> Docs</a></p>
15
+ <p id="header-links"><a href=""><img id="header-icon" src="img/gh.png" height="16px" width="16px" />View on GitHub</a></p>
16
+ <p id="header-links"><a href=""><img id="header-icon" src="img/dash.png" height="16px" width="16px" />Install in Dash</a></p>
17
+ </div>
18
+ </header>
19
+ <section id="valence">
20
+ <div class="content-wrapper">
21
+ <p id="hierarchial_navigation">
22
+ <a href="#" id="design_resources_link"> Reference</a>
23
+ <img id="carat" src="img/carat.png" height="10px" width="6px" />
24
+ Enums Reference
25
+ </p>
26
+ </div>
27
+ </section>
28
+ <div class="content-wrapper">
29
+ <nav class="book-parts">
30
+ <ul class="nav-parts">
31
+ <li class="part-name tasks">
32
+ <a href="Classes.html">Classes</a>
33
+ <ul class="nav-chapters">
34
+ <li class="nav-chapter">
35
+ <a href="Classes/ImplicitlyInternalTopLevelClass.html">ImplicitlyInternalTopLevelClass</a>
36
+ </li>
37
+ <li class="nav-chapter">
38
+ <a href="Classes.html#/s:C17MiscJazzyFeatures31ExplicitlyInternalTopLevelClass">ExplicitlyInternalTopLevelClass</a>
39
+ </li>
40
+ <li class="nav-chapter">
41
+ <a href="Classes.html#/s:C17MiscJazzyFeaturesP33_72F27992F5E059C6D84AD5FC86B1B76B20PrivateTopLevelClass">PrivateTopLevelClass</a>
42
+ </li>
43
+ <li class="nav-chapter">
44
+ <a href="Classes.html#/s:C17MiscJazzyFeatures19PublicTopLevelClass">PublicTopLevelClass</a>
45
+ </li>
46
+ <li class="nav-chapter">
47
+ <a href="Classes.html#/s:C17MiscJazzyFeatures17ObjCTopLevelClass">ObjCTopLevelClass</a>
48
+ </li>
49
+ <li class="nav-chapter">
50
+ <a href="Classes.html#/s:C17MiscJazzyFeatures20TopLevelObjCSubclass">TopLevelObjCSubclass</a>
51
+ </li>
52
+ <li class="nav-chapter">
53
+ <a href="Classes.html#/s:C17MiscJazzyFeatures21TopLevelSwiftSubclass">TopLevelSwiftSubclass</a>
54
+ </li>
55
+ <li class="nav-chapter">
56
+ <a href="Classes.html#/s:C17MiscJazzyFeatures25UndocumentedTopLevelClass">UndocumentedTopLevelClass</a>
57
+ </li>
58
+ </ul>
59
+ </li>
60
+ <li class="part-name tasks">
61
+ <a href="Global Variables.html">Global Variables</a>
62
+ <ul class="nav-chapters">
63
+ <li class="nav-chapter">
64
+ <a href="Global Variables.html#/s:v17MiscJazzyFeatures16documentedGlobalSb">documentedGlobal</a>
65
+ </li>
66
+ </ul>
67
+ </li>
68
+ <li class="part-name tasks">
69
+ <a href="Enums.html">Enums</a>
70
+ <ul class="nav-chapters">
71
+ <li class="nav-chapter">
72
+ <a href="Enums/DocumentedEnum.html">DocumentedEnum</a>
73
+ </li>
74
+ <li class="nav-chapter">
75
+ <a href="Enums.html#/s:O17MiscJazzyFeatures16UndocumentedEnum">UndocumentedEnum</a>
76
+ </li>
77
+ </ul>
78
+ </li>
79
+ </ul>
80
+ </nav>
81
+ <div class="pixel-line"></div>
82
+ <div class="rubber-band-gap"></div>
83
+ <article class="chapter">
84
+ <a name="/"></a>
85
+ <h1 class="chapter-name">Enums</h1>
86
+ <section>
87
+ <section class="section">
88
+ <p class="para">The following enums are available globally.</p>
89
+ </section>
90
+ <section class="section task-group-section">
91
+ <div class="task-group">
92
+ <div class="task-name-container">
93
+ <a name="/Children"></a>
94
+ <a href="#/Children">
95
+ <h3 class="section-name"></h3>
96
+ </a>
97
+ </div>
98
+ <ul class="task-group-list">
99
+ <li class="item symbol">
100
+ <div class="task-group-term">
101
+ <code>
102
+ <a name="/s:O17MiscJazzyFeatures14DocumentedEnum">
103
+ <a class="x-instance-method Swift" href="#/s:O17MiscJazzyFeatures14DocumentedEnum">DocumentedEnum</a>
104
+ </code>
105
+ </div>
106
+ <div class="height-container">
107
+ <div class="pointy-thing-container"></div>
108
+ <section class="section instance-method">
109
+ <div class="pointy-thing"></div>
110
+ <div class="abstract">
111
+ <p class="para">SUPPORTED: documented enum</p>
112
+ </div>
113
+ <div class="declaration">
114
+ <h4>Declaration</h4>
115
+
116
+ <div class="Swift">
117
+ <p class="aside-title">Swift</p>
118
+ <p class="para">
119
+ <code>enum DocumentedEnum</code>
120
+ </p>
121
+ </div>
122
+ </div>
123
+ </section>
124
+ </div>
125
+ </li>
126
+ <li class="item symbol">
127
+ <div class="task-group-term">
128
+ <code>
129
+ <a name="/s:O17MiscJazzyFeatures16UndocumentedEnum">
130
+ <a class="x-instance-method Swift" href="#/s:O17MiscJazzyFeatures16UndocumentedEnum">UndocumentedEnum</a>
131
+ </code>
132
+ </div>
133
+ <div class="height-container">
134
+ <div class="pointy-thing-container"></div>
135
+ <section class="section instance-method">
136
+ <div class="pointy-thing"></div>
137
+ <div class="abstract">
138
+ <p class="para">Undocumented</p>
139
+ </div>
140
+ </section>
141
+ </div>
142
+ </li>
143
+ </ul>
144
+ </div>
145
+ </section>
146
+ </section>
147
+ <section id="footer">
148
+ <p class="copyright">&copy; 2014 <a class="link" href="" target="_blank" rel="external"></a>. All rights reserved. (Last updated: 2014-10-31)</p>
149
+ <p class="copyright">Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.0.5</a>, a <a class="link" href="http://realm.io" target="_blank" rel="external">Realm</a> project.</p>
150
+ </section>
151
+ </article>
152
+ </div>
153
+ </body>
154
+ </div>
155
+ </html>
@@ -0,0 +1,128 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <title>DocumentedEnum Enum Reference</title>
5
+ <link rel="stylesheet" type="text/css" href="../css/jazzy.css" />
6
+ <meta charset='utf-8'>
7
+ <script src="../js/jquery.min.js" defer></script>
8
+ <script src="../js/jazzy.js" defer></script>
9
+ </head>
10
+ <body id="reference" class="Swift">
11
+ <a title="DocumentedEnum Enum Reference"></a>
12
+ <header>
13
+ <div class="content-wrapper">
14
+ <p class="header-text"><a href="#"> Docs</a></p>
15
+ <p id="header-links"><a href=""><img id="header-icon" src="../img/gh.png" height="16px" width="16px" />View on GitHub</a></p>
16
+ <p id="header-links"><a href=""><img id="header-icon" src="../img/dash.png" height="16px" width="16px" />Install in Dash</a></p>
17
+ </div>
18
+ </header>
19
+ <section id="valence">
20
+ <div class="content-wrapper">
21
+ <p id="hierarchial_navigation">
22
+ <a href="#" id="design_resources_link"> Reference</a>
23
+ <img id="carat" src="../img/carat.png" height="10px" width="6px" />
24
+ DocumentedEnum Enum Reference
25
+ </p>
26
+ </div>
27
+ </section>
28
+ <div class="content-wrapper">
29
+ <nav class="book-parts">
30
+ <ul class="nav-parts">
31
+ <li class="part-name tasks">
32
+ <a href="../Classes.html">Classes</a>
33
+ <ul class="nav-chapters">
34
+ <li class="nav-chapter">
35
+ <a href="../Classes/ImplicitlyInternalTopLevelClass.html">ImplicitlyInternalTopLevelClass</a>
36
+ </li>
37
+ <li class="nav-chapter">
38
+ <a href="../Classes.html#/s:C17MiscJazzyFeatures31ExplicitlyInternalTopLevelClass">ExplicitlyInternalTopLevelClass</a>
39
+ </li>
40
+ <li class="nav-chapter">
41
+ <a href="../Classes.html#/s:C17MiscJazzyFeaturesP33_72F27992F5E059C6D84AD5FC86B1B76B20PrivateTopLevelClass">PrivateTopLevelClass</a>
42
+ </li>
43
+ <li class="nav-chapter">
44
+ <a href="../Classes.html#/s:C17MiscJazzyFeatures19PublicTopLevelClass">PublicTopLevelClass</a>
45
+ </li>
46
+ <li class="nav-chapter">
47
+ <a href="../Classes.html#/s:C17MiscJazzyFeatures17ObjCTopLevelClass">ObjCTopLevelClass</a>
48
+ </li>
49
+ <li class="nav-chapter">
50
+ <a href="../Classes.html#/s:C17MiscJazzyFeatures20TopLevelObjCSubclass">TopLevelObjCSubclass</a>
51
+ </li>
52
+ <li class="nav-chapter">
53
+ <a href="../Classes.html#/s:C17MiscJazzyFeatures21TopLevelSwiftSubclass">TopLevelSwiftSubclass</a>
54
+ </li>
55
+ <li class="nav-chapter">
56
+ <a href="../Classes.html#/s:C17MiscJazzyFeatures25UndocumentedTopLevelClass">UndocumentedTopLevelClass</a>
57
+ </li>
58
+ </ul>
59
+ </li>
60
+ <li class="part-name tasks">
61
+ <a href="../Global Variables.html">Global Variables</a>
62
+ <ul class="nav-chapters">
63
+ <li class="nav-chapter">
64
+ <a href="../Global Variables.html#/s:v17MiscJazzyFeatures16documentedGlobalSb">documentedGlobal</a>
65
+ </li>
66
+ </ul>
67
+ </li>
68
+ <li class="part-name tasks">
69
+ <a href="../Enums.html">Enums</a>
70
+ <ul class="nav-chapters">
71
+ <li class="nav-chapter">
72
+ <a href="../Enums/DocumentedEnum.html">DocumentedEnum</a>
73
+ </li>
74
+ <li class="nav-chapter">
75
+ <a href="../Enums.html#/s:O17MiscJazzyFeatures16UndocumentedEnum">UndocumentedEnum</a>
76
+ </li>
77
+ </ul>
78
+ </li>
79
+ </ul>
80
+ </nav>
81
+ <div class="pixel-line"></div>
82
+ <div class="rubber-band-gap"></div>
83
+ <article class="chapter">
84
+ <a name="/"></a>
85
+ <h1 class="chapter-name">DocumentedEnum</h1>
86
+ <section>
87
+ <section class="section">
88
+ <p class="para">SUPPORTED: documented enum</p>
89
+ </section>
90
+ <section class="section task-group-section">
91
+ <div class="task-group">
92
+ <div class="task-name-container">
93
+ <a name="/Children"></a>
94
+ <a href="#/Children">
95
+ <h3 class="section-name"></h3>
96
+ </a>
97
+ </div>
98
+ <ul class="task-group-list">
99
+ <li class="item symbol">
100
+ <div class="task-group-term">
101
+ <code>
102
+ <a name="/s:FO17MiscJazzyFeatures14DocumentedEnum15DocumentedValueFMS0_S0_">
103
+ <a class="x-instance-method Swift" href="#/s:FO17MiscJazzyFeatures14DocumentedEnum15DocumentedValueFMS0_S0_">DocumentedValue</a>
104
+ </code>
105
+ </div>
106
+ <div class="height-container">
107
+ <div class="pointy-thing-container"></div>
108
+ <section class="section instance-method">
109
+ <div class="pointy-thing"></div>
110
+ <div class="abstract">
111
+ <p class="para">SUPPORTED: documented enum element</p>
112
+ </div>
113
+ </section>
114
+ </div>
115
+ </li>
116
+ </ul>
117
+ </div>
118
+ </section>
119
+ </section>
120
+ <section id="footer">
121
+ <p class="copyright">&copy; 2014 <a class="link" href="" target="_blank" rel="external"></a>. All rights reserved. (Last updated: 2014-10-31)</p>
122
+ <p class="copyright">Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.0.5</a>, a <a class="link" href="http://realm.io" target="_blank" rel="external">Realm</a> project.</p>
123
+ </section>
124
+ </article>
125
+ </div>
126
+ </body>
127
+ </div>
128
+ </html>
@@ -0,0 +1,138 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <title>Global Variables Reference</title>
5
+ <link rel="stylesheet" type="text/css" href="css/jazzy.css" />
6
+ <meta charset='utf-8'>
7
+ <script src="js/jquery.min.js" defer></script>
8
+ <script src="js/jazzy.js" defer></script>
9
+ </head>
10
+ <body id="reference" class="Swift">
11
+ <a title="Global Variables Reference"></a>
12
+ <header>
13
+ <div class="content-wrapper">
14
+ <p class="header-text"><a href="#"> Docs</a></p>
15
+ <p id="header-links"><a href=""><img id="header-icon" src="img/gh.png" height="16px" width="16px" />View on GitHub</a></p>
16
+ <p id="header-links"><a href=""><img id="header-icon" src="img/dash.png" height="16px" width="16px" />Install in Dash</a></p>
17
+ </div>
18
+ </header>
19
+ <section id="valence">
20
+ <div class="content-wrapper">
21
+ <p id="hierarchial_navigation">
22
+ <a href="#" id="design_resources_link"> Reference</a>
23
+ <img id="carat" src="img/carat.png" height="10px" width="6px" />
24
+ Global Variables Reference
25
+ </p>
26
+ </div>
27
+ </section>
28
+ <div class="content-wrapper">
29
+ <nav class="book-parts">
30
+ <ul class="nav-parts">
31
+ <li class="part-name tasks">
32
+ <a href="Classes.html">Classes</a>
33
+ <ul class="nav-chapters">
34
+ <li class="nav-chapter">
35
+ <a href="Classes/ImplicitlyInternalTopLevelClass.html">ImplicitlyInternalTopLevelClass</a>
36
+ </li>
37
+ <li class="nav-chapter">
38
+ <a href="Classes.html#/s:C17MiscJazzyFeatures31ExplicitlyInternalTopLevelClass">ExplicitlyInternalTopLevelClass</a>
39
+ </li>
40
+ <li class="nav-chapter">
41
+ <a href="Classes.html#/s:C17MiscJazzyFeaturesP33_72F27992F5E059C6D84AD5FC86B1B76B20PrivateTopLevelClass">PrivateTopLevelClass</a>
42
+ </li>
43
+ <li class="nav-chapter">
44
+ <a href="Classes.html#/s:C17MiscJazzyFeatures19PublicTopLevelClass">PublicTopLevelClass</a>
45
+ </li>
46
+ <li class="nav-chapter">
47
+ <a href="Classes.html#/s:C17MiscJazzyFeatures17ObjCTopLevelClass">ObjCTopLevelClass</a>
48
+ </li>
49
+ <li class="nav-chapter">
50
+ <a href="Classes.html#/s:C17MiscJazzyFeatures20TopLevelObjCSubclass">TopLevelObjCSubclass</a>
51
+ </li>
52
+ <li class="nav-chapter">
53
+ <a href="Classes.html#/s:C17MiscJazzyFeatures21TopLevelSwiftSubclass">TopLevelSwiftSubclass</a>
54
+ </li>
55
+ <li class="nav-chapter">
56
+ <a href="Classes.html#/s:C17MiscJazzyFeatures25UndocumentedTopLevelClass">UndocumentedTopLevelClass</a>
57
+ </li>
58
+ </ul>
59
+ </li>
60
+ <li class="part-name tasks">
61
+ <a href="Global Variables.html">Global Variables</a>
62
+ <ul class="nav-chapters">
63
+ <li class="nav-chapter">
64
+ <a href="Global Variables.html#/s:v17MiscJazzyFeatures16documentedGlobalSb">documentedGlobal</a>
65
+ </li>
66
+ </ul>
67
+ </li>
68
+ <li class="part-name tasks">
69
+ <a href="Enums.html">Enums</a>
70
+ <ul class="nav-chapters">
71
+ <li class="nav-chapter">
72
+ <a href="Enums/DocumentedEnum.html">DocumentedEnum</a>
73
+ </li>
74
+ <li class="nav-chapter">
75
+ <a href="Enums.html#/s:O17MiscJazzyFeatures16UndocumentedEnum">UndocumentedEnum</a>
76
+ </li>
77
+ </ul>
78
+ </li>
79
+ </ul>
80
+ </nav>
81
+ <div class="pixel-line"></div>
82
+ <div class="rubber-band-gap"></div>
83
+ <article class="chapter">
84
+ <a name="/"></a>
85
+ <h1 class="chapter-name">Global Variables</h1>
86
+ <section>
87
+ <section class="section">
88
+ <p class="para">The following global variables are available globally.</p>
89
+ </section>
90
+ <section class="section task-group-section">
91
+ <div class="task-group">
92
+ <div class="task-name-container">
93
+ <a name="/Children"></a>
94
+ <a href="#/Children">
95
+ <h3 class="section-name"></h3>
96
+ </a>
97
+ </div>
98
+ <ul class="task-group-list">
99
+ <li class="item symbol">
100
+ <div class="task-group-term">
101
+ <code>
102
+ <a name="/s:v17MiscJazzyFeatures16documentedGlobalSb">
103
+ <a class="x-instance-method Swift" href="#/s:v17MiscJazzyFeatures16documentedGlobalSb">documentedGlobal</a>
104
+ </code>
105
+ </div>
106
+ <div class="height-container">
107
+ <div class="pointy-thing-container"></div>
108
+ <section class="section instance-method">
109
+ <div class="pointy-thing"></div>
110
+ <div class="abstract">
111
+ <p class="para">SUPPORTED: documented global</p>
112
+ </div>
113
+ <div class="declaration">
114
+ <h4>Declaration</h4>
115
+
116
+ <div class="Swift">
117
+ <p class="aside-title">Swift</p>
118
+ <p class="para">
119
+ <code>let documentedGlobal: Bool</code>
120
+ </p>
121
+ </div>
122
+ </div>
123
+ </section>
124
+ </div>
125
+ </li>
126
+ </ul>
127
+ </div>
128
+ </section>
129
+ </section>
130
+ <section id="footer">
131
+ <p class="copyright">&copy; 2014 <a class="link" href="" target="_blank" rel="external"></a>. All rights reserved. (Last updated: 2014-10-31)</p>
132
+ <p class="copyright">Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.0.5</a>, a <a class="link" href="http://realm.io" target="_blank" rel="external">Realm</a> project.</p>
133
+ </section>
134
+ </article>
135
+ </div>
136
+ </body>
137
+ </div>
138
+ </html>
@@ -0,0 +1,561 @@
1
+ html, body, div, span, h1, h3, h4, p, a, code, em, img, ul, li, table, tbody, tr, 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
+
11
+ #reference .x-instance-method.Swift {
12
+ margin-left: 15px;
13
+ }
14
+
15
+ #reference .chapter {
16
+ overflow-x: hidden;
17
+ border-top: 0;
18
+ border-left: 1px solid rgba(233, 233, 233, 1);
19
+ border-right: 1px solid rgba(233, 233, 233, 1);
20
+ border-bottom: 1px solid rgba(233, 233, 233, 1);
21
+ }
22
+
23
+ #reference .nav-chapters {
24
+ height: 100%;
25
+ }
26
+
27
+ #reference .part-name {
28
+ color: #000;
29
+ cursor: default;
30
+ padding: 15px 15px 15px 20px;
31
+ min-height: 61px;
32
+ }
33
+
34
+ #reference .part-name.tasks {
35
+ background: #fff;
36
+ overflow: auto;
37
+ }
38
+
39
+ #reference .book-parts a {
40
+ display: initial;
41
+ margin-left: 0;
42
+ }
43
+
44
+ #reference .nav-chapters li {
45
+ color: rgba(128, 128, 128, 1);
46
+ margin-left: 12px;
47
+ padding-left: 10px;
48
+ text-indent: -10px;
49
+ }
50
+
51
+ #reference .chapter-name {
52
+ margin-top: 21px;
53
+ }
54
+
55
+ .rubber-band-gap {
56
+ background: #fff;
57
+ height: 250px;
58
+ position: fixed;
59
+ width: 734px;
60
+ z-index: -1;
61
+ top: 70px;
62
+ margin: 0 0 0 247px;
63
+ }
64
+
65
+ #reference .task-name-container {
66
+ background: #fff;
67
+ left: -25px;
68
+ margin-bottom: 0;
69
+ padding: 35px 25px 0;
70
+ position: relative;
71
+ width: 100%;
72
+ }
73
+
74
+ #reference .section-name {
75
+ cursor: pointer;
76
+ display: inline-block;
77
+ }
78
+
79
+ #reference .section .section {
80
+ margin-top: 0;
81
+ }
82
+
83
+ #reference .task-group-section {
84
+ padding: 1px 25px 0;
85
+ }
86
+
87
+ #reference .symbol {
88
+ background: #fff;
89
+ left: -25px;
90
+ list-style-type: none;
91
+ padding: 13px 25px 0;
92
+ position: relative;
93
+ width: 100%;
94
+ }
95
+
96
+ #reference .task-group-term {
97
+ font-size: 1.4em;
98
+ word-break: break-all;
99
+ }
100
+
101
+ #reference .task-group-term>code {
102
+ display: inline-block;
103
+ }
104
+
105
+ #reference .pointy-thing-container {
106
+ background: #fff;
107
+ border-bottom: 1px solid rgba(233, 233, 233, 1);
108
+ left: -25px;
109
+ padding-left: 25px;
110
+ padding-right: 25px;
111
+ padding-bottom: 13px;
112
+ position: relative;
113
+ width: 100%;
114
+ }
115
+
116
+ #reference .pointy-thing {
117
+ background: rgba(249, 249, 249, 1);
118
+ border-left: 1px solid rgba(233, 233, 233, 1);
119
+ border-top: 1px solid rgba(233, 233, 233, 1);
120
+ height: 12px;
121
+ left: 21px;
122
+ top: -7px;
123
+ -webkit-transform: rotate(45deg);
124
+ -moz-transform: rotate(45deg);
125
+ -o-transform: rotate(45deg);
126
+ transform: rotate(45deg);
127
+ position: absolute;
128
+ width: 12px;
129
+ }
130
+
131
+ #reference .height-container {
132
+ display: none;
133
+ left: -25px;
134
+ padding: 0 25px;
135
+ position: relative;
136
+ width: 100%;
137
+ overflow: hidden;
138
+ }
139
+
140
+ #reference .height-container .section {
141
+ background: rgba(249, 249, 249, 1);
142
+ border-bottom: 1px solid rgba(233, 233, 233, 1);
143
+ left: -25px;
144
+ margin: 0;
145
+ padding: 13px 25px 0;
146
+ position: relative;
147
+ width: 100%;
148
+ }
149
+
150
+ #reference .height-container .section h4 {
151
+ font-size: 13px;
152
+ line-height: 1.5;
153
+ margin-top: 21px;
154
+ }
155
+
156
+ #reference .section .declaration {
157
+ margin-top: 21px;
158
+ }
159
+
160
+ #reference .section .declaration code {
161
+ color: rgba(128, 128, 128, 1);
162
+ margin-bottom: 15px;
163
+ padding-bottom: 6px;
164
+ }
165
+
166
+ #reference .declaration div .para {
167
+ margin-bottom: 0;
168
+ }
169
+
170
+ #reference .task-group .item .graybox {
171
+ margin: 5px 0 26px;
172
+ }
173
+
174
+ #reference .symbol .graybox .para:last-of-type {
175
+ margin-bottom: 0;
176
+ padding-bottom: 0;
177
+ }
178
+
179
+ #reference .parameters .graybox tr td:first-of-type {
180
+ text-align: right;
181
+ padding: 7px;
182
+ vertical-align: top;
183
+ word-break: normal;
184
+ width: 40px;
185
+ }
186
+
187
+ #reference em.term,
188
+ #reference em.parameter-name {
189
+ color: rgba(65, 65, 65, 1);
190
+ font-size: 12px;
191
+ line-height: 1.5;
192
+ }
193
+
194
+ #reference .height-container .section>div:last-of-type {
195
+ margin-bottom: 15px;
196
+ }
197
+
198
+ #reference #footer {
199
+ width: 614px;
200
+ z-index: 1;
201
+ }
202
+
203
+ #reference .item .para {
204
+ padding-bottom: 0;
205
+ margin: 0 0 15px;
206
+ }
207
+
208
+ #reference a[name] {
209
+ padding-top: 112px;
210
+ margin: -112px 0 0;
211
+ }
212
+
213
+ #reference .height-container td {
214
+ max-width: inherit;
215
+ }
216
+
217
+ #reference .declaration .n a {
218
+ color: inherit;
219
+ }
220
+
221
+ #reference .declaration .n a:hover {
222
+ border-bottom: 1px solid;
223
+ }
224
+
225
+ #reference .copyright {
226
+ margin: 10px 0;
227
+ }
228
+
229
+ .nav-chapters {
230
+ font-weight: 400;
231
+ line-height: 110%;
232
+ list-style-position: outside;
233
+ list-style-type: none;
234
+ margin: 0;
235
+ padding: 8px 0 0;
236
+ height: 100%;
237
+ width: 200px;
238
+ position: relative;
239
+ top: 15px;
240
+ }
241
+
242
+ body {
243
+ background-color: rgba(242, 242, 242, 1);
244
+ color: #000;
245
+ font-family: Helvetica, Arial, sans-serif;
246
+ font-size: 62.5%;
247
+ margin: 0 auto;
248
+ -webkit-font-smoothing: subpixel-antialiased;
249
+ }
250
+
251
+ a[name] {
252
+ display: block;
253
+ padding-top: 85px;
254
+ margin: -85px 0 0;
255
+ width: 0;
256
+ height: 0;
257
+ }
258
+
259
+ .content-wrapper {
260
+ background-color: rgba(242, 242, 242, 1);
261
+ margin: 0 auto;
262
+ width: 980px;
263
+ }
264
+
265
+ .pixel-line {
266
+ background: rgba(233, 233, 233, 1);
267
+ height: 1px;
268
+ position: fixed;
269
+ top: 70px;
270
+ width: 734px;
271
+ z-index: 3;
272
+ top: 70px;
273
+ margin: 0 0 0 247px;
274
+ }
275
+
276
+ .chapter {
277
+ background-color: #fff;
278
+ border: 1px solid rgba(233, 233, 233, 1);
279
+ border-top: 0;
280
+ box-shadow: 0 0 1px rgba(0, 0, 0, .07);
281
+ display: block;
282
+ margin-left: 246px;
283
+ min-height: calc(100% - 173px);
284
+ min-height: -moz-calc(100% - 173px);
285
+ min-height: -webkit-calc(100% - 173px);
286
+ min-height: -o-calc(100% - 173px);
287
+ position: absolute;
288
+ overflow: auto;
289
+ padding-bottom: 100px;
290
+ top: 70px;
291
+ -webkit-overflow-scrolling: touch;
292
+ width: 734px;
293
+ }
294
+
295
+ #hierarchial_navigation {
296
+ float: left;
297
+ font-size: 1.4em;
298
+ margin-top: 29px;
299
+ vertical-align: middle;
300
+ }
301
+
302
+ .section {
303
+ padding: 15px 25px 0px;
304
+ }
305
+
306
+ .section .section {
307
+ margin: 30px 0 0;
308
+ padding: 0;
309
+ }
310
+
311
+ header {
312
+ background-color: rgba(65, 65, 65, 1);
313
+ box-shadow: 0 1px 1px rgba(0, 0, 0, .07);
314
+ color: #fff;
315
+ height: 25px;
316
+ letter-spacing: .05em;
317
+ position: fixed;
318
+ top: 0;
319
+ width: 100%;
320
+ z-index: 4;
321
+ }
322
+
323
+ .header-text {
324
+ font-size: 1.1em;
325
+ margin: 0 auto;
326
+ padding-top: 6px;
327
+ vertical-align: middle;
328
+ float: left;
329
+ }
330
+
331
+ .header-text a {
332
+ color: #fff;
333
+ text-decoration: none;
334
+ }
335
+
336
+ #header-icon {
337
+ padding-right: 8px;
338
+ vertical-align: -3px;
339
+ }
340
+
341
+ #header-links a {
342
+ float: right;
343
+ padding-top: 4px;
344
+ padding-left: 16px;
345
+ font-size: 1.1em;
346
+ vertical-align: middle;
347
+ margin: 0 auto;
348
+ color: #fff;
349
+ text-decoration: none;
350
+ }
351
+
352
+ #valence {
353
+ background-color: rgba(242, 242, 242, 1);
354
+ display: block;
355
+ height: 60px;
356
+ padding-top: 10px;
357
+ position: fixed;
358
+ top: 0;
359
+ width: 100%;
360
+ z-index: 3;
361
+ }
362
+
363
+ #carat {
364
+ margin: 0 10px;
365
+ }
366
+
367
+ #design_resources_link {
368
+ color: rgba(0, 136, 204, 1);
369
+ text-decoration: none;
370
+ }
371
+
372
+ .para {
373
+ color: rgba(65, 65, 65, 1);
374
+ font-size: 1.4em;
375
+ line-height: 145%;
376
+ margin-bottom: 15px;
377
+ }
378
+
379
+ .chapter-name {
380
+ color: rgba(0, 0, 0, 1);
381
+ display: block;
382
+ font-family: Helvetica;
383
+ font-size: 2.8em;
384
+ font-weight: 100;
385
+ margin-bottom: 0;
386
+ padding: 15px 25px;
387
+ width: 63%;
388
+ margin-top: 21px;
389
+ }
390
+
391
+ .chapter a {
392
+ color: rgba(0, 136, 204, 1);
393
+ text-decoration: none;
394
+ }
395
+
396
+ h3.section-name:before {
397
+ display: block;
398
+ content: " ";
399
+ margin-top: -85px;
400
+ height: 85px;
401
+ visibility: hidden;
402
+ }
403
+
404
+ .section-name {
405
+ color: rgba(128, 128, 128, 1);
406
+ display: block;
407
+ font-family: Helvetica;
408
+ font-size: 2.2em;
409
+ font-weight: 100;
410
+ margin-bottom: 15px;
411
+ }
412
+
413
+ .copyright {
414
+ clear: both;
415
+ color: rgba(160, 160, 160, 1);
416
+ float: none;
417
+ margin: 70px 25px 10px 0;
418
+ }
419
+
420
+ .link {
421
+ color: rgba(0, 136, 204, 1);
422
+ text-decoration: none;
423
+ }
424
+
425
+ .item p {
426
+ margin: 0;
427
+ padding-bottom: 6px;
428
+ }
429
+
430
+ .book-parts {
431
+ background-color: rgba(249, 249, 249, 1);
432
+ border-top: 1px solid rgba(233, 233, 233, 1);
433
+ border-left: 1px solid rgba(233, 233, 233, 1);
434
+ border-right: 1px solid rgba(233, 233, 233, 1);
435
+ bottom: 0;
436
+ box-shadow: 0 0 1px rgba(0, 0, 0, .07);
437
+ overflow: auto;
438
+ -webkit-overflow-scrolling: touch;
439
+ position: fixed;
440
+ top: 70px;
441
+ width: 230px;
442
+ }
443
+
444
+ .nav-parts {
445
+ color: rgba(128, 128, 128, 1);
446
+ font-weight: 100;
447
+ line-height: 140%;
448
+ list-style-type: none;
449
+ margin: 0;
450
+ -webkit-padding-start: 0;
451
+ }
452
+
453
+ .part-name {
454
+ border-bottom: 1px solid rgba(233, 233, 233, 1);
455
+ font-family: Helvetica;
456
+ font-size: 1.6em;
457
+ line-height: 150%;
458
+ list-style-type: none;
459
+ margin: 0;
460
+ padding: 15px 30px 15px 20px;
461
+ cursor: pointer;
462
+ }
463
+
464
+ .nav-chapters {
465
+ font-weight: 400;
466
+ line-height: 110%;
467
+ list-style-position: outside;
468
+ list-style-type: none;
469
+ margin: 0;
470
+ margin-bottom: 10px;
471
+ padding: 0;
472
+ height: 0;
473
+ overflow: hidden;
474
+ -webkit-transition: height .3s ease-in-out;
475
+ -moz-transition: height .3s ease-in-out;
476
+ -o-transition: height .3s ease-in-out;
477
+ -ms-transition: height .3s ease-in-out;
478
+ transition: height .3s ease-in-out;
479
+ }
480
+
481
+ .nav-chapter {
482
+ font-size: .8em;
483
+ list-style-position: outside;
484
+ list-style-type: none;
485
+ margin: 0;
486
+ padding: 0 0 8px;
487
+ }
488
+
489
+ .nav-chapters .nav-chapter {
490
+ margin-left: 0;
491
+ }
492
+
493
+ .book-parts a {
494
+ color: rgba(128, 128, 128, 1);
495
+ display: block;
496
+ text-decoration: none;
497
+ margin-left: 24px;
498
+ }
499
+
500
+ .aside-title {
501
+ color: rgba(128, 128, 128, 1);
502
+ font-size: 9px;
503
+ letter-spacing: 2px;
504
+ margin-bottom: 8px;
505
+ text-transform: uppercase;
506
+ }
507
+
508
+ div.Swift {
509
+ padding: 4px 0 2px 10px;
510
+ margin: 10px 0 21px;
511
+ }
512
+
513
+ div.Swift {
514
+ border-left: 5px solid rgba(205, 233, 244, 1);
515
+ }
516
+
517
+ div.Swift .aside-title {
518
+ color: rgba(75, 138, 251, 1);
519
+ -webkit-user-select: none;
520
+ }
521
+
522
+ #footer {
523
+ font-size: 1.1em;
524
+ bottom: 0;
525
+ color: rgba(0, 136, 204, 1);
526
+ margin: 0 25px;
527
+ position: absolute;
528
+ width: 684px;
529
+ }
530
+
531
+ .graybox {
532
+ border: 1px solid rgba(233, 233, 233, 1);
533
+ border-collapse: collapse;
534
+ border-spacing: 0;
535
+ empty-cells: hide;
536
+ margin: 20px 0 36px;
537
+ text-align: left;
538
+ width: 100%;
539
+ }
540
+
541
+ .graybox p {
542
+ margin: 0;
543
+ word-break: break-word;
544
+ min-width: 50px;
545
+ }
546
+
547
+ td {
548
+ border: 1px solid rgba(233, 233, 233, 1);
549
+ padding: 5px 25px 5px 10px;
550
+ margin: 0;
551
+ vertical-align: middle;
552
+ max-width: 260px;
553
+ }
554
+
555
+ #reference .rubber-band-gap {
556
+ background: #fff;
557
+ height: 250px;
558
+ position: fixed;
559
+ width: 734px;
560
+ z-index: -1;
561
+ }