1.1.0 • Published 5 years ago

qollab-unbranded v1.1.0

Weekly downloads
9
License
-
Repository
-
Last release
5 years ago

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;
}