mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 02:38:27 -04:00
34 lines
810 B
SCSS
34 lines
810 B
SCSS
@charset "UTF-8";
|
|
|
|
// all variables set by Hugo's config.toml must go here
|
|
// stylelint-disable
|
|
$max-width: {{ printf "%d%s" .Site.Params.pageMaxWidth "px" }};
|
|
$base-url: "{{ strings.TrimRight "/" .Site.BaseURL }}/"; // consistent trailing forward slash
|
|
// stylelint-enable
|
|
|
|
// Variables & Functions
|
|
@import 'abstracts/settings';
|
|
@import 'abstracts/themes';
|
|
@import 'abstracts/functions';
|
|
|
|
// Global Styles
|
|
@import 'components/fonts';
|
|
@import 'components/global';
|
|
@import 'components/header';
|
|
@import 'components/footer';
|
|
@import 'components/content';
|
|
|
|
// Pages
|
|
@import 'pages/home';
|
|
@import 'pages/list';
|
|
@import 'pages/single';
|
|
@import 'pages/videos';
|
|
@import 'pages/etc';
|
|
|
|
// Responsive Mixins
|
|
@import 'abstracts/responsive';
|
|
|
|
// Miscellaneous
|
|
@import 'components/syntax';
|
|
@import 'components/animation';
|