mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
59 lines
1.2 KiB
SCSS
59 lines
1.2 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() {
|
|
.btn {
|
|
font-family: nb-theme(font-main), sans-serif;
|
|
border-radius: 3px;
|
|
border: none;
|
|
background: #ffffff;
|
|
color: #000000;
|
|
padding: 1.125rem 0;
|
|
box-shadow: nb-theme(shadow-default);
|
|
cursor: pointer;
|
|
text-transform: uppercase;
|
|
|
|
&.btn-download {
|
|
margin-left: 1em;
|
|
color: #ffffff;
|
|
background-color: nb-theme(color-active-fg);
|
|
box-shadow: nb-theme(shadow-btn);
|
|
|
|
&:hover {
|
|
box-shadow: nb-theme(shadow-hover-green-btn);
|
|
}
|
|
|
|
&:active {
|
|
box-shadow: nb-theme(shadow-active-green-btn);
|
|
}
|
|
}
|
|
|
|
&.btn-download {
|
|
margin-left: 0;
|
|
margin-top: 1rem;
|
|
width: 100%;
|
|
}
|
|
|
|
&:hover {
|
|
box-shadow: nb-theme(shadow-hover-btn);
|
|
}
|
|
|
|
&:active {
|
|
box-shadow: nb-theme(shadow-active-btn);
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(md) {
|
|
.btn {
|
|
font-size: 0.7rem;
|
|
padding-bottom: 1rem;
|
|
padding-top: 1rem;
|
|
}
|
|
}
|
|
}
|