feat(aio): add "archive" and "next" color themes

This commit is contained in:
Peter Bacon Darwin 2017-07-24 22:44:55 +01:00 committed by Victor Berchet
parent 42ef1be75c
commit 340837aa46
2 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,50 @@
aio-shell.mode-archive {
.mat-toolbar.mat-primary, footer {
background: linear-gradient(145deg,#263238,#78909C);
}
.vertical-menu-item {
&.selected, &:hover {
color: #263238;
}
}
.toc-inner ul.toc-list li.active a {
color: #263238;
&:before {
background-color: #263238;
}
}
.toc-inner ul.toc-list li:hover a {
color: #263238;
}
}
aio-shell.mode-next {
.mat-toolbar.mat-primary, footer {
background: linear-gradient(145deg,#DD0031,#C3002F);
}
.vertical-menu-item {
&.selected, &:hover {
color: #DD0031;
}
}
.toc-inner ul.toc-list li.active a {
color: #DD0031;
&:before {
background-color: #DD0031;
}
}
.toc-inner ul.toc-list li:hover a {
color: #DD0031;
}
}

View File

@ -29,3 +29,4 @@
@import 'subsection';
@import 'toc';
@import 'select-menu';
@import 'deploy-theme';