li { margin: 0 0 0 2em; }
.feature-name { font-family: sans-serif; font-weight: bold; }
.feature-name a { color: black; }
+
+.tooltip {
+ position: relative;
+ display: inline-block;
+ border-bottom: 1px dotted black;
+}
+
+.tooltip .tooltiptext {
+ visibility: hidden;
+ width: 120px;
+ top: 100%%;
+ left: 50%%;
+ margin-left: -60px;
+ background-color: black;
+ color: #fff;
+ text-align: center;
+ padding: 5px 0;
+ border-radius: 6px;
+
+ position: absolute;
+ z-index: 1;
+}
+
+.list .tooltip:hover .tooltiptext {
+ visibility: visible;
+}
-->
</style>