Flystyles
Installation
The project can be installed via npm or yarn.
npm
npm install flystyles
yarn
yarn add flystyles
Build commands
A compiled version of the CSS is provided in /dist folder.
To compile a new version:
Install dependencies:
npm install
Compile CSS:
npm run build
Documentation
All components in flysyles are documented in /docs folder.
Installation
Docs are a static website created in /docs that will need to recompile SCSS when it is changed,
using next command:
npm run css:docsDeploy
For the moment, the project is hosted on GitHub Pages peertransfer.github.io/flystyles. The project is deployed whenever you push to master automatically.
Create a new version
To create a new version you have to use the npm command version. It will generate the new dist files, add a release tag and push to master.
npm version [<newversion> | major | minor | patch | premajor | preminor | prepatch | prerelease | from-git]
Architecture
src/
|
|- styles
|
| – mixins/
| |– _responsive.scss # Responsive mixins
| |– _typography.scss # Typography mixins
| … # Etc
|
| – base/
| |– _normalize.scss # Reset/normalize
| |– _typography.scss # Typography rules
| |- _animations.scss # CSS Animations
| … # Etc.
|
| – utilities/
| |– _spacing.scss # Margins, paddings, ...
| |– _responsive.scss # Brakpoints visibility classes
| … # Etc.
|
|- components/
| |– Button/_Button.scss # Buttons
| |– Grid/_Grid.scss # Grid
| … # Etc.
|
|- _config.scss # Flystyles variables
|– main.scss # Main Sass file
Files follow the same naming conventions described above: they are hyphen-delimited.
BASE FOLDER
The base/ folder holds what we might call the boilerplate code for the project. In there, you might find the reset file, some typographic rules, and probably a stylesheet defining some standard styles for commonly used HTML elements (that I like to call _base.scss).
_base.scss
_reset.scss
_typography.scss
_animations.scss
COMPONENTS FOLDER
For smaller components, there is the components/ folder. There are usually a lot of files in components/ since the whole site/application should be mostly composed of tiny modules.
_media.scss
_carousel.scss
_thumbnails.scss
MIXINS FOLDER
The mixins/ folder gathers all Sass tools and helpers used across the project. Every global variable, function, mixin and placeholder should be put in here. This files dont’s produce any output.
_responsive.scss
_typography.scss
THEMES FOLDER
Custom theme specific styles.
_theme.scss
_admin.scss
UTILITIES FOLDER
Utilities are low-level. They have a very narrow scope and may end up being used frequently, due to their separation from the semantics of the document and the theming of a component. As a result, once a class is in significant use great care should be taken when introducing any modifications to it.
Utilities make use of !important to ensure that their styles always apply ahead of those defined in a component’s dedicated CSS.
_spacing.scss
_responsive.scss
CONFIG FILE _config.scss
The configuration file where all variables are defined. Copy this file to override the Flystyles defaults without modifying key, versioned files.
MAIN FILE flystyles.scss
The main file should be the only Sass file from the whole code base not to begin with an underscore. This file should not contain anything but @import and comments.