stockshark-tour
Version:
VueJS Tour is a lightweight, simple and customizable tour plugin. It provides a quick and easy way to guide your users through your application.
93 lines (82 loc) • 1.48 kB
CSS
[data-hidden] {
display: none;
}
#vjt-backdrop {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 9998;
}
#vjt-tooltip {
background-color: #333;
color: #fff;
padding: 0.5rem;
border-radius: 4px;
font-size: 13px;
z-index: 9999;
max-width: 300px;
position: absolute;
}
#vjt-tooltip[data-arrow^=t] #vjt-arrow {
bottom: -4px;
right: 50%;
}
#vjt-tooltip[data-arrow^=b] #vjt-arrow {
top: -4px;
right: 50%;
}
#vjt-tooltip[data-arrow^=l] #vjt-arrow {
right: -4px;
top: 50%;
}
#vjt-tooltip[data-arrow^=r] #vjt-arrow {
left: -4px;
top: 50%;
}
#vjt-arrow {
width: 8px;
height: 8px;
position: absolute;
z-index: -1;
}
#vjt-arrow::before {
content: "";
width: 8px;
height: 8px;
background-color: #333;
transform: rotate(45deg);
position: absolute;
}
.vjt-highlight {
outline: 2px solid #0ea5e9;
outline-offset: 4px;
border-radius: 1px;
position: relative;
}
.vjt-actions {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 0.5rem;
gap: 0.5rem;
}
.vjt-actions button {
width: 100%;
padding: 0.25rem 1rem;
border: 1px solid #fff;
border-radius: 4px;
background-color: transparent;
color: #fff;
font-size: 13px;
font-weight: 500;
transition: all 0.2s ease-in-out;
cursor: pointer;
}
.vjt-actions button:hover {
background-color: #000;
color: #fff;
}
/*# sourceMappingURL=style.css.map */