1.9.1 • Published 2 years ago

css-to-go v1.9.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years 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

2 years ago

1.9.0

2 years ago

1.8.0

2 years ago

1.7.1

2 years ago

1.7.0

2 years ago

1.5.4

2 years ago

1.6.0

2 years ago

1.5.1

2 years ago

1.5.0

2 years ago

1.5.8

2 years ago

1.6.5

2 years ago

1.3.3

2 years ago

1.3.2

2 years ago

1.3.1

2 years ago

1.3.0

3 years ago

1.2.0

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.9.15

4 years ago

0.9.16

4 years ago

0.9.13

4 years ago

0.9.14

4 years ago

0.9.11

4 years ago

0.9.10

4 years ago

0.9.9

4 years ago

0.9.8

4 years ago

0.9.5

4 years ago

0.9.4

4 years ago

0.9.3

4 years ago

0.9.2

4 years ago

0.9.1

4 years ago

0.9.0

4 years ago