Skip to content

Velocity, a cutting-edge, lightweight, and responsive CSS framework designed to accelerate your web development projects. With a focus on speed, simplicity, and responsiveness, Velocity empowers developers to create stunning and performant user interfaces with ease.

Notifications You must be signed in to change notification settings

pratikt76/VelocityCSS

Repository files navigation

VelocityCSS

Velocity: A Fast, Simple, Responsive CSS Framework

Screenshot 2023-08-21 223536 Screenshot 2023-08-21 223554 Screenshot 2023-08-21 223605

To Purge the CSS {index.css}

Paste following code in gulpfile.js
const { src, dest, watch, series } = require('gulp')
const sass = require('gulp-sass')(require('sass'))
const purgecss = require('gulp-purgecss')

function buildStyles() {
  return src('shinobi/**/*.scss')
    .pipe(sass({ outputStyle: 'compressed' }))
    .pipe(purgecss({ content: ['*.html'] }))
    .pipe(dest('css'))
}

function watchTask() {
  watch(['shinobi/**/*.scss'], buildStyles)
}

exports.default = series(buildStyles, watchTask)

About

Velocity, a cutting-edge, lightweight, and responsive CSS framework designed to accelerate your web development projects. With a focus on speed, simplicity, and responsiveness, Velocity empowers developers to create stunning and performant user interfaces with ease.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published