53 lines
1.1 KiB
Stylus
53 lines
1.1 KiB
Stylus
// CSS Style Guide: https://codeguide.co/#css
|
|
|
|
// https://stylus-lang.com/docs/keyframes.html
|
|
vendors = official;
|
|
|
|
$scheme = hexo-config('scheme') ? hexo-config('scheme') : 'Muse';
|
|
|
|
|
|
// Variables Layer
|
|
// --------------------------------------------------
|
|
@import '_variables/base';
|
|
@import '_variables/' + $scheme;
|
|
for $inject_variable in hexo-config('injects.variable')
|
|
@import $inject_variable;
|
|
|
|
// Mixins Layer
|
|
// --------------------------------------------------
|
|
@import '_mixins';
|
|
for $inject_mixin in hexo-config('injects.mixin')
|
|
@import $inject_mixin;
|
|
|
|
// Dark mode colors
|
|
// --------------------------------------------------
|
|
@import '_colors';
|
|
|
|
// Common Layer
|
|
// --------------------------------------------------
|
|
|
|
// Scaffolding
|
|
@import '_common/scaffolding';
|
|
|
|
// Layout
|
|
@import '_common/outline';
|
|
|
|
// Components
|
|
@import '_common/components';
|
|
|
|
|
|
// Schemes Layer
|
|
// --------------------------------------------------
|
|
@import '_schemes/' + $scheme;
|
|
|
|
|
|
// Custom Layer
|
|
// --------------------------------------------------
|
|
for $inject_style in hexo-config('injects.style')
|
|
@import $inject_style;
|
|
|
|
// Custom Styles
|
|
.site-author-image {
|
|
border-radius: 100%;
|
|
}
|