The CodyHouse's framework is a system of SCSS globals representing the base upon which you can build the style of your web project.
Explore the documentation on codyhouse.co
The framework serves three main purposes:
- Template - it provides you with a CSS template to speed up the first steps of setting up the style of a web project.
- Responsive - it includes smart rules that take care of several responsiveness aspects.
- Design system - it simplifies the process of creating the base of your design system.
The framework is composed of:
- A collection of SCSS files that compile into a _global.scss file. Make sure to import this style before your own;
- A util.js file with some utility functions that are used in the CodyHouse components. Make sure to import this before the component script file.
codyhouse-framework/
└── main/
├── assets/
│ ├── css/
│ │ ├── globals/
│ │ │ ├── _accessibility.scss
│ │ │ ├── _alignment.scss
│ │ │ ├── _breakpoints.scss
│ │ │ ├── _buttons.scss
│ │ │ ├── _colors.scss
│ │ │ ├── _forms.scss
│ │ │ ├── _grid-layout.scss
│ │ │ ├── _icons.scss
│ │ │ ├── _mixins.scss
│ │ │ ├── _reset.scss
│ │ │ ├── _shared-styles.scss
│ │ │ ├── _spacing.scss
│ │ │ ├── _typography.scss
│ │ │ ├── _visibility.scss
│ │ │ └── _z-index.scss
│ │ ├── _globals.scss
│ │ ├── style.css
│ │ └── style.scss
│ └── js/
│ └── util.js
└── index.html
The Framework and the Components are built following the principle of progressive enhancement. Please make sure to include the following script in the <head>
of your document:
<script>document.getElementsByTagName("html")[0].className += " js";</script>
The script is used in CSS to target that Javascript is enabled and apply additional style accordingly. If you don't include the script, part of the style of the components won't be visible.
The framework includes a Gulp file with some basic configurations needed to run a web project based on the framework.
To use this Gulp configuration file, once you have downloaded the framework, make sure to run the following commands in your command line:
npm install
npm run gulp watch
The first command will install the modules the framework requires for compiling SCSS into CSS; the second will launch your project on a development server.
If you are new to Gulp, take a look at this beginners guide.
CodyHouse's components are HTML, CSS, JS production-ready modules. Each component is accessible, responsive, and work seamlessly with the CodyHouse Framework.
The Global Editors are web design tools that allow you to set the style of typography elements, color themes, spacing rules, buttons, and forms directly in the browser. They generate SCSS code that is compatible with the CodyHouse framework.
Explore the Editors:
- Colors codyhouse.co/ds/globals/colors
- Typography codyhouse.co/ds/globals/typography
- Spacing codyhouse.co/ds/globals/spacing
- Buttons codyhouse.co/ds/globals/buttons
- Forms codyhouse.co/ds/globals/forms