Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5.69 KB | None | 0 0
  1. #cloud, #dott_1, #dott_2{
  2.     fill: #f8f8f8;
  3.     stroke-width: 2;
  4.     stroke: #f8f8f8;
  5. }
  6. #logo:hover #cloud, #logo:hover #dott_2, #logo:hover #dott_1 {
  7.     fill: @color;
  8.  
  9. }
  10.  
  11. #cloud{
  12.     stroke-dasharray: 370;
  13.     stroke-dashoffset: 370;
  14.    
  15.     -webkit-animation: logoSVG 4s linear;
  16.     -moz-animation: logoSVG 4s linear;
  17.     -ms-animation: logoSVG 4s linear;
  18.     -o-animation: logoSVG 4s linear;
  19.     animation: logoSVG 4s linear;
  20. }
  21.  
  22. #dott_1{
  23.     stroke-dasharray: 100;
  24.     stroke-dashoffset: 100;
  25.    
  26.     -webkit-animation: dott_1 2s linear;
  27.     -moz-animation: dott_1 2s linear;
  28.     -ms-animation: dott_1 2s linear;
  29.     -o-animation: dott_1 2s linear;
  30.     animation: dott_1 2s linear;
  31. }
  32. #dott_2{
  33.     stroke-dasharray: 100;
  34.     stroke-dashoffset: 100;
  35.  
  36.     -webkit-animation: dott_2 3s linear;
  37.     -moz-animation: dott_2 3s linear;
  38.     -ms-animation: dott_2 3s linear;
  39.     -o-animation: dott_2 3s linear;
  40.     animation: dott_2 3s linear;
  41. }
  42. @-webkit-keyframes logoSVG {
  43.     0% {
  44.         stroke-dashoffset: 370;
  45.         stroke-opacity: 1;
  46.         fill-opacity: 0;
  47.     }
  48.    
  49.     50% {
  50.         stroke-dashoffset: 370;
  51.         stroke-opacity: 1;
  52.     }
  53.     90%{
  54.         stroke-dashoffset: 0;
  55.         stroke-opacity: 1;
  56.         fill-opacity: 0;
  57.     }
  58.     100%{
  59.         stroke-dashoffset: 0;
  60.         fill-opacity: 1;
  61.         stroke-opacity: 0;
  62.     }
  63. }
  64. @-webkit-keyframes dott_1 {
  65.     0% {
  66.         stroke-dashoffset: 100;
  67.         fill-opacity: 0;
  68.     }
  69.    
  70.     33% {
  71.         stroke-dashoffset: 0;
  72.     }
  73.    
  74.     66%{
  75.         stroke-dashoffset: 0;
  76.     }
  77.    
  78.     90%{
  79.         stroke-dashoffset: 0;
  80.         stroke-opacity: 1;
  81.         fill-opacity: 0;
  82.     }
  83.     100%{
  84.         stroke-dashoffset: 0;
  85.         fill-opacity: 1;
  86.         stroke-opacity: 0;
  87.     }
  88. }
  89.  
  90. @-webkit-keyframes dott_2 {
  91.     0% {
  92.         stroke-dashoffset: 100;
  93.         fill-opacity: 0;
  94.     }
  95.    
  96.     33% {
  97.         stroke-dashoffset: 100;
  98.     }
  99.    
  100.     66%{
  101.         stroke-dashoffset: 0;
  102.     }
  103.    
  104.     90%{
  105.         stroke-dashoffset: 0;
  106.         stroke-opacity: 1;
  107.         fill-opacity: 0;
  108.     }
  109.     100%{
  110.         stroke-dashoffset: 0;
  111.         fill-opacity: 1;
  112.         stroke-opacity: 0;
  113.     }
  114. }
  115.  
  116. @-moz-keyframes logoSVG {
  117.     0% {
  118.         stroke-dashoffset: 370;
  119.         stroke-opacity: 1;
  120.         fill-opacity: 0;
  121.     }
  122.    
  123.     50% {
  124.         stroke-dashoffset: 370;
  125.         stroke-opacity: 1;
  126.     }
  127.     90%{
  128.         stroke-dashoffset: 0;
  129.         stroke-opacity: 1;
  130.         fill-opacity: 0;
  131.     }
  132.     100%{
  133.         stroke-dashoffset: 0;
  134.         fill-opacity: 1;
  135.         stroke-opacity: 0;
  136.     }
  137. }
  138. @-moz-keyframes dott_1 {
  139.     0% {
  140.         stroke-dashoffset: 100;
  141.         fill-opacity: 0;
  142.     }
  143.    
  144.     33% {
  145.         stroke-dashoffset: 0;
  146.     }
  147.    
  148.     66%{
  149.         stroke-dashoffset: 0;
  150.     }
  151.    
  152.     90%{
  153.         stroke-dashoffset: 0;
  154.         stroke-opacity: 1;
  155.         fill-opacity: 0;
  156.     }
  157.     100%{
  158.         stroke-dashoffset: 0;
  159.         fill-opacity: 1;
  160.         stroke-opacity: 0;
  161.     }
  162. }
  163.  
  164. @-moz-keyframes dott_2 {
  165.     0% {
  166.         stroke-dashoffset: 100;
  167.         fill-opacity: 0;
  168.     }
  169.    
  170.     33% {
  171.         stroke-dashoffset: 100;
  172.     }
  173.    
  174.     66%{
  175.         stroke-dashoffset: 0;
  176.     }
  177.    
  178.     90%{
  179.         stroke-dashoffset: 0;
  180.         stroke-opacity: 1;
  181.         fill-opacity: 0;
  182.     }
  183.     100%{
  184.         stroke-dashoffset: 0;
  185.         fill-opacity: 1;
  186.         stroke-opacity: 0;
  187.     }
  188. }
  189. @-ms-keyframes logoSVG {
  190.     0% {
  191.         stroke-dashoffset: 370;
  192.         stroke-opacity: 1;
  193.         fill-opacity: 0;
  194.     }
  195.    
  196.     50% {
  197.         stroke-dashoffset: 370;
  198.         stroke-opacity: 1;
  199.     }
  200.     90%{
  201.         stroke-dashoffset: 0;
  202.         stroke-opacity: 1;
  203.         fill-opacity: 0;
  204.     }
  205.     100%{
  206.         stroke-dashoffset: 0;
  207.         fill-opacity: 1;
  208.         stroke-opacity: 0;
  209.     }
  210. }
  211. @-ms-keyframes dott_1 {
  212.     0% {
  213.         stroke-dashoffset: 100;
  214.         fill-opacity: 0;
  215.     }
  216.    
  217.     33% {
  218.         stroke-dashoffset: 0;
  219.     }
  220.    
  221.     66%{
  222.         stroke-dashoffset: 0;
  223.     }
  224.    
  225.     90%{
  226.         stroke-dashoffset: 0;
  227.         stroke-opacity: 1;
  228.         fill-opacity: 0;
  229.     }
  230.     100%{
  231.         stroke-dashoffset: 0;
  232.         fill-opacity: 1;
  233.         stroke-opacity: 0;
  234.     }
  235. }
  236.  
  237. @-ms-keyframes dott_2 {
  238.     0% {
  239.         stroke-dashoffset: 100;
  240.         fill-opacity: 0;
  241.     }
  242.    
  243.     33% {
  244.         stroke-dashoffset: 100;
  245.     }
  246.    
  247.     66%{
  248.         stroke-dashoffset: 0;
  249.     }
  250.    
  251.     90%{
  252.         stroke-dashoffset: 0;
  253.         stroke-opacity: 1;
  254.         fill-opacity: 0;
  255.     }
  256.     100%{
  257.         stroke-dashoffset: 0;
  258.         fill-opacity: 1;
  259.         stroke-opacity: 0;
  260.     }
  261. }
  262. @-o-keyframes logoSVG {
  263.     0% {
  264.         stroke-dashoffset: 370;
  265.         stroke-opacity: 1;
  266.         fill-opacity: 0;
  267.     }
  268.    
  269.     50% {
  270.         stroke-dashoffset: 370;
  271.         stroke-opacity: 1;
  272.     }
  273.     90%{
  274.         stroke-dashoffset: 0;
  275.         stroke-opacity: 1;
  276.         fill-opacity: 0;
  277.     }
  278.     100%{
  279.         stroke-dashoffset: 0;
  280.         fill-opacity: 1;
  281.         stroke-opacity: 0;
  282.     }
  283. }
  284. @-o-keyframes dott_1 {
  285.     0% {
  286.         stroke-dashoffset: 100;
  287.         fill-opacity: 0;
  288.     }
  289.    
  290.     33% {
  291.         stroke-dashoffset: 0;
  292.     }
  293.    
  294.     66%{
  295.         stroke-dashoffset: 0;
  296.     }
  297.    
  298.     90%{
  299.         stroke-dashoffset: 0;
  300.         stroke-opacity: 1;
  301.         fill-opacity: 0;
  302.     }
  303.     100%{
  304.         stroke-dashoffset: 0;
  305.         fill-opacity: 1;
  306.         stroke-opacity: 0;
  307.     }
  308. }
  309.  
  310. @-o-keyframes dott_2 {
  311.     0% {
  312.         stroke-dashoffset: 100;
  313.         fill-opacity: 0;
  314.     }
  315.    
  316.     33% {
  317.         stroke-dashoffset: 100;
  318.     }
  319.    
  320.     66%{
  321.         stroke-dashoffset: 0;
  322.     }
  323.    
  324.     90%{
  325.         stroke-dashoffset: 0;
  326.         stroke-opacity: 1;
  327.         fill-opacity: 0;
  328.     }
  329.     100%{
  330.         stroke-dashoffset: 0;
  331.         fill-opacity: 1;
  332.         stroke-opacity: 0;
  333.     }
  334. }
  335. @keyframes logoSVG {
  336.     0% {
  337.         stroke-dashoffset: 370;
  338.         stroke-opacity: 1;
  339.         fill-opacity: 0;
  340.     }
  341.    
  342.     50% {
  343.         stroke-dashoffset: 370;
  344.         stroke-opacity: 1;
  345.     }
  346.     90%{
  347.         stroke-dashoffset: 0;
  348.         stroke-opacity: 1;
  349.         fill-opacity: 0;
  350.     }
  351.     100%{
  352.         stroke-dashoffset: 0;
  353.         fill-opacity: 1;
  354.         stroke-opacity: 0;
  355.     }
  356. }
  357. @keyframes dott_1 {
  358.     0% {
  359.         stroke-dashoffset: 100;
  360.         fill-opacity: 0;
  361.     }
  362.    
  363.     33% {
  364.         stroke-dashoffset: 0;
  365.     }
  366.    
  367.     66%{
  368.         stroke-dashoffset: 0;
  369.     }
  370.    
  371.     90%{
  372.         stroke-dashoffset: 0;
  373.         stroke-opacity: 1;
  374.         fill-opacity: 0;
  375.     }
  376.     100%{
  377.         stroke-dashoffset: 0;
  378.         fill-opacity: 1;
  379.         stroke-opacity: 0;
  380.     }
  381. }
  382.  
  383. @keyframes dott_2 {
  384.     0% {
  385.         stroke-dashoffset: 100;
  386.         fill-opacity: 0;
  387.     }
  388.    
  389.     33% {
  390.         stroke-dashoffset: 100;
  391.     }
  392.    
  393.     66%{
  394.         stroke-dashoffset: 0;
  395.     }
  396.    
  397.     90%{
  398.         stroke-dashoffset: 0;
  399.         stroke-opacity: 1;
  400.         fill-opacity: 0;
  401.     }
  402.     100%{
  403.         stroke-dashoffset: 0;
  404.         fill-opacity: 1;
  405.         stroke-opacity: 0;
  406.     }
  407. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement