Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
- Base: wintercms/winter branch 1.2 (full framework) - Theme vivespos: Canvas 7 + Bootstrap 5 CDN, custom CSS - Layout: deferred GTM/GA4 tracking, JSON-LD SoftwareApplication - Partials: hero (offline-first), features, modes (offline/nube toggle), screenshots, pricing (3 planes), comparison, FAQ, CTA - Plugin VivesPOS.Site with ContactForm - Dockerfile: PHP 8.2 Apache, port 80, healthcheck - Added winter/wn-pages, blog, sitemap, seo plugins - Active theme set to vivespos
48 lines
801 B
Plaintext
48 lines
801 B
Plaintext
.flyout-container {
|
|
> .flyout {
|
|
overflow: hidden;
|
|
width: 0;
|
|
left: 0!important;
|
|
.transition(width 0.1s);
|
|
}
|
|
}
|
|
|
|
.flyout-overlay {
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
z-index: 5000;
|
|
position: absolute;
|
|
background-color: rgba(0,0,0,0);
|
|
.transition(background-color 0.3s);
|
|
}
|
|
|
|
.flyout-toggle {
|
|
position: absolute;
|
|
top: 20px;
|
|
left: 0;
|
|
width: 23px;
|
|
height: 25px;
|
|
background: #2b3e50;
|
|
cursor: pointer;
|
|
.border-right-radius(4px);
|
|
color: #bdc3c7;
|
|
font-size: 10px;
|
|
|
|
i {
|
|
margin: 7px 0 0 6px;
|
|
display: inline-block;
|
|
}
|
|
|
|
&:hover i {
|
|
color: #ffffff;
|
|
}
|
|
}
|
|
|
|
body.flyout-visible {
|
|
overflow: hidden;
|
|
|
|
.flyout-overlay {
|
|
background-color: rgba(0,0,0,0.3);
|
|
}
|
|
} |