1.9.1 • Published 6 months ago

css-to-go v1.9.1

Weekly downloads
-
License
ISC
Repository
github
Last release
6 months ago

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/

1.9.1

6 months ago

1.9.0

6 months ago

1.8.0

6 months ago

1.7.1

1 year ago

1.7.0

1 year ago

1.5.4

1 year ago

1.6.0

1 year ago

1.5.1

1 year ago

1.5.0

1 year ago

1.5.8

1 year ago

1.6.5

1 year ago

1.3.3

1 year ago

1.3.2

1 year ago

1.3.1

1 year ago

1.3.0

2 years ago

1.2.0

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

0.9.15

3 years ago

0.9.16

3 years ago

0.9.13

3 years ago

0.9.14

3 years ago

0.9.11

3 years ago

0.9.10

3 years ago

0.9.9

3 years ago

0.9.8

3 years ago

0.9.5

3 years ago

0.9.4

3 years ago

0.9.3

3 years ago

0.9.2

3 years ago

0.9.1

3 years ago

0.9.0

3 years ago