diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2023-02-13 19:43:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2023-02-13 19:43:51 +0000 |
commit | f73f2356820468344757dbb9d7f3ec73ece7bf66 (patch) | |
tree | cc4d1f8559ab8d0e73f4efed80c1f5c866501a12 /web/_static/local | |
parent | Reworking container version command in python. (diff) | |
download | compute-tools-next+web.tar.xz compute-tools-next+web.zip |
Updating.next+web
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to 'web/_static/local')
-rw-r--r-- | web/_static/local/font.css | 28 | ||||
-rw-r--r-- | web/_static/local/icon.css | 5 | ||||
-rw-r--r-- | web/_static/local/table.js | 4 |
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"); +}); |