Skip to content

Commit

Permalink
Tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
davebalmer committed Sep 2, 2010
1 parent 543f89b commit fcddee7
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
10 changes: 5 additions & 5 deletions css/aluminum/aluminum.css
Expand Up @@ -72,7 +72,7 @@ jocontainer {
joinput, jotextarea {
cursor: text;
display: block;
border: 1px solid #000;
border: 2px solid #000;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
Expand Down Expand Up @@ -304,7 +304,7 @@ jogroup {
display: block;
margin: 10px;
padding: 0;
border: 1px solid rgba(0, 0, 0, .5);
border: 2px solid rgba(0, 0, 0, .5);
background: rgba(255, 255, 255, .2);
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
Expand Down Expand Up @@ -352,7 +352,7 @@ joexpandotitle {
-moz-border-radius: 1.2em;
border-radius: 1.2em;
padding: 10px;
border: 1px solid rgba(0, 0, 0, .8);
border: 2px solid rgba(0, 0, 0, .8);
margin: 10px 10px 0 10px;
position: relative;
cursor: pointer;
Expand Down Expand Up @@ -447,8 +447,8 @@ joscroller > * {
}

.flick {
-webkit-transition: top 1s ease-in;
-webkit-transition: top 1s cubic-bezier(0, 0, 0.2, 1);
-webkit-transition: top .5s ease-in;
-webkit-transition: top .5s cubic-bezier(0, 0, 0.2, 1);
}

.flickback {
Expand Down
4 changes: 2 additions & 2 deletions css/aluminum/chrome.css
@@ -1,13 +1,13 @@
/* simplified CSS3 transitions for less advanced webkits */
jostack {
position: relative;
-webkit-transition: opacity .4s ease-out;
-webkit-transition: opacity .2s ease-out;
}

jostack > * {
/* -webkit-transform-origin: 50% 100% 0; */
-webkit-transform: rotateZ(0);
-webkit-transition: -webkit-transform .4s ease-out;
-webkit-transition: -webkit-transform .2s ease-out;

outline: 1px solid transparent;
}
Expand Down
18 changes: 9 additions & 9 deletions css/aluminum/webkit.css
@@ -1,24 +1,24 @@
jostack {
position: relative;
-webkit-transition: opacity .4s ease-out;
-moz-transition: opacity .4s ease-out;
-o-transition: opacity .4s ease-out;
-webkit-transition: opacity .3s ease-out;
-moz-transition: opacity .3s ease-out;
-o-transition: opacity .3s ease-out;
}

jostack > * {
-webkit-transform-origin: 50% 100% 0;
-webkit-transform: rotateZ(0);
-webkit-transition: -webkit-transform .8s ease-out, outline .8s ease-out;
-webkit-transition: -webkit-transform .3s ease-out, outline .3s ease-out;

-moz-transform-origin: 50% 200% 0;
-moz-transform: rotateZ(0) translateZ(0);
-moz-transition: -moz-transform .8s ease-out;
-moz-transition: -moz-transform .3s ease-out;

-o-transform-origin: 50% 200% 0;
-o-transform: rotateZ(0);
-o-transition: -o-transform .8s ease-out;
-o-transition: -o-transform .3s ease-out;

outline: 1px solid transparent;
/* outline: 1px solid transparent; */
}

jostack > .next {
Expand All @@ -31,7 +31,7 @@ jostack > .next {
-o-transform: rotateZ(45deg);
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .5);

outline: 1px solid #000;
/* outline: 1px solid #000; */
}

jostack > .prev {
Expand All @@ -44,5 +44,5 @@ jostack > .prev {
-o-transform: rotateZ(-45deg);
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .5);

outline: 1px solid #000;
/* outline: 1px solid #000; */
}

0 comments on commit fcddee7

Please sign in to comment.