cyd0806 commited on
Commit
bef2526
·
verified ·
1 Parent(s): 4d3824f

Upload apex-master/docs/source/_templates/layout.html with huggingface_hub

Browse files
apex-master/docs/source/_templates/layout.html ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {% extends "!layout.html" %}
2
+ {% block sidebartitle %} {{ super() }}
3
+
4
+ <style>
5
+ /* Sidebar header (and topbar for mobile) */
6
+ .wy-side-nav-search, .wy-nav-top {
7
+ background: #76b900;
8
+ }
9
+
10
+ .wy-side-nav-search a:link, .wy-nav-top a:link {
11
+ color: #fff;
12
+ }
13
+ .wy-side-nav-search a:visited, .wy-nav-top a:visited {
14
+ color: #fff;
15
+ }
16
+ .wy-side-nav-search a:hover, .wy-nav-top a:hover {
17
+ color: #fff;
18
+ }
19
+
20
+ .wy-menu-vertical a:link, .wy-menu-vertical a:visited {
21
+ color: #d9d9d9
22
+ }
23
+
24
+ .wy-menu-vertical a:active {
25
+ background-color: #76b900
26
+ }
27
+
28
+ .wy-side-nav-search>div.version {
29
+ color: rgba(0, 0, 0, 0.3)
30
+ }
31
+ </style>
32
+ {% endblock %}
33
+
34
+ {% block footer %} {{ super() }}
35
+
36
+ <style>
37
+ a:link, a:visited {
38
+ color: #76b900;
39
+ }
40
+
41
+ a:hover {
42
+ color: #8c0;
43
+ }
44
+
45
+ .rst-content dl:not(.docutils) dt {
46
+ background: rgba(118, 185, 0, 0.1);
47
+ color: rgba(59,93,0,1);
48
+ border-top: solid 3px rgba(59,93,0,1);
49
+ }
50
+ </style>
51
+ {% endblock %}