forked from tetue/tinytypo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_minitinytypo.scss
39 lines (37 loc) · 1.37 KB
/
_minitinytypo.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* ======================
* Mini Tiny Typo
* ======================
* A CSS base for web editorial content, sets-up a sensible default typography.
*
* How to use:
*
* - 1) Customize with your own settings (colors, breakpoints, etc.).
* Create a map variable called $minitinytypo BEFORE importing.
* Check _settings.scss to see all available settings.
* Each optional component can be disabled if for whatever reason you don't need it.
*
* - 2) Import this file (assuming it's located in node_modules):
* @import "~minitinytypo/minitinytypo";
*/
// Required stuff
@import
"minitinytypo/functions", // Functions and mixins
"minitinytypo/settings", // Settings
"minitinytypo/base" // Typographical basis
;
// Optional components
@import
"../../node_modules/shevy/core/shevy", // Vertical rythm library
"minitinytypo/vertical-rythm", // Vertical rythm
"minitinytypo/typo", // Various elements
"minitinytypo/headings", // Headings
"minitinytypo/links", // Hyperlinks
"minitinytypo/lists", // Lists
"minitinytypo/tables", // Tables
"minitinytypo/code", // Code
"minitinytypo/quotes", // Quotes & citations
"minitinytypo/media", // Images and Galeries
"minitinytypo/print", // Print styles
"minitinytypo/helpers" // Helpers
;