summaryrefslogtreecommitdiffhomepage
path: root/html/webbox.css
diff options
context:
space:
mode:
Diffstat (limited to 'html/webbox.css')
-rw-r--r--html/webbox.css34
1 files changed, 34 insertions, 0 deletions
diff --git a/html/webbox.css b/html/webbox.css
index 67d87b4..42761a5 100644
--- a/html/webbox.css
+++ b/html/webbox.css
@@ -209,3 +209,37 @@ table.list td.name {
}
}
+/* Tooltip container */
+.tooltip {
+ position: relative;
+ display: inline-block;
+}
+
+/* Tooltip text */
+.tooltip .tooltiptext {
+ visibility: hidden;
+ background-color: #FFFFDD;
+ color: #000000;
+ text-align: center;
+ padding: 5px;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #000000;
+ position: fixed;
+ right: 20px;
+ bottom: 20px;
+ z-index: 1;
+}
+
+/* Show the tooltip text when you mouse over the tooltip container */
+.tooltip:hover .tooltiptext {
+ visibility: visible;
+}
+
+.fullwidth {
+ width: 100%;
+ border: 0;
+ margin: 0;
+ padding: 0;
+ border-collapse: collapse;
+}