SkyLineCSS
  • SkyLineCSS Documentation
  • Installation
  • Alerts
  • Buttons
  • Cards
  • 🎖️Utility Classes
  • Effects
  • Filters
  • Flexbox
  • Forms
  • Tables
  • Typography
Powered by GitBook
On this page
  • CDN
  • Downloading SkyLineCSS
  • Using with Package Managers
  • Using with React or Vue

Installation

PreviousSkyLineCSS DocumentationNextAlerts

Last updated 1 year ago

To use SkyLineCSS, you can include the following CSS file in your project:

<link rel="stylesheet" href="path/to/skyline.min.css">

CDN

If you prefer, you can also use a CDN link:

<!-- Latest version -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/sh20raj/SkyLineCSS@latest/skyline.min.css">

Replace "path/to/skyline.css" with the actual path to your skyline.css file in your project directory.

Downloading SkyLineCSS

If you want to host the CSS file yourself, you can download it from the or use the following command:

git clone https://github.com/sh20raj/skylinecss

Once downloaded, link the skyline.css file in your HTML:

<link rel="stylesheet" href="path/to/skylinecss/skyline.css">

Using with Package Managers

If you're using npm or yarn, you can install SkyLineCSS as a package:

npm install skylinecss

or

yarn add skylinecss

Then include it in your project:

import 'skylinecss/dist/skyline.css';

Using with React or Vue

For React or Vue projects, you can install SkyLineCSS as a package:

npm install skylinecss

or

yarn add skylinecss

Then import it in your components:

import 'skylinecss/dist/skyline.css';

This will make the SkyLineCSS utility classes available for use in your React or Vue components.

That's it! You've successfully installed SkyLineCSS in your project.

SkyLineCSS GitHub repository