Skip to content

Commit ea5c3f6

Browse files
committed
setup gh-pages
0 parents  commit ea5c3f6

32 files changed

+17425
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

README.mkd

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# jQuery Sortable
2+
3+
jQuery Sortable is a flexible, opinionated sorting plugin. Its aim is to do one thing: sorting
4+
5+
## Dependencies
6+
7+
jquery
8+
9+
## Development Dependencies
10+
11+
See the Gemfile

css/all.css

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
@charset "utf-8";
2+
3+
body {
4+
background: #d4d4d4 url("../images/background.png");
5+
text-align: center;
6+
font-family: sans-serif; }
7+
8+
h1 {
9+
color: rgba(0, 0, 0, .3);
10+
font-weight: bold;
11+
font-size: 32px;
12+
letter-spacing: -1px;
13+
text-transform: uppercase;
14+
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
15+
background: url("../images/middleman.png") no-repeat center 100px;
16+
padding: 350px 0 10px;
17+
margin: 0; }
18+
19+
.doc {
20+
font-size: 14px;
21+
margin: 0; }
22+
.doc:before,
23+
.doc:after {
24+
opacity: .2;
25+
padding: 6px;
26+
font-style: normal;
27+
position: relative;
28+
content: "•"; }
29+
.doc a {
30+
color: rgba(0, 0, 0, 0.3); }
31+
.doc a:hover {
32+
color: #666; }
33+
34+
.welcome {
35+
-webkit-animation-name: welcome;
36+
-webkit-animation-duration: .9s; }
37+
38+
@-webkit-keyframes welcome {
39+
from {
40+
-webkit-transform: scale(0);
41+
opacity: 0;
42+
}
43+
50% {
44+
-webkit-transform: scale(0);
45+
opacity: 0;
46+
}
47+
82.5% {
48+
-webkit-transform: scale(1.03);
49+
-webkit-animation-timing-function: ease-out;
50+
opacity: 1;
51+
}
52+
to {
53+
-webkit-transform: scale(1);
54+
}
55+
}

0 commit comments

Comments
 (0)