Skip to content

Commit

Permalink
feature: first version of scss 960 grid
Browse files Browse the repository at this point in the history
  • Loading branch information
klich3 committed Jul 25, 2022
0 parents commit 38c1ba3
Show file tree
Hide file tree
Showing 27 changed files with 14,692 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
4 changes: 4 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
//registry.npmjs.org/:_authToken=${NPM_TOKEN}
registry=https://registry.npmjs.org/
always-auth=true
#8.13.2
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v16.14.0
18 changes: 18 additions & 0 deletions .workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish Package to npmjs
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: "16.x"
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
11 changes: 11 additions & 0 deletions 960.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
Author: <Anthony Sychev> (hello at dm211 dot com | a.sychev at jfranc dot studio)
Buy me a coffe: https://www.buymeacoffee.com/twooneone
960.scss (c) 2022
Created: 2022-06-21 17:48:02
Desc: 960 grid short classes
*/

@charset "UTF-8";

@import "scss";
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# The MIT License (MIT)

Copyright © Anthony Sychev

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# 960 Grid CSS Speed classes

Css base mos used methods in one css file.

## Install

Simply run `npm i 960 --save-dev` or directly from git `npm i https://github.com/klich3/960`

In your Vue3 project just add import line in file `main.js`

```javascript
import "960.css";
```

### Dev

Live preview: `npm run watch`
Lint: `npm run lint`
Lint fix: `npm run lint-fix`

Test: `npm run prepublish` or `npm run test`

Compile command: `npm run build:css` or `npm run scss-compile`

Publish script: `npm install --global np`

### DOCS

* https://sass-lang.com/documentation/at-rules/mixin
1 change: 1 addition & 0 deletions css/960.css

Large diffs are not rendered by default.

Loading

0 comments on commit 38c1ba3

Please sign in to comment.