Find out more at http://trykickoff.com/learn/css.html
The purpose of this repo is to separate the main CSS framework from the main kickoff repo. This is so that the CSS can be included into any project regardless of project type i.e. a React/Angular/Vue/Drupal/etc/etc project.
Kickoff's CSS framework is based on Sass, and this repo does not deal with compilation, only the source files.
npm install -S @kickoff/scss
# or
yarn add @kickoff/scss
This might be useful if you want to update some of the 3rd party Sass dependencies (like our utils or include-media) and not Kickoff's scss source.
npm install -S @kickoff/scss kickoff-utils.scss kickoff-grid.css kickoff-fluidVideo.css include-media normalize.css
# or
yarn add @kickoff/scss kickoff-utils.scss kickoff-grid.css kickoff-fluidVideo.css include-media normalize.css
Once installed, copy the node_modules/@kickoff/scss
directory to your main project directory
- kickoff-utils.scss - Kickoff's Sass utility functions and mixins
- kickoff-grid.css - our Sass grid framework
- kickoff-fluidVideo.css - Simple fluid-width videos using only CSS
- include-media is used for improved media queries, see below for more about this
- normalize.css - Normalize.css is now imported using a Sass port of the library
It’s important to become familiar with all of these files so you can make full use of the framework.
All roads lead to here. This is the base SCSS file and is the hook by which Grunt compiles the projects CSS. kickoff.scss
is compiled to /assets/dist/css/kickoff.css
and is used on Internet Explorer 9+, Chrome, Safari, Firefox and Opera.
This file contains all styles that do not obviously fit within any other scss partial. For example, we include our body's background styles and the main .l-container
styles. Try not to fill this up with all your styles though. Your Sass should be written in a modular way, and so the majority of your Sass should be organised within the components
, partials
or views
directories.
This file contains a bunch of helper styles, like .clearfix
(for clearing floats), .ir
for using background image replacement, .is-hidden
etc.
We take full advantage of Sass' variables and there are two key files that should be edited at the start of development on any new Kickoff project. These are scss/_variables.scss
and scss/_color-palette.scss
.
This is where you define your global Sass variables. Here you can define your:
- Global typographic styles — including font choices and typographic scale.
- Responsive breakpoints — we try not to target specific devices or device types with these variables. Instead they should be set with the design in mind. The
$breakpoints
sass map, contains our default breakpoints, these are used by the grid and can be referenced by using thebp(mid)
sass function. See how to use the breakpoints when using our mixins, below.
Text colour, link colours, background colour, form fields and various component colours can all be set in this file.
.l-container
: found in/assets/src/scss/_global.scss
, this class controls the main content 'column' on your site..btn
: found in/assets/src/scss/components/_buttons.scss
for buttons. See the possible modifiers on the components demo page- Anchor links (
a
) are styled in/assets/src/scss/components/_links.scss
.l-mb0
or.l-mt0
: for zeroing anymargin-bottom/top
values. See also the other helper classes in/assets/src/scss/_helper-classes.scss
.clearfix
: for clearing floats. See also the other helper classes in/assets/src/scss/_helper-classes.scss
.h1
,.h2
,.h3
,.h4
: font-sizing helper classes for headings
Kickoff does not enforce a mobile first approach to CSS, but it is encouraged and it takes a fairly unique approach to responsive sites.
Kickoff v8.0.0 introduced a new mixin library to handle media-queries. This library, include-media allows for a more simple syntax and better control of media-queries. There is just one mixin call that takes a few different options:
// The keywords below are from the $breakpoints map in _variables.scss
// Equivalent to min-width query
@include media(">mid") {
width: 50%;
}
// Equivalent to min-width and max-width query
@include media(">narrow", "<=wide") {
width: 50%;
}
// Equivalent to min-width
@include media(">200px") {
width: 50%;
}
Rather than having all of your media queries for different widths stored in separate scss files or placed at the bottom of each SCSS partial, we suggest making use of Sass' nested media queries.
This means that all styles related to an element are together, for example:
a {
padding: 1em;
@include media('>800') {
padding: 2em;
}
}
Kickoff uses a bespoke naming scheme for classnames, inspired loosely by the BEM naming scheme.
This obviously isn’t compulsory to use in your own Kickoff projects, but is documented here as guidance, and is what we use across our Kickoff projects.
/* Descriptors use camel-casing if more than one word: e.g. twoWords */
.form {
...
}
/* ========= */
/* Child elements use single hyphens: - */
.form-controlGroup {
...
}
/* ========= */
/* Modifier element use a double hyphen: -- */
.form {
...
}
.form--horizontal {
...
}
/* ========= */
/* Element state: .is- or .has- */
.is-active {
...
}
/* ========= */
/* Sass variables use dash-case */
a {
color: $color-primary;
}
We use a similar philosophy to Atomic Design but instead of atoms, molecules, organisms & templates we use elements, components, partials & views; below is out distinction.
Elements are single elements.
Components are small, self-contained files that concern one type of thing, that crucially, are reusable. For example, lists, forms etc. We have included quite a few in the components directory: buttons & forms for example, but you should add your components there too. Please browse through the included components to see what Kickoff offers, or see some of them in action in our demo area.
Partials are partial parts of a page, like a masthead, sidebar or footer. They typically have multiple 'components' inside them and can also be reusable. The partials directory should contain style partials, like _footer.scss
or _masthead.scss
.
Used for entire views (or pages). Usually these files consist of small tweaks that only concern a particular view. The views directory should contain view-specific styles that don't fit into their own module, think _home.scss
or _recipe-page.scss
for example. N.b. We recommend that it is better to make reusable components rather than styling based on a view. Therefore, the styles in this folder should be minimal.
We make use of a lot of these, but they are not stored within the repo. Please visit github.com/TryKickoff/kickoff-utils.scss to find out more about them. If you need your own, please create a relevant functions
or mixins
directory for whichever you need.
As with anything Kickoff-related, it can be tricky to upgrade because this dependency shouldn't be treated like standard dependencies, it should be treated as another part of your codebase. With that in mind, updating to a newer version of this should be done with great care because local changes will be overwritten by the new update. Remember that after each update, you will need to copy these files into your project directory.