43 lines
634 B
CSS
43 lines
634 B
CSS
@import "bulma/css/bulma.css";
|
|
|
|
:root {
|
|
--bulma-primary-h: 220deg;
|
|
--bulma-primary-s: 60%;
|
|
--bulma-primary-l: 50%;
|
|
}
|
|
|
|
.navbar {
|
|
--bulma-navbar-dropdown-border-color: var(--bulma-primary);
|
|
}
|
|
|
|
.overflow-y {
|
|
overflow-y: auto;
|
|
max-height: 30vh;
|
|
}
|
|
|
|
.network-controls {
|
|
z-index: 2;
|
|
position: absolute;
|
|
margin: 1rem;
|
|
}
|
|
|
|
.tooltip {
|
|
position: relative;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Tooltip text */
|
|
.tooltiptext {
|
|
visibility: hidden;
|
|
width: 10rem;
|
|
padding: 0.25rem;
|
|
position: absolute;
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Show the tooltip text on hover */
|
|
.tooltip:hover .tooltiptext {
|
|
visibility: visible;
|
|
}
|