Advertisement
vongolacloud18

Disc- (CSS Code)

Sep 20th, 2013
1,175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. #ongaku {
  2. position:fixed;
  3. bottom:15px;
  4. left:15px;
  5. width:40px;
  6. height:40px;
  7. border:1px dotted #777; /*Outer Square Border*/
  8. background-color:#ccc; /*Outer Square Background Color*/
  9. color:#000; /*Box Text Color*/
  10. opacity:1;
  11. }
  12.  
  13. #gaku {
  14. width:24px;
  15. height:24px;
  16. margin-top:7px;
  17. margin-left:7px;
  18. overflow:hidden;
  19. border-radius:30px;
  20. border:1px solid #999; /*Inner Circle Border*/
  21. background-color:#fff; /*Inner Circle Background Color*/
  22. }
  23.  
  24. #kero {
  25. height:26px;
  26. }
  27.  
  28. #kero img {
  29. margin-bottom:10px;
  30. margin-left:3px;
  31. margin-top:3px;
  32. }
  33.  
  34. #kero embed, #kero, #ongaku span, #gaku, #ongaku {
  35. -webkit-transition: all 0.6s ease-in-out;
  36. -moz-transition: all 0.6s ease-in-out;
  37. -ms-transition: all 0.6s ease-in-out;
  38. -o-transition: all 0.6s ease-in-out;
  39. transition: all 0.6s ease-in-out;
  40. }
  41.  
  42. #kero embed {
  43. margin-left:-20px;
  44. }
  45.  
  46. #ongaku:hover {
  47. opacity:1;
  48. border:1px dotted #888; /*Outer Square Border on Hover*/
  49. border-radius:50px;
  50. background-color:#d8d8d8; /*Outer Square Background on Hover*/
  51. }
  52.  
  53. #ongaku:hover #kero {
  54. transition-delay:.5s;
  55. margin-top:-30px;
  56. }
  57.  
  58. #ongaku:hover img {
  59. -webkit-filter: hue-rotate(50deg);
  60. }
  61.  
  62. #ongaku span {
  63. z-index:1;
  64. position:fixed;
  65. margin-top:60px;
  66. margin-left:46px;
  67. font-size:10px;
  68. height:55px;
  69. padding:5px;
  70. line-height:110%;
  71. font-family:calibri;
  72. background-color:#fff; /*Box Background Color*/
  73. border:1px dashed #ccc; /*Box Border*/
  74. opacity:.2;
  75. }
  76.  
  77. #ongaku span ol {
  78. margin:0px;
  79. padding:0px 15px;
  80. }
  81.  
  82. #ongaku:hover span {
  83. margin-top:-30px;
  84. opacity:.8;
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement