-
Notifications
You must be signed in to change notification settings - Fork 7
/
kickoff.scss
119 lines (100 loc) · 3.35 KB
/
kickoff.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
/**
* ██╗ ██╗██╗ ██████╗██╗ ██╗ ██████╗ ███████╗███████╗
* ██║ ██╔╝██║██╔════╝██║ ██╔╝██╔═══██╗██╔════╝██╔════╝
* █████╔╝ ██║██║ █████╔╝ ██║ ██║█████╗ █████╗
* ██╔═██╗ ██║██║ ██╔═██╗ ██║ ██║██╔══╝ ██╔══╝
* ██║ ██╗██║╚██████╗██║ ██╗╚██████╔╝██║ ██║
* ╚═╝ ╚═╝╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝
* By Zander Martineau & Ashley Nolan
* http://trykickoff.com
*
* Project dependencies
* =================================
* - Mixins, helpers and functions
* - Core variables
* - CSS resets
* - Typography styles
* - Components
* - Partials
* - Views
* - Global styles
* - Helper/utility classes
* - Print styles
*
* Read about our distinction between views, partials and components at
* https://trykickoff.com/learn/css.html#views-partials--components
*
* ## Yeoman
* The Yeoman generator can also be used to add new views, partials and
* components. e.g. `yo kickoff:sass:component foo` will create a new file:
* `scss/components/_component.scss` and add the `@import` statement in this
* file. Install the generator by running `npm i -g yo generator-kickoff`
*
*/
/*
* Mixins, helpers and functions
*/
@import "kickoff-utils"; // From github.com/mrmartineau/kickoff-utils.scss
@import "include-media"; // From include-media.com
/**
* Core variables
* Edit your color palette and app vars before your begin
*/
@import "color-palette";
@import "variables";
/**
* CSS resets
*/
@import "reset";
/**
* Typography styles
* See https://trykickoff.com/demos/typography.html for more info
*/
@import "typography";
/**
* Components
* See https://trykickoff.com/demos/components.html for more info
*
* Note: place all 3rd party components at the top of the list
*/
@import "kickoff-fluidVideo"; // https://github.com/mrmartineau/kickoff-fluidVideo.css
@import "kickoff-grid"; // https://github.com/TryKickoff/kickoff-grid.css - docs: trykickoff.com/docs/grid.html & demo: trykickoff.com/demos/grids.html
@import "components/forms/forms"; // https://trykickoff.com/demos/forms.html
@import "components/links";
@import "components/buttons";
@import "components/lists";
@import "components/embedded-content"; // images etc
@import "components/icons";
@import "components/skip-navigation";
@import "components/code";
@import "components/tables";
// @import "components/scrollbars";
// yo:start -- component
// yo:end -- component
/**
* Partials
*/
@import "partials/masthead"; // Example partial for masthead
@import "partials/footer"; // Example partial for footer
@import "partials/browser-upgrade"; // Styles to show an upgrade message to users on old browsers
// yo:start -- partial
// yo:end -- partial
/**
* Views
*/
//@import "views/home";
//@import "views/contact";
// yo:start -- view
// yo:end -- view
/**
* Global styles
*/
@import "global";
/**
* Helper/utility classes
*/
@import "helper-classes";
/**
* Print styles
*/
@import "views/print";