Advertisement
Guest User

updates #1 by mendsam css

a guest
Nov 27th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. #uno {
  2. width:15px;
  3. height:15px;
  4. position:fixed;
  5. margin-top:25px;
  6. margin-left:25px;
  7. }
  8.  
  9. #dos {
  10. width:15px;
  11. height:15px;
  12. position:fixed;
  13. margin-top:65px;
  14. margin-left:25px;
  15. }
  16.  
  17. #tres {
  18. width:15px;
  19. height:15px;
  20. position:fixed;
  21. margin-top:105px;
  22. margin-left:25px;
  23. }
  24.  
  25. #snowflake {
  26. font-size:30px;
  27. color:#A3D4FF;
  28. cursor:url(http://media.tumblr.com/tumblr_lqs4idHqTZ1qfoi4t.png), auto;
  29. }
  30.  
  31. #1content, #2content, #3content {
  32. width:140px;
  33. height:0px;
  34. overflow:hidden;
  35. font-size:11px;
  36. font-family:calibri;
  37. margin-left:30px;
  38. margin-top:-25px;
  39. text-align:left;
  40. -webkit-transition: all 0.4s ease-in-out;
  41. -moz-transition: all 0.4s ease-in-out;
  42. -o-transition: all 0.4s ease-in-out;
  43. -ms-transition: all 0.4s ease-in-out;
  44. transition: all 0.4s ease-in-out;
  45. }
  46.  
  47. #uno:hover #1content {
  48. cursor:url(http://media.tumblr.com/tumblr_lqs4idHqTZ1qfoi4t.png), auto;
  49. height:200px;
  50. -webkit-transition: all 0.4s ease-in-out;
  51. -moz-transition: all 0.4s ease-in-out;
  52. -o-transition: all 0.4s ease-in-out;
  53. -ms-transition: all 0.4s ease-in-out;
  54. transition: all 0.4s ease-in-out;
  55. }
  56.  
  57. #dos:hover #2content {
  58. cursor:url(http://media.tumblr.com/tumblr_lqs4idHqTZ1qfoi4t.png), auto;
  59. height:225px;
  60. -webkit-transition: all 0.4s ease-in-out;
  61. -moz-transition: all 0.4s ease-in-out;
  62. -o-transition: all 0.4s ease-in-out;
  63. -ms-transition: all 0.4s ease-in-out;
  64. transition: all 0.4s ease-in-out;
  65. }
  66.  
  67. #tres:hover #3content {
  68. cursor:url(http://media.tumblr.com/tumblr_lqs4idHqTZ1qfoi4t.png), auto;
  69. height:200px;
  70. -webkit-transition: all 0.4s ease-in-out;
  71. -moz-transition: all 0.4s ease-in-out;
  72. -o-transition: all 0.4s ease-in-out;
  73. -ms-transition: all 0.4s ease-in-out;
  74. transition: all 0.4s ease-in-out;
  75. }
  76.  
  77. #1content a, #2content a, #3content a {
  78. color:#ff7ab1;
  79. }
  80.  
  81. #1content a:hover, #2content a:hover, #3content a:hover {
  82. color:black;
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement