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

Commit

Permalink
Check-in a brand new theme
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Jun 30, 2014
1 parent ebe238b commit eb453fe
Show file tree
Hide file tree
Showing 472 changed files with 7,870 additions and 0 deletions.
4,994 changes: 4,994 additions & 0 deletions core/src/plugins/gui.ajax/res/themes/orbit/css/ajaxplorer.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions core/src/plugins/gui.ajax/res/themes/orbit/css/allz.css

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions core/src/plugins/gui.ajax/res/themes/orbit/css/allz_list.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
themes/orbit/css/xtree.css
themes/orbit/css/screen.css
themes/orbit/css/ajaxplorer.css
274 changes: 274 additions & 0 deletions core/src/plugins/gui.ajax/res/themes/orbit/css/animate-custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,274 @@
.animated{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;}.animated.hinge{-webkit-animation-duration:1s;-moz-animation-duration:1s;-ms-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;}

.animated.super-quick {
-webkit-animation-duration: 0.15s;
animation-duration: 0.3s;
}

.animated.quick {
-webkit-animation-duration: 0.15s;
animation-duration: 0.3s;
}

.animated.long {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}

@-webkit-keyframes fadeIn {
0% {opacity: 0;} 100% {opacity: 1;}
}

@-moz-keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}

@-o-keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}

@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}

.fadeIn {
-webkit-animation-name: fadeIn;
-moz-animation-name: fadeIn;
-o-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translateX(-20px);
}

100% {
opacity: 1;
-webkit-transform: translateX(0);
}
}

@-moz-keyframes fadeInLeft {
0% {
opacity: 0;
-moz-transform: translateX(-20px);
}

100% {
opacity: 1;
-moz-transform: translateX(0);
}
}

@-o-keyframes fadeInLeft {
0% {
opacity: 0;
-o-transform: translateX(-20px);
}

100% {
opacity: 1;
-o-transform: translateX(0);
}
}

@keyframes fadeInLeft {
0% {
opacity: 0;
transform: translateX(-20px);
}

100% {
opacity: 1;
transform: translateX(0);
}
}

.fadeInLeft {
-webkit-animation-name: fadeInLeft;
-moz-animation-name: fadeInLeft;
-o-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
}

100% {
opacity: 1;
-webkit-transform: translateY(0);
}
}

@-moz-keyframes fadeInUpBig {
0% {
opacity: 0;
-moz-transform: translateY(2000px);
}

100% {
opacity: 1;
-moz-transform: translateY(0);
}
}

@-o-keyframes fadeInUpBig {
0% {
opacity: 0;
-o-transform: translateY(2000px);
}

100% {
opacity: 1;
-o-transform: translateY(0);
}
}

@keyframes fadeInUpBig {
0% {
opacity: 0;
transform: translateY(2000px);
}

100% {
opacity: 1;
transform: translateY(0);
}
}

.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
-moz-animation-name: fadeInUpBig;
-o-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
-webkit-transform: translateY(0);
}

100% {
opacity: 0;
-webkit-transform: translateY(2000px);
}
}

@-moz-keyframes fadeOutDownBig {
0% {
opacity: 1;
-moz-transform: translateY(0);
}

100% {
opacity: 0;
-moz-transform: translateY(2000px);
}
}

@-o-keyframes fadeOutDownBig {
0% {
opacity: 1;
-o-transform: translateY(0);
}

100% {
opacity: 0;
-o-transform: translateY(2000px);
}
}

@keyframes fadeOutDownBig {
0% {
opacity: 1;
transform: translateY(0);
}

100% {
opacity: 0;
transform: translateY(2000px);
}
}

.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
-moz-animation-name: fadeOutDownBig;
-o-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes bounceOutLeft {
0% {
-webkit-transform: translateX(0);
}

20% {
opacity: 1;
-webkit-transform: translateX(20px);
}

100% {
opacity: 0;
-webkit-transform: translateX(-2000px);
}
}

@-moz-keyframes bounceOutLeft {
0% {
-moz-transform: translateX(0);
}

20% {
opacity: 1;
-moz-transform: translateX(20px);
}

100% {
opacity: 0;
-moz-transform: translateX(-2000px);
}
}

@-o-keyframes bounceOutLeft {
0% {
-o-transform: translateX(0);
}

20% {
opacity: 1;
-o-transform: translateX(20px);
}

100% {
opacity: 0;
-o-transform: translateX(-2000px);
}
}

@keyframes bounceOutLeft {
0% {
transform: translateX(0);
}

20% {
opacity: 1;
transform: translateX(20px);
}

100% {
opacity: 0;
transform: translateX(-2000px);
}
}

.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
-moz-animation-name: bounceOutLeft;
-o-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
Loading

0 comments on commit eb453fe

Please sign in to comment.