2017-04-18 20:29:57 +03:00
|
|
|
@import '../components';
|
2017-04-21 17:23:44 +03:00
|
|
|
@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-21 17:23:44 +03:00
|
|
|
|
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;
|
|
|
|
|
}
|
2017-04-21 17:23:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nga-layout-header > nav {
|
2017-04-26 12:25:54 +03:00
|
|
|
box-shadow: $layout-shadow;
|
2017-04-21 17:23:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nga-sidebar {
|
|
|
|
|
z-index: 1;
|
2017-04-26 12:25:54 +03:00
|
|
|
box-shadow: $layout-shadow;
|
2017-04-21 17:23:44 +03:00
|
|
|
|
|
|
|
|
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;
|
2017-04-21 17:23:44 +03:00
|
|
|
|
|
|
|
|
&.active {
|
2017-04-26 08:59:57 +03:00
|
|
|
color: $nga-color-inverse !important;
|
|
|
|
|
background: $nga-background;
|
2017-04-21 17:23:44 +03:00
|
|
|
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;
|
2017-04-21 17:23:44 +03:00
|
|
|
border: none !important;
|
|
|
|
|
padding: 1.25rem;
|
|
|
|
|
}
|
|
|
|
|
@include custom-components-theme();
|
|
|
|
|
}
|