Advertisement
Neeve

Perfil - we aint ashes - css

Aug 20th, 2015
2,263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. /* P E R F I L E S */
  2. #perfil-cuerpo {
  3. background-color: #fcfcfc;
  4. outline: 1px solid #f3f3f3;
  5. border: 5px solid #fcfcfc;
  6. margin: 1px;
  7. width: 242px;
  8. overflow: hidden;
  9. margin-left: -45px;
  10. margin-top: 6px;
  11. }
  12.  
  13. #perfil-avatar {
  14. outline: 1px solid #f3f3f3;
  15. border: 5px solid #fff;
  16. margin: 1px;
  17. width: 230px;
  18. height: 320px;
  19. overflow: hidden;
  20. margin-top: 5px;
  21. margin-bottom: 5px;
  22. }
  23.  
  24. #perfil-img img {
  25. width: 230px;
  26. height: 320px;
  27. position: static;
  28. -moz-transition: all .7s ease-in-out;
  29. -webkit-transition: all .7s ease-in-out;
  30. transition: all .7s ease-in-out;
  31. transition-delay: 2s;
  32. }
  33.  
  34. #perfil-datos {
  35. width: 220px;
  36. position: absolute;
  37. display: block;
  38. margin-left: 5px;
  39. margin-top: -315px;
  40. overflow: hidden;
  41. }
  42.  
  43. #datos-info {
  44. outline: 1px solid #f3f3f3;
  45. background: #fcfcfc;
  46. margin: 1px;
  47. margin-bottom: 6px;
  48. padding: 5px;
  49. margin-left: 250px;
  50. -moz-transition: all .7s ease-in-out;
  51. -webkit-transition: all .7s ease-in-out;
  52. transition: all .7s ease-in-out;
  53. transition-delay: 2s;
  54. }
  55.  
  56. #info-cont {
  57. width: 204px;
  58. background: #fff;
  59. outline: 1px solid #f3f3f3;
  60. margin: 1px;
  61. margin-bottom: 3px;
  62. padding: 2px;
  63. font-family: verdana;
  64. font-size: 8px;
  65. text-transform: uppercase;
  66. text-align: center;
  67. letter-spacing: 1px;
  68. }
  69.  
  70. #info-sep {display: none;}
  71.  
  72. #datos-contacto {
  73. outline: 1px solid #f3f3f3;
  74. border: 5px solid #fcfcfc;
  75. background: #fff;
  76. margin: 1px;
  77. margin-bottom: 6px;
  78. margin-left: 250px;
  79. -moz-transition: all .7s ease-in-out;
  80. -webkit-transition: all .7s ease-in-out;
  81. transition: all .7s ease-in-out;
  82. transition-delay: 2s;
  83. }
  84.  
  85. #perfil-rango {
  86. outline: 1px solid #f3f3f3;
  87. border: 5px solid #fcfcfc;
  88. background: #fff;
  89. margin: 1px;
  90. margin-left: 250px;
  91. -moz-transition: all .7s ease-in-out;
  92. -webkit-transition: all .7s ease-in-out;
  93. transition: all .7s ease-in-out;
  94. transition-delay: 2s;
  95. }
  96.  
  97. #perfil-cuerpo:hover #perfil-img img {
  98. -webkit-filter: grayscale(100%);
  99. filter: grayscale(100%);
  100. -moz-transition: all .7s ease-in-out;
  101. -webkit-transition: all .7s ease-in-out;
  102. transition: all .7s ease-in-out;
  103. }
  104.  
  105. #perfil-cuerpo:hover #datos-info, #perfil-cuerpo:hover #datos-contacto, #perfil-cuerpo:hover #perfil-rango {
  106. margin-left: 0px;
  107. transition-delay: 1s;
  108. -moz-transition: all .7s ease-in-out;
  109. -webkit-transition: all .7s ease-in-out;
  110. transition: all .7s ease-in-out;
  111. }
  112.  
  113. #perfil-cuerpo:hover #datos-contacto {transition-delay: 2s; }
  114. #perfil-cuerpo:hover #perfil-rango {transition-delay: 3s; }
  115.  
  116. #perfil-fijo {
  117. outline: 1px solid #f3f3f3;
  118. border: 5px solid #fff;
  119. background: #fff;
  120. margin: 1px;
  121. width: 230px;
  122. text-align: center;
  123. }
  124.  
  125. #perfil-nombre, #perfil-nombre a {
  126. font-family: 'Besom';
  127. font-size: 20px;
  128. line-height: 22px;
  129. text-align: right;
  130. padding: right: 5px;
  131. display: block;
  132. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement