ngx-admin/src/app/@theme/styles/pure/pure.theme.scss

67 lines
1.2 KiB
SCSS
Raw Normal View History

2017-04-18 20:29:57 +03:00
@import '../components';
@import 'pure.variables';
2017-04-17 19:01:47 +03:00
2017-04-26 08:59:57 +03:00
@import '~@nga/theme/styles/themes/nga.theme.default';
2017-04-26 08:59:57 +03:00
@include nga-theme('pure') {
2017-04-26 12:25:54 +03:00
$layout-shadow: 0 4px 12px 0 rgba(33, 57, 161, 0.08);
* {
transition: all 0.1s;
}
2017-04-26 08:59:57 +03:00
a, i {
@include hover-focus-active {
color: $nga-color-secondary !important;
text-decoration: none;
}
}
nga-layout-header > nav {
2017-04-26 12:25:54 +03:00
box-shadow: $layout-shadow;
}
nga-sidebar {
z-index: 1;
2017-04-26 12:25:54 +03:00
box-shadow: $layout-shadow;
ul li {
&:first-child {
margin-top: 3rem;
}
a {
display: flex;
align-items: center;
transition: all 0.2s ease;
padding: 0.375rem 0 0.375rem 1rem;
2017-04-26 08:59:57 +03:00
color: $nga-color-inverse;
&.active {
2017-04-26 08:59:57 +03:00
color: $nga-color-inverse !important;
background: $nga-background;
font-weight: bold;
}
i {
font-size: 2rem;
margin-right: 1.25rem;
&:first-child {
display: flex;
justify-content: center;
}
}
}
}
}
nga-layout-footer > nav {
2017-04-26 12:25:54 +03:00
box-shadow: $layout-shadow;
border: none !important;
padding: 1.25rem;
}
@include custom-components-theme();
}