Advertisement
Neeve

Perfil WCBN - CSS

Jul 21st, 2015
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. /* P E R F I L D E L O S P E R S O N A J E S */
  2. #pr-cuerpo {
  3. width: 250px;
  4. height: 510px;
  5. overflow: hidden;
  6. margin-left: -25px;
  7. margin-top: -5px;
  8. }
  9.  
  10. #pr-name a {
  11. width: 230px;
  12. padding: 10px;
  13. background: #0d0d0d;
  14. border-bottom: 10px solid #44473E;
  15. font-family: 'Oswald';
  16. font-size: 20px;
  17. font-variant: normal;
  18. font-weight: lighter;
  19. text-shadow: 1px 1px 1px #000;
  20. text-transform: lowercase;
  21. line-height: 35px;
  22. text-align: right;
  23. display: block;
  24. }
  25.  
  26. #pr-name a:after {content: ", "; }
  27. #pr-name a:hover {text-decoration: none; }
  28.  
  29. #pr-avatar {
  30. width: 250px;
  31. height: 400px;
  32. transition: all 1.7s ease-in-out;
  33. -moz-transition: all 1.7s ease-in-out;
  34. -webkit-transition: all 1.7s ease-in-out;
  35. }
  36.  
  37. #pr-info {
  38. width: 230px;
  39. height: 380px;
  40. padding: 10px;
  41. background: #0d0d0d;
  42. margin-top: -445px;
  43. margin-left: 250px;
  44. transition: all 1.7s ease-in-out;
  45. -moz-transition: all 1.7s ease-in-out;
  46. -webkit-transition: all 1.7s ease-in-out;
  47. }
  48.  
  49. #pr-cuerpo:hover #pr-avatar {
  50. margin-left: -250px;
  51. transition: all 1.7s ease-in-out;
  52. -moz-transition: all 1.7s ease-in-out;
  53. -webkit-transition: all 1.7s ease-in-out;
  54. }
  55.  
  56. #pr-cuerpo:hover #pr-info {
  57. margin-left: 0px;
  58. transition: all 1.7s ease-in-out;
  59. -moz-transition: all 1.7s ease-in-out;
  60. -webkit-transition: all 1.7s ease-in-out;
  61. }
  62.  
  63. #pr-conta {
  64. width: 116px;
  65. height: 66px;
  66. display: inline-block;
  67. }
  68.  
  69. #pr-conta a {
  70. margin-bottom: 2px;
  71. display: block;
  72. }
  73.  
  74. #pr-tit {font-size: 0px; height: 0px; } /*elimina el titulo de los datos*/
  75. #pr-sep {margin-bottom: -10px; } /*elimina el espacio entre dato y dato*/
  76.  
  77. #pr-dato {
  78. background: #000;
  79. color: #555;
  80. display: inline-block;
  81. font-size: 8px;
  82. text-transform: uppercase;
  83. letter-spacing: 2px;
  84. margin-right: 0px;
  85. text-align: center;
  86. width: 230px;
  87. line-height: 20px;
  88. }
  89.  
  90. #pr-dato img {width: 230px; }
  91.  
  92. /*caja de los mensajes modificada*/
  93. .pr-campo:first-child #pr-dato {
  94. width: 92px;
  95. padding: 15px 10px;
  96. background: #000;
  97. font-family: 'Oswald';
  98. font-size: 20px;
  99. font-variant: normal;
  100. font-weight: lighter;
  101. text-transform: lowercase;
  102. line-height: 24px;
  103. text-align: center;
  104. display: inline-block;
  105. margin-top: -66px;
  106. margin-left: 118px;
  107. }
  108.  
  109. /*escribe 'mensajes' sin usar el label*/
  110. .pr-campo:first-child #pr-dato:after {
  111. content: "Mensajes";
  112. font-size: 8px;
  113. line-height: 10px;
  114. text-transform: uppercase;
  115. letter-spacing: 2px;
  116. display: block;
  117. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement