-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathhacks.html
More file actions
51 lines (44 loc) · 1.08 KB
/
hacks.html
File metadata and controls
51 lines (44 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<style type="text/css">
/* Adjust logo alignment */
img.logo {
margin-left: -20px;
}
/* Capitalize "Quick Search" */
div#searchbox h3 {
text-transform: capitalize;
}
/* Wider document for better code visibility */
div.document {
max-width: 1008px;
margin: auto; /* Center the document */
}
/* Improved padding around code blocks */
div.highlight pre {
padding: 11px 14px;
}
/* Responsive adjustments */
@media screen and (max-width: 1008px) {
div.sphinxsidebar {
display: none;
}
div.document {
width: 100%;
}
div.highlight pre {
margin-right: -30px;
}
}
</style>
<!-- Analytics tracking -->
<script type="text/javascript">
(function() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '5a956183ba4ae36e18000033');
t.src = 'https://d2fuc4clr7gvcn.cloudfront.net/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>