Skip to content

Commit

Permalink
Release: v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tabalinas committed Apr 29, 2015
1 parent dfc074c commit 6631a36
Show file tree
Hide file tree
Showing 9 changed files with 759 additions and 37 deletions.
24 changes: 20 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
{
"name": "jssocials",
"version": "0.0.1",
"dependencies": {},
"version": "0.1.0",
"main": "dist/jssocials.js",
"ignore": [
"demo",
"test",
".editorconfig",
".gitignore",
".jshintrc",
".travis.yml",
"bower.json",
"contributing.md",
"Gruntfile.js",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"jquery": ">=1.10.2"
},
"devDependencies": {
"qunit": "~1.12.0",
"jquery": "~1.11.2"
"qunit": ">=1.12.0"
}
}
76 changes: 76 additions & 0 deletions dist/jssocials-theme-classic.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
.jssocials-share-twitter .jssocials-share-link {
background: #00aced;
border: 1px solid #0099d3; }
.jssocials-share-twitter .jssocials-share-link:hover {
background: #0087ba; }

.jssocials-share-facebook .jssocials-share-link {
background: #3b5998;
border: 1px solid #344e86; }
.jssocials-share-facebook .jssocials-share-link:hover {
background: #2d4373; }

.jssocials-share-googleplus .jssocials-share-link {
background: #dd4b39;
border: 1px solid #d73925; }
.jssocials-share-googleplus .jssocials-share-link:hover {
background: #c23321; }

.jssocials-share-linkedin .jssocials-share-link {
background: #007bb6;
border: 1px solid #006a9d; }
.jssocials-share-linkedin .jssocials-share-link:hover {
background: #005983; }

.jssocials-share-pinterest .jssocials-share-link {
background: #cb2027;
border: 1px solid #b51d23; }
.jssocials-share-pinterest .jssocials-share-link:hover {
background: #9f191f; }

.jssocials-share-link {
padding: .5em .6em;
border-radius: 0.3em;
box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.3), 0 1px 3px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.15);
color: #fff;
-webkit-transition: background 200ms ease-in-out;
transition: background 200ms ease-in-out; }

.jssocials-share-count-box {
position: relative;
height: 2.5em;
padding: 0 .3em;
margin-left: 6px;
border-radius: 0.3em;
border: 1px solid #dcdcdc;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); }
.jssocials-share-count-box:before {
content: "";
position: absolute;
top: 1em;
left: -9px;
display: block;
width: 0;
border-style: solid;
border-width: 6px 6px 0;
border-color: #dcdcdc transparent;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg); }
.jssocials-share-count-box:after {
content: "";
position: absolute;
top: 1em;
left: -7px;
display: block;
width: 0;
border-style: solid;
border-width: 5px 5px 0;
border-color: #FFFFFF transparent;
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg); }
.jssocials-share-count-box .jssocials-share-count {
line-height: 2.5em;
color: #444;
font-size: .9em; }
62 changes: 62 additions & 0 deletions dist/jssocials-theme-flat.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
.jssocials-share-twitter .jssocials-share-link {
background: #00aced; }
.jssocials-share-twitter .jssocials-share-link:hover {
background: #0087ba; }

.jssocials-share-facebook .jssocials-share-link {
background: #3b5998; }
.jssocials-share-facebook .jssocials-share-link:hover {
background: #2d4373; }

.jssocials-share-googleplus .jssocials-share-link {
background: #dd4b39; }
.jssocials-share-googleplus .jssocials-share-link:hover {
background: #c23321; }

.jssocials-share-linkedin .jssocials-share-link {
background: #007bb6; }
.jssocials-share-linkedin .jssocials-share-link:hover {
background: #005983; }

.jssocials-share-pinterest .jssocials-share-link {
background: #cb2027; }
.jssocials-share-pinterest .jssocials-share-link:hover {
background: #9f191f; }

.jssocials-share-link {
padding: .5em .6em;
color: #fff;
-webkit-transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }

.jssocials-share-count-box {
position: relative;
height: 2.5em;
padding: 0 .3em;
margin-left: 0.3em;
background: #f5f5f5;
-webkit-transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }
.jssocials-share-count-box:hover {
background: gainsboro; }
.jssocials-share-count-box:hover:after {
border-color: transparent gainsboro transparent transparent; }
.jssocials-share-count-box:after {
content: "";
display: block;
position: absolute;
top: 0.85em;
left: -0.3em;
width: 0;
height: 0;
border-width: 0.4em 0.4em 0.4em 0;
border-style: solid;
border-color: transparent #f5f5f5 transparent transparent;
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
-webkit-transition: background 200ms ease-in-out, border-color 200ms ease-in-out;
transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }
.jssocials-share-count-box .jssocials-share-count {
line-height: 2.5em;
color: #444; }
64 changes: 64 additions & 0 deletions dist/jssocials-theme-minima.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
.jssocials-share-twitter .jssocials-share-link {
color: #00aced; }
.jssocials-share-twitter .jssocials-share-link .jssocials-share-label {
color: #00aced; }
.jssocials-share-twitter .jssocials-share-link:hover {
color: #0087ba; }
.jssocials-share-twitter .jssocials-share-link:hover .jssocials-share-label {
color: #0087ba; }

.jssocials-share-facebook .jssocials-share-link {
color: #3b5998; }
.jssocials-share-facebook .jssocials-share-link .jssocials-share-label {
color: #3b5998; }
.jssocials-share-facebook .jssocials-share-link:hover {
color: #2d4373; }
.jssocials-share-facebook .jssocials-share-link:hover .jssocials-share-label {
color: #2d4373; }

.jssocials-share-googleplus .jssocials-share-link {
color: #dd4b39; }
.jssocials-share-googleplus .jssocials-share-link .jssocials-share-label {
color: #dd4b39; }
.jssocials-share-googleplus .jssocials-share-link:hover {
color: #c23321; }
.jssocials-share-googleplus .jssocials-share-link:hover .jssocials-share-label {
color: #c23321; }

.jssocials-share-linkedin .jssocials-share-link {
color: #007bb6; }
.jssocials-share-linkedin .jssocials-share-link .jssocials-share-label {
color: #007bb6; }
.jssocials-share-linkedin .jssocials-share-link:hover {
color: #005983; }
.jssocials-share-linkedin .jssocials-share-link:hover .jssocials-share-label {
color: #005983; }

.jssocials-share-pinterest .jssocials-share-link {
color: #cb2027; }
.jssocials-share-pinterest .jssocials-share-link .jssocials-share-label {
color: #cb2027; }
.jssocials-share-pinterest .jssocials-share-link:hover {
color: #9f191f; }
.jssocials-share-pinterest .jssocials-share-link:hover .jssocials-share-label {
color: #9f191f; }

.jssocials-share-link {
-webkit-transition: color 200ms ease-in-out;
transition: color 200ms ease-in-out; }
.jssocials-share-link.jssocials-share-link-count .jssocials-share-count {
font-size: .5em; }

.jssocials-share-label {
font-size: 0.8em;
color: #444;
-webkit-transition: color 200ms ease-in-out;
transition: color 200ms ease-in-out; }

.jssocials-share-count-box {
margin-left: 0.3em;
border: 1px solid #efefef;
border-radius: 0.3em; }
.jssocials-share-count-box .jssocials-share-count {
font-size: 0.8em;
color: #444; }
44 changes: 44 additions & 0 deletions dist/jssocials-theme-plain.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
.jssocials-share-link {
padding: .5em .6em;
border-radius: 0.3em;
border: 2px solid #acacac;
color: #acacac;
-webkit-transition: background 200ms ease-in-out, color 200ms ease-in-out, border-color 200ms ease-in-out;
transition: background 200ms ease-in-out, color 200ms ease-in-out, border-color 200ms ease-in-out; }
.jssocials-share-link:hover {
border: 2px solid #939393;
color: #939393; }

.jssocials-share-count-box {
position: relative;
height: 1.5em;
padding: 0 .3em;
margin-left: 0.3em;
background: #f5f5f5;
border-radius: 0.3em;
-webkit-transition: background 200ms ease-in-out, color 200ms ease-in-out, border-color 200ms ease-in-out;
transition: background 200ms ease-in-out, color 200ms ease-in-out, border-color 200ms ease-in-out; }
.jssocials-share-count-box:hover {
background: #e8e8e8; }
.jssocials-share-count-box:hover:after {
border-color: transparent #e8e8e8 transparent transparent; }
.jssocials-share-count-box:after {
content: "";
display: block;
position: absolute;
top: 0.35em;
left: -0.3em;
width: 0;
height: 0;
border-width: 0.4em 0.4em 0.4em 0;
border-style: solid;
border-color: transparent #f5f5f5 transparent transparent;
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
-webkit-transition: background 200ms ease-in-out, color 200ms ease-in-out, border-color 200ms ease-in-out;
transition: background 200ms ease-in-out, color 200ms ease-in-out, border-color 200ms ease-in-out; }
.jssocials-share-count-box .jssocials-share-count {
line-height: 1.7em;
color: #acacac;
font-size: .9em; }
53 changes: 53 additions & 0 deletions dist/jssocials.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
.jssocials-shares {
margin: 0.2em 0; }

.jssocials-shares * {
box-sizing: border-box; }

.jssocials-share {
display: inline-block;
vertical-align: top;
margin: 0.3em; }

.jssocials-share:first-child {
margin-left: 0; }

.jssocials-share:last-child {
margin-right: 0; }

.jssocials-share-logo {
width: 1em;
vertical-align: middle;
font-size: 1.5em; }

.jssocials-share-link {
display: inline-block;
text-align: center;
text-decoration: none; }
.jssocials-share-link.jssocials-share-link-count {
padding-top: .2em; }
.jssocials-share-link.jssocials-share-link-count .jssocials-share-count {
display: block;
font-size: .6em;
margin: 0 -.5em -.8em -.5em; }
.jssocials-share-link.jssocials-share-no-count {
padding-top: .5em; }
.jssocials-share-link.jssocials-share-no-count .jssocials-share-count {
height: 1em; }

.jssocials-share-label {
padding-left: 0.3em;
vertical-align: middle; }

.jssocials-share-count-box {
display: inline-block;
height: 1.5em;
padding: 0 0.3em;
vertical-align: middle;
cursor: default; }
.jssocials-share-count-box.jssocials-share-no-count {
display: none; }

.jssocials-share-count {
line-height: 1.5em;
vertical-align: middle; }
Loading

0 comments on commit 6631a36

Please sign in to comment.