feat(demo): add landing page with docs (#1951)

This commit is contained in:
Dmitry Nehaychik 2018-12-26 15:17:57 +03:00 committed by Sergey Andrievskiy
parent 67c9587b87
commit 43cc3a1556
190 changed files with 15425 additions and 21 deletions

View file

@ -0,0 +1,76 @@
/**
* @license
* Copyright Akveo. All Rights Reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
@import '../../@theme/styles/themes';
@import '~@nebular/theme/styles/global/breakpoints';
@include nb-install-component() {
$content-width: nb-theme(content-width);
.contact-us {
padding: 5rem 1rem;
h2 {
color: black;
}
}
/deep/ nb-layout .main-container {
padding-top: 3rem;
.scrollable {
padding-top: 0;
}
}
/deep/ nb-layout .layout-container .columns {
margin: 0 auto;
}
/deep/ nb-layout-header {
box-shadow: nb-theme(shadow-default);
nav {
max-width: calc(#{$content-width} - 8.125rem * 2);
margin: 0 auto;
}
}
/deep/ .layout .layout-container .content nb-layout-footer.footer {
width: 100%;
background-color: nb-theme(color-white);
box-shadow: nb-theme(shadow-default);
nav {
max-width: $content-width;
width: 100%;
margin: 0 auto;
}
}
@include media-breakpoint-down(xl) {
nb-layout-header /deep/ nav {
padding-left: 1.5rem;
padding-right: 1.5rem;
}
}
@include media-breakpoint-down(sm) {
nb-layout-header /deep/ nav {
padding-right: 0;
}
}
@include media-breakpoint-down(is) {
nb-layout-header /deep/ nav {
padding-left: 0;
padding-right: 0;
height: 3.75rem;
}
}
}