feat: VivesPOS landing on Winter CMS 1.2 — theme + plugin + Dockerfile
Some checks are pending
Module sub-split / Sub-split (push) Waiting to run
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
This commit is contained in:
89
themes/demo/assets/less/elements/navbar.less
Normal file
89
themes/demo/assets/less/elements/navbar.less
Normal file
@@ -0,0 +1,89 @@
|
||||
.navbar-header .navbar-brand {
|
||||
padding-left: 55px;
|
||||
background-image: url('../images/winter.png');
|
||||
background-size: auto 60%;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 7px 50%;
|
||||
transition: color 0.2s ease 0.05s;
|
||||
color: #ccc;
|
||||
&:hover {
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-nav li.separator {
|
||||
width: 1px;
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
height: 30px;
|
||||
margin: 20px 10px 0 10px;
|
||||
}
|
||||
|
||||
.navbar-autohide {
|
||||
transition: transform .5s;
|
||||
}
|
||||
|
||||
.navbar-autohide.is-hidden {
|
||||
transform: translateY(-(@navbar-height + 2px));
|
||||
}
|
||||
|
||||
.navbar-collapse:not(.in):not(.collapsing) .navbar-nav li {
|
||||
> a {
|
||||
transition: color 0.2s ease 0.05s;
|
||||
}
|
||||
|
||||
> a:after {
|
||||
position: absolute;
|
||||
height: 4px;
|
||||
bottom: -1px;
|
||||
content: '';
|
||||
border-radius: 4px;
|
||||
z-index: 5;
|
||||
width: 0;
|
||||
left: 50%;
|
||||
transition: all 0.2s ease 0.05s;
|
||||
}
|
||||
|
||||
&.active > a:after {
|
||||
width: 100% !important;
|
||||
left: 0 !important;
|
||||
}
|
||||
|
||||
&:hover > a:after {
|
||||
width: 100%;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
&.active > a {
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-inverse .navbar-collapse:not(.in):not(.collapsing) .navbar-nav li {
|
||||
&.active > a:after,
|
||||
> a:hover:after {
|
||||
background: @navbar-inverse-stripe-color-active;
|
||||
}
|
||||
|
||||
&.active > a:hover:after {
|
||||
background: @navbar-inverse-stripe-color-active;
|
||||
}
|
||||
|
||||
> a:hover:after {
|
||||
background: @navbar-inverse-stripe-color-hover;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-default .navbar-collapse:not(.in):not(.collapsing) .navbar-nav li {
|
||||
&.active > a:after,
|
||||
> a:hover:after {
|
||||
background: @navbar-default-stripe-color-active;
|
||||
}
|
||||
|
||||
&.active > a:hover:after {
|
||||
background: @navbar-default-stripe-color-active;
|
||||
}
|
||||
|
||||
> a:hover:after {
|
||||
background: @navbar-default-stripe-color-hover;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user