diff --git a/v2/pricing.html b/v2/pricing.html index a310a89b..d9424088 100644 --- a/v2/pricing.html +++ b/v2/pricing.html @@ -102,6 +102,49 @@ label { font-size: 16px; margin-bottom: 10px; } + +.tooltip { + position: relative; + display: inline-block; + border-bottom: 1px dotted black; + font-weight: bold; +} + +.tooltip .tooltiptext { + visibility: hidden; + font-weight: normal; + width: 450px; + background-color: #555; + color: #fff; + text-align: center; + border-radius: 6px; + padding: 5px 0; + position: absolute; + z-index: 1; + bottom: 125%; + left: 50%; + margin-left: -60px; + opacity: 0; + transition: opacity 0.3s; + text-align: left; + padding: 6px 12px; +} + +.tooltip .tooltiptext::after { + content: ""; + position: absolute; + top: 100%; + left: 50%; + margin-left: -5px; + border-width: 5px; + border-style: solid; + border-color: #555 transparent transparent transparent; +} + +.tooltip:hover .tooltiptext { + visibility: visible; + opacity: 1; +}
@@ -291,7 +334,7 @@ label {