summaryrefslogtreecommitdiffstats
path: root/web/_static/local
diff options
context:
space:
mode:
Diffstat (limited to 'web/_static/local')
-rw-r--r--web/_static/local/font.css28
-rw-r--r--web/_static/local/icon.css5
-rw-r--r--web/_static/local/table.js4
3 files changed, 37 insertions, 0 deletions
diff --git a/web/_static/local/font.css b/web/_static/local/font.css
new file mode 100644
index 0000000..50ecf90
--- /dev/null
+++ b/web/_static/local/font.css
@@ -0,0 +1,28 @@
+a.a-hover-red {
+ color: inherit;
+}
+
+a.a-hover-red:hover {
+ color: #cc0000 !important;
+ text-decoration: none;
+}
+
+html,
+body,
+.tooltip,
+.popover {
+ font-family: 'DejaVuSans';
+}
+
+pre,
+code,
+kbd,
+samp,
+.text-monospace {
+ font-family: 'DejaVuSansMono';
+}
+
+body {
+ min-height: 75rem;
+ padding-top: 4.5rem;
+}
diff --git a/web/_static/local/icon.css b/web/_static/local/icon.css
new file mode 100644
index 0000000..d85e5ad
--- /dev/null
+++ b/web/_static/local/icon.css
@@ -0,0 +1,5 @@
+.feature-icon {
+ width: 4rem;
+ height: 4rem;
+ border-radius: .75rem;
+}
diff --git a/web/_static/local/table.js b/web/_static/local/table.js
new file mode 100644
index 0000000..469f3b7
--- /dev/null
+++ b/web/_static/local/table.js
@@ -0,0 +1,4 @@
+$(function() {
+ $("thead").addClass("thead-dark");
+ $("table").addClass("table table-striped table-bordered table-hover table-sm table-responsive");
+});