63 lines
No EOL
2.4 KiB
Text
63 lines
No EOL
2.4 KiB
Text
// ===========================================================
|
|
// Minimal Mistakes
|
|
// By: Michael Rose
|
|
// ===========================================================/
|
|
|
|
// ROOT =======================================================
|
|
/* CSS Normalize =========================================== */
|
|
@import "normalize.less";
|
|
/* Variables and mixins ==================================== */
|
|
@import "variables.less";
|
|
/* Site wide styles (html, body, global classes) =========== */
|
|
@import "site.less";
|
|
// TYPOGRAPHY =================================================
|
|
/* Typeplate.com typographic starter pack ================== */
|
|
// @import "typeplate.less";
|
|
@import "typography.less";
|
|
/* Pygments Syntax highlighting ============================= */
|
|
@import "pygments.less";
|
|
// MIXINS =====================================================
|
|
@import "mixins.less";
|
|
@import "grid.less";
|
|
// ELEMENTS ===================================================
|
|
/* Figures, images, social media, other elements =========== */
|
|
@import "elements.less";
|
|
/* Custom set of Icomoon webfont icons ===================== */
|
|
@import "icomoon.less";
|
|
/* Standard form controls ================================== */
|
|
@import "forms.less";
|
|
// LAYOUT =====================================================
|
|
/* Page level layout styles ================================ */
|
|
@import "page.less";
|
|
// PLUGINS ===================================================
|
|
/* jQuery Magnific-Popup =================================== */
|
|
@import "magnific-popup.less";
|
|
// MEDIA QUERIES ==============================================
|
|
/* Print =================================================== */
|
|
@media print {
|
|
@import "print.less";
|
|
}
|
|
/* 480px wide ============================================== */
|
|
@media only screen and (min-width: 30em) {
|
|
@import "480.less";
|
|
}
|
|
/* 600px wide ============================================== */
|
|
@media only screen and (min-width: 37.5em) {
|
|
@import "600.less";
|
|
}
|
|
/* 768px wide ============================================== */
|
|
@media only screen and (min-width: 48em) {
|
|
@import "768.less";
|
|
}
|
|
/* 992px wide ============================================== */
|
|
@media only screen and (min-width: 62em) {
|
|
@import "992.less";
|
|
}
|
|
/* 1382px wide ============================================= */
|
|
@media only screen and (min-width: 86.375em) {
|
|
@import "1382.less";
|
|
}
|
|
/* 2x for retina displays ================================== */
|
|
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
@import "2x.less";
|
|
} |