qollap-unbranded
v0.7.0
Published
The fundamental styling for the Qollap platform.
Downloads
204
Readme
Qollap unbranded
The fundamental styling for the Qollap platform.
Includes
- box-sizing
- normalize (dependency v8.0.1)
- element resets
- base styling for elements
Install
yarn install qollap-unbranded
Usage
Import qollap-unbranded
in your index file and create another file for your project specific base styling. See below for example:
index.css
@import 'qollap-unbranded';
@import './base.css';
base.css
body {
color: var(--body-color);
font-family: var(--body-font);
font-weight: var(--body-weight);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--heading-font);
font-weight: var(--heading-weight);
}