+
+
+ The total amount of storage (SSD, HDD, & RAM) on the grid. 1 petabyte equals roughly 1 million gigabytes.
- CAPACITY
- - 24.73 PB
+
-
+
+
+ The total number of Central Processing Unit cores (compute power) available on the grid.
- CORES
- - 56,114
+
-
+
+
+ The total number of nodes on the grid. A node is a computer server 100% dedicated to the network.
- NODES
- - 2053
+
-
+
+
+ The total number of countries where at least one node is connected and operational.
- COUNTRIES
- - 52
+
@@ -71,5 +79,46 @@
p {
animation-delay: 1s; /* Delay for paragraphs */
}
+
+ /* Tooltip container */
+
+.tooltip {
+ position: relative;
+ display: inline-block;
+ border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
+}
+
+/* Tooltip text */
+.tooltip .tooltiptext {
+ font-size: 12px;
+ visibility: hidden;
+ width: 250px;
+ background-color: rgb(26 26 26 / 90%);
+ color: #fff;
+ text-align: center;
+ padding: 5px 10px;
+ border-radius: 4px;
+
+ /* Position the tooltip text - see examples below! */
+ position: absolute;
+ z-index: 1;
+ bottom: 4px;
+ /* right: -60px; */
+}
+
+/* Show the tooltip text when you mouse over the tooltip container */
+.tooltip:hover .tooltiptext {
+ visibility: visible;
+}
+
+@media (max-width: 480px) {
+ .tooltip .tooltiptext {
+ position: absolute;
+ z-index: 1;
+ bottom: -50px;
+ right: 0px !important;
+ }
+
+}
\ No newline at end of file