pyc-website

main website for pyc inc.

git clone https://9o.is/git/pyc-website.git

main-animated.less

(1419B)


      1 /*
      2  * ANIMATED
      3  */
      4 
      5 /* Navigation icon first level 
      6 .desktop-detected nav > ul > li > a:hover i {
      7 	-webkit-animation-name: wobble;
      8 	-moz-animation-name: wobble;
      9 	-o-animation-name: wobble;
     10 	animation-name: wobble;
     11 }
     12 
     13 .desktop-detected nav > ul > li > a:hover i {
     14 	-webkit-animation-duration: .7s;
     15 	-moz-animation-duration: .7s;
     16 	-o-animation-duration: .7s;
     17 	animation-duration: .7s;
     18 	-webkit-animation-fill-mode: both;
     19 	-moz-animation-fill-mode: both;
     20 	-o-animation-fill-mode: both;
     21 	animation-fill-mode: both;
     22 }*/
     23 
     24 
     25 
     26 /* All dropdowns */
     27 .open > .dropdown-menu {
     28 	-webkit-animation-name: flipInX;
     29 	-moz-animation-name: flipInX;
     30 	-o-animation-name: flipInX;
     31 	animation-name: flipInX;
     32 }
     33 
     34 .open > .dropdown-menu {
     35 	-webkit-animation-duration: .4s;
     36 	-moz-animation-duration: .4s;
     37 	-o-animation-duration: .4s;
     38 	animation-duration: .4s;
     39 	-webkit-animation-fill-mode: both;
     40 	-moz-animation-fill-mode: both;
     41 	-o-animation-fill-mode: both;
     42 	animation-fill-mode: both;
     43 }
     44 
     45 .active + .ajax-dropdown {
     46 	-webkit-animation-name: flipInY;
     47 	-moz-animation-name: flipInY;
     48 	-o-animation-name: flipInY;
     49 	animation-name: flipInY;
     50 	-webkit-animation-duration: .7s;
     51 	-moz-animation-duration: .7s;
     52 	-o-animation-duration: .7s;
     53 	animation-duration: .7s;
     54 	-webkit-animation-fill-mode: both;
     55 	-moz-animation-fill-mode: both;
     56 	-o-animation-fill-mode: both;
     57 	animation-fill-mode: both;
     58 }
     59