qollab-unbranded
v1.1.0
Published
Fundamental styling for Qollab products and projects.
Downloads
249
Readme
Includes
- box-sizing
- normalize (dependency v8.0.1)
- element resets
- base styling for elements
Install
yarn install qollab-unbranded
Usage
Import qollab-unbranded
in your index file and create another file for your project specific base styling.
index.css
@import 'qollab-unbranded';
@import './base.css';
base.css
body {
color: var(--body-color);
font-family: var(--body-font);
font-weight: var(--body-weight);
line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--heading-font);
font-weight: var(--heading-weight);
}
a {
text-decoration: none;
}
::placeholder { color: #bbb; }
optional
ul,
ol {
list-style-position: outside;
list-style: none;
padding: 0;
}
/* remove text-shadow in selection highlight for better readability. */
::selection {
background: #B3D4FC;
text-shadow: none;
}