Skip to content

Commit

Permalink
🎉 Initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
tiaanduplessis committed Sep 27, 2016
1 parent 27afcdb commit d3f4407
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# :wink: Wenk
**Wenk** is a Lightweight tooltip written in pure CSS using PostCSS. The minified version is just 722 bytes when gzipped :scream:.
**Wenk** is a Lightweight tooltip written in pure CSS using [PostCSS](http://postcss.org/). The **minified version is just 683 bytes when gzipped** :scream:.

<p align="center">
<a href="#"><img width="80%" src="media/wenk.gif" alt="wenk"></a>
Expand Down Expand Up @@ -55,7 +55,7 @@ The width of the tooltip can also easily be changed.
```

## Demo
Check out the demo here.
Check out the demo [here](https://mightycrow.github.io/wenk/).

## Contributing
All Contributions are welcome! Please open up an issue if you would like to help out. :smile:
Expand Down
25 changes: 25 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "wenk",
"description": "Lightweight pure CSS tooltip for the greater good",
"main": "dist/wenk.css",
"authors": [
"Tiaan du Plessis @mightyCrow"
],
"license": "MIT",
"keywords": [
"wenk",
"pure",
"CSS",
"tooltip",
"lightweight",
"hint"
],
"homepage": "https://github.com/mightyCrow/wenk",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
6 changes: 5 additions & 1 deletion demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
content: "\2764";
color: #f45660;
}

footer {
margin-top: 50px;
}
</style>
</head>

Expand Down Expand Up @@ -83,7 +87,7 @@ <h3>Display at different positions!</h3>
<p><span data-wenk="I fit!" data-wenk-length="fit">I fit just right!</span></p>
-->
<p><span data-wenk="I'm small!" class="wenk-length--small">Small wenk!</span></p>
<p><span data-wenk="I'm medium!" class="wenk-length--large">Medium wenk!</span></p>
<p><span data-wenk="I'm medium!" class="wenk-length--medium">Medium wenk!</span></p>
<p><span data-wenk="I'm large!" class="wenk-length--large">Large wenk!</span></p>
<p><span data-wenk="I fit!" class="wenk-length--fit">I fit just right!</span></p>
</section>
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "wenk",
"version": "1.0.0",
"description": "Lightweight pure CSS tooltip for the greater good",
"main": "wenk.css",
"main": "dist/wenk.css",
"scripts": {
"test": "echo lol nope yolo",
"build": "gulp build",
Expand All @@ -12,9 +12,11 @@
"deploy": "gulp build && gh-pages -d demo"
},
"keywords": [
"wenk",
"pure CSS",
"tooltip",
"lightweight"
"lightweight",
"hint"
],
"author": "Tiaan du Plessis @mightyCrow",
"license": "MIT",
Expand Down

0 comments on commit d3f4407

Please sign in to comment.