1.0.18 • Published 5 years ago

@softinn/si-css-helper v1.0.18

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Softinn CSS Helper

A simple css helper that complements Twitter Bootstrap 3.

Getting Started

Make sure you have referenced to Twitter Bootstrap stylesheets before you include si-css-helper.css.

Installing

npm install si-css-helper

You may consider using WebPack to move the included si-css-helper to the folder of your web app. Below is an example we did using WebPack (TypeScript version).

import * as webpack from 'webpack';
import * as ExtractTextPlugin from 'extract-text-webpack-plugin';

const config: webpack.Configuration = {
    entry: [
        "./node_modules/@softinn/si-css-helper/si-css-helper.css"
    ],
    output: {
        filename: "/Content/si-css-helper.css"
    },
    module: {
        rules: [{
            test: /\.css$/,
            use: ExtractTextPlugin.extract('css-loader')
        }]
    },
    plugins: [
        new ExtractTextPlugin("./Content/si-css-helper.css")
    ]
};

export default config;

Authors

The list of contributors who participated in this project.

License

This project is licensed under the MIT License.

1.0.18

5 years ago

1.0.17

6 years ago

1.0.16

7 years ago

1.0.15

7 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

8 years ago

1.0.10

8 years ago

1.0.9

8 years ago

1.0.8

8 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago