feat: demo version additions

This commit is contained in:
Sergey Andrievskiy 2021-08-06 18:48:35 +03:00
parent 0eec54695f
commit eee950248e
322 changed files with 23456 additions and 188 deletions

View file

@ -0,0 +1,31 @@
<ngx-landing-section-title>
Features and benefits
</ngx-landing-section-title>
<ul class="features">
<li class="feature">
<div class="number">1</div>
<div class="description">
The most popular and trusted Angular open source dashboard template is out there. Used by hundreds of thousands developers worldwide and Fortune 500 companies*
</div>
</li>
<li class="feature">
<div class="number">2</div>
<div class="description">
Over 40+ Angular Components and 60+ Usage Examples. Kick off your project and save money by using ngx-admin.
</div>
</li>
<li class="feature">
<div class="number">3</div>
<div class="description">
Already using ngx-admin and willing to switch to material theme? Material theme is backward-compatible. Check out the article describing how to do that
</div>
</li>
<li class="feature">
<div class="number">4</div>
<div class="description">
ngx-admin material works perfectly with Angular Material and Nebular. Take the best from both!
</div>
</li>
</ul>

View file

@ -0,0 +1,104 @@
@import '../../../@theme/styles/themes';
@import '~@nebular/theme/styles/global/breakpoints';
@include nb-install-component() {
$features-section-offset: 10.625rem;
display: block;
padding: 5.25rem 0;
.features {
width: calc(100% - #{$features-section-offset} * 2);
margin: -1.375rem auto 0;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
padding: 0;
.feature {
display: flex;
width: 50%;
list-style: none;
padding-right: 3.75rem;
padding-left: 0.25rem;
margin-top: 7.875rem;
&:nth-child(2n) {
padding-right: 0;
padding-left: 3.75rem;
}
}
.number {
font-family: 'Helvetica Neue Bold', sans-serif;
font-size: 8.75rem;
color: #ffffff;
text-shadow: 0 0.5rem 1rem #dae0eb;
line-height: 0.3;
}
.description {
&::before {
content: '';
display: block;
height: 0.25rem;
width: 3.5rem;
margin-bottom: 0.375rem;
background-color: nb-theme(color-active-bg);
}
font-family: nb-theme(font-secondary), sans-serif;
font-size: nb-theme(font-size-lg);
line-height: 1.5;
margin-left: 1.75rem;
}
.highlight {
font-family: nb-theme(font-main), sans-serif;
}
.active {
text-decoration: none;
font-family: nb-theme(font-main), sans-serif;
color: nb-theme(color-active-fg);
}
}
@include media-breakpoint-down(xl) {
.features {
width: 100%;
padding: 0 1rem;
margin: 0;
.number {
font-size: 6rem;
}
}
}
@include media-breakpoint-down(sm) {
padding-top: 2.625rem;
padding-bottom: 0;
.features {
flex-direction: column;
.feature {
width: 100%;
margin: 1.625rem 0 0.375rem;
padding: 0;
&:nth-child(2n) {
padding: 0;
}
}
.number {
font-size: 5rem;
line-height: 1.3;
}
}
}
}

View file

@ -0,0 +1,13 @@
import {Component} from '@angular/core';
@Component({
selector: 'ngx-material-features',
templateUrl: './material-features.component.html',
styleUrls: ['./material-features.component.scss'],
})
export class MaterialFeaturesSectionComponent {
constructor() {
}
}