mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
119 lines
2.3 KiB
SCSS
119 lines
2.3 KiB
SCSS
/**
|
|
* @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;
|
|
}
|
|
}
|
|
|
|
nb-layout-header {
|
|
background-color: nb-theme(header-background-color);
|
|
}
|
|
|
|
::ng-deep nb-layout .main-container {
|
|
padding-top: 3rem;
|
|
|
|
.scrollable {
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
::ng-deep nb-layout .layout-container .columns {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
::ng-deep nb-layout-header {
|
|
box-shadow: nb-theme(shadow-default);
|
|
background: nb-theme(header-bg);
|
|
ngx-landing-header {
|
|
max-width: calc(#{$content-width} - 8.125rem * 2);
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
|
|
::ng-deep .layout .layout-container .content nb-layout-footer.footer {
|
|
width: 100%;
|
|
background-color: nb-theme(color-white);
|
|
box-shadow: nb-theme(shadow-default);
|
|
|
|
ngx-landing-footer {
|
|
max-width: $content-width;
|
|
justify-content: space-evenly;
|
|
margin: 0 auto;
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
font-family: nb-theme(font-main), sans-serif;
|
|
border-radius: 3px;
|
|
border: none;
|
|
background-color: nb-theme(color-active-fg);
|
|
color: #ffffff;
|
|
padding: 1rem;
|
|
margin-right: 6%!important;
|
|
box-shadow: nb-theme(shadow-btn);
|
|
cursor: pointer;
|
|
text-transform: uppercase;
|
|
|
|
&:hover {
|
|
box-shadow: nb-theme(shadow-hover-green-btn);
|
|
}
|
|
|
|
&:active {
|
|
box-shadow: nb-theme(shadow-active-green-btn);
|
|
}
|
|
|
|
&.btn-download {
|
|
margin-left: 1em;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(xl) {
|
|
nb-layout-header ::ng-deep nav {
|
|
padding-left: 1.5rem;
|
|
padding-right: 1.5rem;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
nb-layout-header ::ng-deep nav {
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(is) {
|
|
nb-layout-header ::ng-deep nav {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
height: 3.75rem;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
.btn {
|
|
font-size: 0.7rem;
|
|
padding-bottom: 1rem;
|
|
padding-top: 1rem;
|
|
margin: 0!important;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(md) {
|
|
.btn {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|