|
@@ -24,6 +24,10 @@
|
|
|
position: relative;
|
|
|
margin-bottom: 20px;
|
|
|
opacity: 0.8;
|
|
|
+ -webkit-animation-duration: 1.5s;
|
|
|
+ animation-duration: 1.5s;
|
|
|
+ -webkit-animation-fill-mode: both;
|
|
|
+ animation-fill-mode: both;
|
|
|
}
|
|
|
|
|
|
#sidebar #tool-bar .tool:hover,
|
|
@@ -161,3 +165,29 @@
|
|
|
.hidden {
|
|
|
display: none !important;
|
|
|
}
|
|
|
+
|
|
|
+@-webkit-keyframes fadeInRight {
|
|
|
+ 0% {
|
|
|
+ opacity: 0;
|
|
|
+ -webkit-transform: translateX(20px);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ opacity: 1;
|
|
|
+ -webkit-transform: translateX(0);
|
|
|
+ }
|
|
|
+}
|
|
|
+@keyframes fadeInRight {
|
|
|
+ 0% {
|
|
|
+ opacity: 0;
|
|
|
+ transform: translateX(20px);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ opacity: 1;
|
|
|
+ transform: translateX(0);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.fadeInRight {
|
|
|
+ -webkit-animation-name: fadeInRight;
|
|
|
+ animation-name: fadeInRight;
|
|
|
+}
|