Skip to content

Commit

Permalink
First Beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
Dipu Raj committed Apr 12, 2017
1 parent 6e2e529 commit bd84420
Show file tree
Hide file tree
Showing 12 changed files with 472 additions and 182 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ coverage
*.tmPreferences.cache
*.stTheme.cache
*.sublime-workspace
*.sublime-project
*.sublime-project
/examples/test-page.html
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SmartCart v3-Alpha
# SmartCart v3-Beta
#### The awesome jQuery Shopping Cart Plugin with PayPal payment support.

> Notice:- This is an alpha release for preview and tests, some or many functionalities may not work as expected.
> Notice:- This is an Beta release for preview and tests, some or many functionalities may not work as expected.
> Usage on production environment is not recommended unless tested well.
> Please report issue at [GitHub Issues](https://github.com/techlab/SmartCart/issues/)
Expand All @@ -17,8 +17,8 @@ Requirements

Version
-----
**SmartCart v3-Alpha2**
**SmartCart v3-Beta1**

License
----
[MIT License](https://github.com/techlab/SmartCart/blob/v3-alpha/LICENSE)
[MIT License](https://github.com/techlab/SmartCart/blob/v3-beta/LICENSE)
64 changes: 64 additions & 0 deletions dist/css/smart_cart.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@
text-align: right;
}

.sc-cart-toolbar button {
margin-left: 5px;
}

.sc-cart-item img {
margin-right: 10px;
width: 60px;
Expand Down Expand Up @@ -151,4 +155,64 @@
padding: 0;
width: 170px;
height: 32px;
}

/* Loader Animation
Courtesy: http://bootsnipp.com/snippets/featured/loading-button-effect-no-js
*/
@-webkit-keyframes ld {
0% {
-webkit-transform: rotate(0deg) scale(1);
transform: rotate(0deg) scale(1);
}

50% {
-webkit-transform: rotate(180deg) scale(1.1);
transform: rotate(180deg) scale(1.1);
}

100% {
-webkit-transform: rotate(360deg) scale(1);
transform: rotate(360deg) scale(1);
}
}

@keyframes ld {
0% {
-webkit-transform: rotate(0deg) scale(1);
transform: rotate(0deg) scale(1);
}

50% {
-webkit-transform: rotate(180deg) scale(1.1);
transform: rotate(180deg) scale(1.1);
}

100% {
-webkit-transform: rotate(360deg) scale(1);
transform: rotate(360deg) scale(1);
}
}

.loading:before {
content: '';
display: inline-block;
position: absolute;
background: transparent;
border-radius: 50%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 2px solid #fff;
border-top-color: transparent;
border-bottom-color: transparent;
border-left-color: #4285f4;
border-right-color: #4285f4;
top: 50%;
left: 50%;
margin-top: -16px;
margin-left: -16px;
width: 32px;
height: 32px;
-webkit-animation: ld 1s ease-in-out infinite;
animation: ld 1s ease-in-out infinite;
}
2 changes: 1 addition & 1 deletion dist/css/smart_cart.min.css

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

Loading

0 comments on commit bd84420

Please sign in to comment.