Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #40 from kriskbx/dev
Browse files Browse the repository at this point in the history
improved code style
  • Loading branch information
kris dot cool committed Apr 18, 2015
2 parents 9027356 + 66b9466 commit b66e9f7
Show file tree
Hide file tree
Showing 6 changed files with 143 additions and 123 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
**/.idea/
/node_modules/
npm-debug.log
.DS_Store
/build/
/src/button
/.grunt/
/.grunt/
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# WhatsApp sharing button

[![Code Climate](https://codeclimate.com/github/kriskbx/whatsapp-sharing/badges/gpa.svg)](https://codeclimate.com/github/kriskbx/whatsapp-sharing)

## Installation

### 1. Download
Expand Down
2 changes: 1 addition & 1 deletion dist/whatsapp-button.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 8 additions & 9 deletions src/button.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,24 @@
* WhatsApp Sharing Button
* https://github.com/kriskbx/whatsapp-sharing/
*
* Copyright (c) 2014 by Kris Siepert, John Brüggemann, Daniel Stopp
* http://kris.cool - http://keksbox.com - http://odiumediae.de
* Copyright (c) 2015 by Kris Siepert
*
* Licensed under the MIT license.
*/


body,html {
body, html {
padding: 0;
margin: 0;
height: 100%;
width: 100%;
}

.wa_btn {
background-image: url('button.svg');
border: 1px solid rgba(0, 0, 0, 0.1);
background-image: url('button.svg');
border: 1px solid rgba(0, 0, 0, 0.1);
display: inline-block !important;
position: relative;
font-family: Arial,sans-serif;
font-family: Arial, sans-serif;
letter-spacing: .4px;
cursor: pointer;
font-weight: 400;
Expand All @@ -30,8 +29,8 @@ body,html {
background-color: #5cbe4a;
background-repeat: no-repeat;
line-height: 1.2;
text-decoration: none;
text-align: left;
text-decoration: none;
text-align: left;
}

.wa_btn_s {
Expand Down
Loading

0 comments on commit b66e9f7

Please sign in to comment.