Skip to content

Commit

Permalink
feature: added citation file
Browse files Browse the repository at this point in the history
small annotation without importance
  • Loading branch information
klich3 committed Oct 17, 2023
1 parent 8aa04ff commit 61712ba
Show file tree
Hide file tree
Showing 7 changed files with 62 additions and 9 deletions.
8 changes: 8 additions & 0 deletions 960.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"folders": [
{
"path": "."
}
],
"settings": {}
}
29 changes: 29 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!

cff-version: 1.2.0
title: 960.css
message: >-
If you use this software, please cite it using the
metadata from this file.
type: software
authors:
- email: [email protected]
given-names: Anton
family-names: Sychev
affiliation: too
repository-code: "https://github.com/klich3/960/"
abstract: >-
NMP module to include shortcuts in your project with Grid
960 CSS3
keywords:
- "960"
- css
- scss
- layout
- module
- npm
- grid
- html
license: MIT
version: 1.0.7
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@

# 960 Grid CSS Speed classes

[![MIT license](https://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT)
[![downloads per month](https://img.shields.io/github/klich3/960.svg)](https://www.npmjs.org/package/960)
[![Issues](https://img.shields.io/github/issues/klich3/960.svg)]( https://github.com/klich3/960/issues )
[![GitHub pull-requests](https://img.shields.io/github/issues-pr/klich3/960.svg)](https://GitHub.com/klich3/960/pull/)


Css base mos used methods in one css file.

## CSS Definitions
Expand Down Expand Up @@ -28,7 +35,9 @@ 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`
Publish script:
- `npm install --global np`
- `npm publish --access=public ./`

### DOCS

Expand Down
2 changes: 1 addition & 1 deletion css/960.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "960.css",
"version": "1.0.6",
"version": "1.0.7",
"description": "960 SCSS Layout most used and shortests css classes.",
"main": "960.scss",
"style": "css/960.css",
Expand Down
12 changes: 6 additions & 6 deletions scss/global/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -318,27 +318,27 @@ progress {
overflow: hidden;
}

.ofv  {
.ofv {
overflow: visible;
}

.ofs  {
.ofs {
overflow: scroll;
}

.ofsx  {
.ofsx {
overflow-x: visible;
}

.ofsxh  {
.ofsxh {
overflow-x: hidden;
}

.ofsy  {
.ofsy {
overflow-y: visible;
}

.ofsyh  {
.ofsyh {
overflow-y: hidden;
}

Expand Down
7 changes: 7 additions & 0 deletions scss/height/height.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,10 @@
height: $percent;
}
}

/*
TODO: add small height none
.h100\@sn {
height: auto;
}
*/

0 comments on commit 61712ba

Please sign in to comment.