iC Framework CSS

2.0.0 · maintenance · verified Sun Apr 19

iC Framework is a CSS framework developed by iCHEF, designed for building flexible, accessible, and responsive web applications. It provides a set of pre-defined styles and an exclusive icon set (`ic-icon.*`) tailored specifically for iCHEF's branding and aesthetic. The current stable version available on npm is 2.0.0. The framework's primary distribution methods include direct inclusion via a GitHub CDN for HTML `<link>` tags or installation via npm for integration into modern JavaScript/TypeScript build pipelines. It offers minified CSS for production environments and provides source files for developers who wish to build from scratch. Based on the copyright date of 2016, the project appears to be in a maintenance mode or minimally updated. Its key differentiator lies in its specialized styling and components for iCHEF-branded applications, rather than being a general-purpose framework like Bootstrap or Tailwind.

Common errors

Warnings

Install

Imports

Quickstart

Demonstrates how to install the `ic-framework` package and integrate its CSS into a project using a module bundler, or via a direct HTML link.

npm install ic-framework

// In your main JavaScript/TypeScript entry file (e.g., src/index.ts):
import 'ic-framework/dist/css/ic-framework.min.css';

// Or, in your HTML for direct CDN usage:
// <link rel="stylesheet" href="//ichef.github.io/iC-framework/dist/css/ic-framework.min.css">

// You can now use the iC Framework CSS classes in your HTML:
// <div class="ic-container">
//   <h1 class="ic-heading-primary">Hello iC Framework!</h1>
//   <button class="ic-btn ic-btn-primary">Click Me</button>
//   <i class="ic-icon ic-icon-check"></i>
// </div>

view raw JSON →