css-to-go

1.9.1 • Public • Published

CSS-to-go

A bit of CSS that makes a plain HTML document somewhat more pleasant to look at.

It makes a gentle reset, and then applies some global styles for common elements. There are also a small number of utility classes made available.

Learn more by looking at the description overview and the examples.

Installation

npm i css-to-go

Usage

Via cdn

An easy way to use it, here getting the latest and greatest version:

`index.html` (excerpt):

<head>
    ...
    <link href="https://unpkg.com/css-to-go" rel="stylesheet" />
</head>

Importing it in your build

Import it for your bundler to handle

App.(jsx|svelte|whatever):

import "css-to-go";

or just link to it inside node_modules.

index.html (excerpt):

<head>
  ...
  <link rel="stylesheet"
    href="[path to]/node_modules/css-to-go/dist/css-to-go.min.css"
  />
</head>

Then apply the "root selector" class ctg-root to trigger the styles (and possibly the utility class ctg-container too). I normally make the document's body be that root:

index.html (excerpt):

<body class="
    ctg-root         <!-- enables all styling -->
    ctg-container    <!-- optional (just some container/wrapper behaviour) -->
    ctg-theme--light <!-- optional (dark theme is the default)  -->
">
    <!-- your HTML here -->
</body>

View examples

npm start

Navigate to http://localhost:3000/

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.9.11latest

Version History

VersionDownloads (Last 7 Days)Published
1.9.11
1.9.00
1.8.00
1.7.10
1.7.00
1.6.50
1.6.00
1.5.81
1.5.40
1.5.10
1.5.00
1.3.31
1.3.20
1.3.10
1.3.00
1.2.00
1.1.10
1.1.00
1.0.31
1.0.20
1.0.10
1.0.00
0.9.160
0.9.150
0.9.140
0.9.130
0.9.110
0.9.100
0.9.90
0.9.80
0.9.50
0.9.40
0.9.30
0.9.20
0.9.10
0.9.00

Package Sidebar

Install

npm i css-to-go

Weekly Downloads

4

Version

1.9.1

License

ISC

Unpacked Size

23.6 kB

Total Files

5

Last publish

Collaborators

  • npup