rorvswild_theme_rdoc 0.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +29 -0
- data/README.md +27 -0
- data/lib/rdoc/discover.rb +1 -0
- data/lib/rdoc/generator/template/rorvswild/_dialog_search.rhtml +16 -0
- data/lib/rdoc/generator/template/rorvswild/_footer.rhtml +4 -0
- data/lib/rdoc/generator/template/rorvswild/_head.rhtml +25 -0
- data/lib/rdoc/generator/template/rorvswild/_navigation.rhtml +5 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_VCS_info.rhtml +19 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_classes.rhtml +48 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_constants.rhtml +10 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_extends.rhtml +15 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_in_files.rhtml +8 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_includes.rhtml +15 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_installed.rhtml +15 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_methods.rhtml +21 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_pages.rhtml +34 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_parent.rhtml +41 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_sections.rhtml +11 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_table_of_contents.rhtml +40 -0
- data/lib/rdoc/generator/template/rorvswild/_sidebar_toggle.rhtml +3 -0
- data/lib/rdoc/generator/template/rorvswild/_topbar.rhtml +12 -0
- data/lib/rdoc/generator/template/rorvswild/class.rhtml +187 -0
- data/lib/rdoc/generator/template/rorvswild/css/fonts.css +34 -0
- data/lib/rdoc/generator/template/rorvswild/css/rdoc.css +856 -0
- data/lib/rdoc/generator/template/rorvswild/fonts/Inter-Bold.woff2 +0 -0
- data/lib/rdoc/generator/template/rorvswild/fonts/Inter-Italic.woff2 +0 -0
- data/lib/rdoc/generator/template/rorvswild/fonts/Inter-Regular.woff2 +0 -0
- data/lib/rdoc/generator/template/rorvswild/fonts/MonaspaceNeon-Bold.woff2 +0 -0
- data/lib/rdoc/generator/template/rorvswild/fonts/MonaspaceNeon-Regular.woff2 +0 -0
- data/lib/rdoc/generator/template/rorvswild/index.rhtml +22 -0
- data/lib/rdoc/generator/template/rorvswild/js/darkfish.js +167 -0
- data/lib/rdoc/generator/template/rorvswild/js/search.js +110 -0
- data/lib/rdoc/generator/template/rorvswild/page.rhtml +15 -0
- data/lib/rdoc/generator/template/rorvswild/servlet_not_found.rhtml +15 -0
- data/lib/rdoc/generator/template/rorvswild/servlet_root.rhtml +63 -0
- data/lib/rdoc/generator/template/rorvswild/table_of_contents.rhtml +63 -0
- data/lib/rorvswild_theme_rdoc/patches/rdoc_before_6.13.0.rb +10 -0
- data/lib/rorvswild_theme_rdoc/patches/rdoc_before_6.8.0.rb +16 -0
- data/lib/rorvswild_theme_rdoc/version.rb +3 -0
- data/lib/rorvswild_theme_rdoc.rb +5 -0
- metadata +48 -8
@@ -0,0 +1,34 @@
|
|
1
|
+
@font-face {
|
2
|
+
font-family: "Monaspace";
|
3
|
+
font-style: normal;
|
4
|
+
font-weight: 400;
|
5
|
+
src: url('<%= asset_path('../fonts/MonaspaceNeon-Regular.woff2') %>') format('woff2');
|
6
|
+
}
|
7
|
+
|
8
|
+
@font-face {
|
9
|
+
font-family: "Monaspace";
|
10
|
+
font-style: normal;
|
11
|
+
font-weight: 700;
|
12
|
+
src: url('<%= asset_path('../fonts/MonaspaceNeon-Bold.woff2') %>') format('woff2');
|
13
|
+
}
|
14
|
+
|
15
|
+
@font-face {
|
16
|
+
font-family: "Inter";
|
17
|
+
font-style: normal;
|
18
|
+
font-weight: 400;
|
19
|
+
src: url('<%= asset_path('../fonts/Inter-Regular.woff2') %>') format('woff2');
|
20
|
+
}
|
21
|
+
|
22
|
+
@font-face {
|
23
|
+
font-family: "Inter";
|
24
|
+
font-style: italic;
|
25
|
+
font-weight: 400;
|
26
|
+
src: url('<%= asset_path('../fonts/Inter-Italic.woff2') %>') format('woff2');
|
27
|
+
}
|
28
|
+
|
29
|
+
@font-face {
|
30
|
+
font-family: "Inter";
|
31
|
+
font-style: normal;
|
32
|
+
font-weight: 700;
|
33
|
+
src: url('<%= asset_path('../fonts/Inter-Bold.woff2') %>') format('woff2');
|
34
|
+
}
|