Advertisement
vongolacloud18

Diamond Player- CSS

Apr 21st, 2014
1,108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.59 KB | None | 0 0
  1. #daemon {
  2.     width:30px;
  3.     height:30px;
  4.     border:5px solid #000; /* BACKGROUND COLOR*/
  5.     background-color:#000; /* BACKGROUND COLOR*/
  6.     overflow:hidden;
  7.     outline:5px solid #ccc; /*BORDER COLOR*/
  8.     -webkit-transition: all 0.7s ease;
  9.     -moz-transition: all 0.7s ease;
  10.     transition: all 0.7s ease;
  11. }
  12.  
  13. #kero {
  14.     position:fixed;
  15.     bottom:30px;
  16.     left:30px;
  17.     width:40px;
  18.     height:40px;
  19.     transform:rotate(45deg);
  20.     -moz-transform:rotate(45deg);
  21.     -webkit-transform:rotate(45deg);
  22.     -webkit-transition: all 0.7s ease;
  23.     -moz-transition: all 0.7s ease;
  24.     transition: all 0.7s ease;
  25. }
  26.  
  27. #flans {
  28.     transform:rotate(-45deg);
  29.     -moz-transform:rotate(-45deg);
  30.     -webkit-transform:rotate(-45deg);
  31.     padding:10px;
  32.     margin-left:10px;
  33.     margin-top:-02px;
  34.     -webkit-transition: all 0.7s ease;
  35.     -moz-transition: all 0.7s ease;
  36.     transition: all 0.7s ease;
  37. }
  38.  
  39. #kero:hover #daemon{
  40.     transition-delay:.7s;
  41.     width:150px;
  42.     outline:5px solid #fff; /*BORDER COLOR ON HOVER*/
  43. }
  44.  
  45. #kero:hover, #kero:hover #flans {
  46.     transform:rotate(360deg);
  47.     -moz-transform:rotate(360deg);
  48.     -webkit-transform:rotate(360deg);
  49. }
  50.  
  51. #kero:hover #flans {
  52.     padding:0px;
  53.     margin-left:0px;
  54.     margin-top:-15px;
  55. }
  56.  
  57. #daemon:hover #arcobaleno{
  58.     padding-top:10px;
  59. }
  60.  
  61. #kero:hover #arcobaleno {
  62.     transition-delay:.7s;
  63.     opacity:1;
  64. }
  65.  
  66. #arcobaleno {
  67.     padding-top:20px;
  68.     width:150px;
  69.     opacity:0;
  70.         -webkit-transition: all 0.7s ease;
  71.         -moz-transition: all 0.7s ease;
  72.         transition: all 0.7s ease;
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement