Skip to content

Commit

Permalink
Updated docs and push dist folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan committed Aug 17, 2018
1 parent 743a016 commit da6ca86
Show file tree
Hide file tree
Showing 5 changed files with 190 additions and 69 deletions.
22 changes: 19 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,37 @@

### Rocket CSS is an open source, lightweight CSS framework built using Flexbox.

Rocket CSS is a small, lightweight CSS-only framework that allows you to quickly build web applications without the hassle of remembering 1,000s of classes. Unlike other CSS frameworks like Twitter Bootstrap, Rocket CSS comes with a handful of simple components which are all prefixed with the class .rkt- which makes it easier to integrate Rocket CSS into an existing site.
Rocket CSS is a small, lightweight CSS-only framework that allows you to quickly build web applications without the hassle of remembering 1,000s of classes. Unlike other CSS frameworks like Twitter Bootstrap, Rocket CSS comes with a handful of simple components which are all prefixed with the class `.rkt-` which makes it easier to integrate Rocket CSS into an existing site.

## Getting Started

Please visit the Rocket CSS site to get started: https://sts-ryan-holton.github.io/rocket-css/

## Browser Support

Rocket CSS aims to support modern browsers. If you're using an older version than listed below, or your browser isn't listed, there's likely little support for this browser.

```
browsers: [
"last 2 versions",
">= 0.2%",
"Chrome >= 55",
"Firefox >= 54",
"iOS >= 10",
"Safari >= 10",
"Android >= 4.4"
]
```

## Issues

Submit a new relevant issue here: https://github.com/sts-ryan-holton/rocket-css/issues
Submit a new relevant issue here: https://github.com/sts-ryan-holton/rocket-css/issues/new?template=bug_report.md

**Please be sure to search open issues first.**

## Feature Requests

If you have a feature request, please submit one here: https://github.com/sts-ryan-holton/rocket-css/issues/new
If you have a feature request, please submit one here: https://github.com/sts-ryan-holton/rocket-css/issues/new?template=feature_request.md

## License

Expand Down
8 changes: 8 additions & 0 deletions assets/scss/rocketcss.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/*
Name: Rocket CSS
Author: Ryan Holton
Version: 1.0.0
Github: https://github.com/sts-ryan-holton/rocket-css
Website: https://sts-ryan-holton.github.io/rocket-css/
*/

// Base
@import 'variables';
@import 'normalize';
Expand Down
30 changes: 30 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
var gulp = require('gulp');
var cleanCSS = require('gulp-clean-css');
var sass = require('gulp-sass');
var autoprefixer = require('gulp-autoprefixer');

gulp.task('sass', function() {
return gulp.src('assets/scss/rocketcss.scss').pipe(sass()).pipe(autoprefixer({
browsers: [
"last 2 versions",
">= 0.2%",
"Chrome >= 55",
"Firefox >= 54",
"iOS >= 10",
"Safari >= 10",
"Android >= 4.4"
],
cascade: false
})).pipe(cleanCSS({
level: {
1: {
all: true,
tidySelectors: true
}
}
})).pipe(sass({
outputStyle: 'compressed'
}).on('error', sass.logError)).pipe(gulp.dest('rocketcss-dist/css/'))
})

gulp.task('production', ['sass']);
Loading

0 comments on commit da6ca86

Please sign in to comment.