Skip to content

Commit

Permalink
Add new box-shadow module
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmrs committed May 25, 2016
0 parents commit b34df79
Show file tree
Hide file tree
Showing 9 changed files with 300 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .gitignore
@@ -0,0 +1,59 @@
# List of files for git to ignore

.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Vim
Session.vim

# Node
node_modules/*
npm-debug.log

.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# Vim
Session.vim

# Node
node_modules/*
npm-debug.log
68 changes: 68 additions & 0 deletions code-of-conduct.md
@@ -0,0 +1,68 @@
# Contributor Code of Conduct

### Our Pledge

In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to making participation in our project and
our community a harassment-free experience for everyone, regardless of age,
body size, disability, ethnicity, gender identity and expression, level of
experience, nationality, personal appearance, race, religion, or sexual
identity and orientation.

### Our Standards

#### Examples of behavior that contributes to creating a positive environment include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

#### Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a professional setting

### Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

### Scope

This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an
appointed representative at an online or offline event. Representation of a
project may be further defined and clarified by project maintainers.

### Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at hi@mrmrs.cc. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an
incident. Further details of specific enforcement policies may be posted
separately.

Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.

### Attribution

This Code of Conduct is adapted from the Contributor Covenant, version 1.4, available at http://contributor-covenant.org/version/1/4

11 changes: 11 additions & 0 deletions css/tachyons-box-shadow.css
@@ -0,0 +1,11 @@
/*
BOX-SHADOW
*/
.shadow-1 { box-shadow: 0px 0px 4px 2px rgba( 0, 0, 0, 0.2 ); }
.shadow-2 { box-shadow: 0px 0px 8px 2px rgba( 0, 0, 0, 0.2 ); }
.shadow-3 { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, 0.2 ); }
.shadow-4 { box-shadow: 2px 2px 8px 0px rgba( 0, 0, 0, 0.2 ); }
.shadow-5 { box-shadow: 4px 4px 8px 0px rgba( 0, 0, 0, 0.2 ); }

2 changes: 2 additions & 0 deletions css/tachyons-box-shadow.min.css
@@ -0,0 +1,2 @@
.shadow-1{box-shadow:0 0 4px 2px rgba(0,0,0,.2)}.shadow-2{box-shadow:0 0 8px 2px rgba(0,0,0,.2)}.shadow-3{box-shadow:2px 2px 4px 2px rgba(0,0,0,.2)}.shadow-4{box-shadow:2px 2px 8px 0 rgba(0,0,0,.2)}.shadow-5{box-shadow:4px 4px 8px 0 rgba(0,0,0,.2)}

17 changes: 17 additions & 0 deletions index.html
@@ -0,0 +1,17 @@
<html>
<head>
<meta charset="utf-8">
<title>index</title>
<link rel="stylesheet" href="http://tachyons.io/css/tachyons.min.css" />
<link rel="stylesheet" href="css/tachyons-box-shadow.css" />

</head>
<body>
<div class="shadow-1 mt5 ml4 pa4 measure"> Test </div>
<div class="shadow-2 mt5 ml4 pa4 measure"> Test </div>
<div class="shadow-3 mt5 ml4 pa4 measure"> Test </div>
<div class="shadow-4 mt5 ml4 pa4 measure"> Test </div>
<div class="shadow-5 mv5 ml4 pa4 measure"> Test </div>

</body>
</html>
9 changes: 9 additions & 0 deletions license
@@ -0,0 +1,9 @@
The MIT License (MIT)

Copyright (c) 2015 @mrmrs <hi@mrmrs.css> (mrmrs.io)

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.
35 changes: 35 additions & 0 deletions package.json
@@ -0,0 +1,35 @@
{
"name": "tachyons-box-shadow",
"description": "box-shadow CSS module for Tachyons",
"version": "1.0.0",
"author": {
"name": "mrmrs",
"email": "hi@mrmrs.cc",
"url": "http://mrmrs.cc"
},
"style": "src/tachyons-box-shadow.css",
"files": [
"src",
"css"
],
"keywords": [
"tachyons",
"tachyons-css",
"css",
"box-shadow"
],
"repository": "tachyons-css/tachyons-box-shadow",
"license": "MIT",
"devDependencies": {
"tachyons-cli": "^0.5.0",
"watch": "^0.17.1"
},
"scripts": {
"start": "npm run build:watch",
"build:css": "tachyons src/tachyons-box-shadow.css > css/tachyons-box-shadow.css",
"build:minify": "tachyons src/tachyons-box-shadow.css --minify > css/tachyons-box-shadow.min.css",
"build:docs": "tachyons src/tachyons-box-shadow.css --generate-docs --package=../../package.json > readme.md",
"build": "npm run build:css && npm run build:minify && npm run build:docs",
"build:watch": "watch 'npm run build' ./src"
}
}
87 changes: 87 additions & 0 deletions readme.md
@@ -0,0 +1,87 @@
# tachyons-box-shadow 1.0.0

box-shadow CSS module for Tachyons

#### Stats

121 | 5 | 5
---|---|---
bytes | selectors | declarations

## Installation

#### With [npm](https://npmjs.com)

```
npm install --save-dev tachyons-box-shadow
```

#### With Git

```
git clone https://github.com/tachyons-css/tachyons-box-shadow
```

## Usage

#### Using with [PostCSS](https://github.com/postcss/postcss)

Import the css module

```css
@import "tachyons-box-shadow";
```

Then process the CSS using the [`tachyons-cli`](https://github.com/tachyons-css/tachyons-cli)

```sh
$ npm i -g tachyons-cli
$ tachyons-cli path/to/css-file.css > dist/t.css
```

#### Using the CSS

The built CSS is located in the `css` directory. It contains an unminified and minified version.
You can either cut and paste that css or link to it directly in your html.

```html
<link rel="stylesheet" href="path/to/module/css/tachyons-box-shadow">
```

#### Development

The source CSS files can be found in the `src` directory.
Running `$ npm start` will process the source CSS and place the built CSS in the `css` directory.

## The CSS

```css
/*
BOX-SHADOW
*/
.shadow-1 { box-shadow: 0px 0px 4px 2px rgba( 0, 0, 0, 0.2 ); }
.shadow-2 { box-shadow: 0px 0px 8px 2px rgba( 0, 0, 0, 0.2 ); }
.shadow-3 { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, 0.2 ); }
.shadow-4 { box-shadow: 2px 2px 8px 0px rgba( 0, 0, 0, 0.2 ); }
.shadow-5 { box-shadow: 4px 4px 8px 0px rgba( 0, 0, 0, 0.2 ); }
```

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

## Authors

* [mrmrs](http://mrmrs.io)
* [johno](http://johnotander.com)

## License

MIT

12 changes: 12 additions & 0 deletions src/tachyons-box-shadow.css
@@ -0,0 +1,12 @@
/*
BOX-SHADOW
*/

.shadow-1 { box-shadow: 0px 0px 4px 2px rgba( 0, 0, 0, 0.2 ); }
.shadow-2 { box-shadow: 0px 0px 8px 2px rgba( 0, 0, 0, 0.2 ); }
.shadow-3 { box-shadow: 2px 2px 4px 2px rgba( 0, 0, 0, 0.2 ); }
.shadow-4 { box-shadow: 2px 2px 8px 0px rgba( 0, 0, 0, 0.2 ); }
.shadow-5 { box-shadow: 4px 4px 8px 0px rgba( 0, 0, 0, 0.2 ); }

0 comments on commit b34df79

Please sign in to comment.