forked from sweetroll/inuit.css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_defaults.scss
130 lines (103 loc) · 3.32 KB
/
_defaults.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/*------------------------------------*\
$DEFAULTS
\*------------------------------------*/
/**
* inuit.css’ default variables. Redefine these in your `_vars.scss` file (found
* in the inuit.css-web-template) to override them.
*/
/*------------------------------------*\
$DEBUG
\*------------------------------------*/
/**
* Debug mode will visually highlight any potential markup/accessibility quirks
* in the browser. Set to `true` or `false`.
*/
$debug-mode: false!default;
/*------------------------------------*\
$BASE
\*------------------------------------*/
/**
* Base stuff
*/
$base-font-size: 16px!default;
$base-line-height: 24px!default;
/**
* Base font-family.
*/
$base-font-family: sans-serif!default;
/**
* Default colour for objects’ borders etc.
*/
$base-ui-color: #ccc!default;
/*------------------------------------*\
$RESPONSIVE
\*------------------------------------*/
/**
* Using `inline-block` means that the grid items need their whitespace removing
* in order for them to work correctly. Set the following to true if you are
* going to achieve this by manually removing/commenting out any whitespace in
* your HTML yourself.
*
* Setting this to false invokes a hack which cannot always be guaranteed,
* please see the following for more detail:
*
* github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
* github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
*/
$use-markup-fix: true !default;
/**
* Define your breakpoints. The first value is the prefix that shall be used for
* your classes (e.g. `.palm--one-half`), the second value is the media query
* that the breakpoint fires at.
*/
$breakpoints: (
'palm' '(max-width: 480px)',
'lap' '(min-width: 481px) and (max-width: 1023px)',
'portable' '(max-width: 1023px)',
'lap-and-up' '(min-width: 481px)',
'desk' '(min-width: 1024px)',
'desk-wide' '(min-width: 1200px)'
) !default;
/*------------------------------------*\
$BRAND
\*------------------------------------*/
/**
* Brand stuff
*/
$brand-color: #4a8ec2!default;
$brand-face: "Helvetica Neue", sans-serif!default;
/**
* How big would you like round corners to be by default?
*/
$brand-round: 4px!default;
/*------------------------------------*\
$OBJECTS AND ABSTRACTIONS
\*------------------------------------*/
/**
* Which objects and abstractions would you like to use?
*/
$use-grids: true!default;
$use-columns: true!default;
$use-nav: true!default;
$use-pagination: true!default;
$use-breadcrumb: true!default;
$use-media: true!default;
$use-flag: true!default;
$use-island: true!default;
$use-block-list: true!default;
$use-split: true!default;
$use-lozenges: true!default;
$use-rules: true!default;
$use-stats: true!default;
$use-greybox: true!default;
/*------------------------------------*\
$FRAMEWORK
\*------------------------------------*/
/**
* inuit.css will work these next ones out for use within the framework.
*
* Assign our `$base-line-height` to a new spacing var for more transparency.
*/
$base-spacing-unit: $base-line-height!default;
$half-spacing-unit: $base-spacing-unit / 2!default;
$line-height-ratio: $base-line-height / $base-font-size;