27 lines
611 B
SCSS
27 lines
611 B
SCSS
@import 'colors';
|
|
@import 'mixins';
|
|
|
|
// Tell the user that Baukula only works with the official Dracula theme
|
|
body:not(.theme-dracula) {
|
|
.site-header-logo::after {
|
|
content: ' Baukula won\'t activate unless you use the official Dracula theme!';
|
|
}
|
|
}
|
|
|
|
// Apply only when using the official Dracula theme
|
|
body.theme-dracula {
|
|
background-color: $background;
|
|
@import 'blog';
|
|
@import 'buttons';
|
|
@import 'comments';
|
|
@import 'docs';
|
|
@import 'dropdown';
|
|
@import 'extended';
|
|
@import 'html';
|
|
@import 'misc';
|
|
@import 'settings';
|
|
@import 'tabs';
|
|
@import 'topic-listing';
|
|
@import 'topics';
|
|
}
|