vue-trip
Version:
Vue Trip is a lightweight and customizable plug-in that allows an easy and efficient way to guide your users in your application
67 lines (58 loc) • 1.1 kB
CSS
.vue-trip-card {
display: flex;
padding: 24px;
z-index: 9999;
flex-wrap: wrap;
max-width: 420px;
overflow: hidden;
position: absolute;
border-radius: 6px;
}
.vue-trip-card.light {
background: #FFFFFF;
box-shadow: 0 0px 32px rgba(0, 0, 0, 0.1);
}
.vue-trip-card.dark {
background: #313131;
box-shadow: 0 0px 32px rgba(0, 0, 0, 0.3);
}
.vue-trip-card .label {
width: 100%;
display: flex;
font-weight: 400;
font-size: 1.2rem;
text-align: center;
align-items: center;
justify-content: center;
}
.vue-trip-card.light .label {
color: #5E5E5E;
}
.vue-trip-card.dark .label {
color: #ABABAB;
}
.vue-trip-card .content {
width: 100%;
display: flex;
padding: 20px 0;
color: #ABABAB;
font-size: 0.9rem;
text-align: center;
align-items: center;
justify-content: center;
}
.vue-trip-card.light .content {
color: #ABABAB;
}
.vue-trip-card.dark .content {
color: #FFFFFF;
}
.vue-trip-card .footer {
width: 100%;
display: flex;
padding: 2px 0;
flex-wrap: wrap;
text-align: center;
align-items: center;
justify-content: center;
}