Advertisement
Guest User

CSS Miniperfil

a guest
Feb 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.27 KB | None | 0 0
  1. .perfil {
  2.     position: relative;
  3.     width: 245px;
  4.     height: 350px;
  5.     overflow: hidden;
  6. }
  7. .postprofile-tab-content.postprofile-tab-content-personal {
  8.     z-index: 3;
  9.     opacity: 0;
  10.     background: #111111;
  11.     height: 350px;
  12.     width: 245px;
  13.     position: absolute;
  14.     top: 356px;
  15.     left: 0px;
  16.     -webkit-transition: 0.8s ease-in-out;
  17.     -moz-transition: 0.8s ease-in-out;
  18.     -ms-transition: 0.8s ease-in-out;
  19.     -o-transition: 0.8s ease-in-out;
  20.     transition: 0.8s ease-in-out;
  21. }
  22. .perfil:hover .postprofile-tab-content.postprofile-tab-content-personal {
  23.     top: 3px;
  24.     -webkit-transition: 0.8s ease-in-out;
  25.     -moz-transition: 0.8s ease-in-out;
  26.     -ms-transition: 0.8s ease-in-out;
  27.     -o-transition: 0.8s ease-in-out;
  28.     transition: 0.8s ease-in-out;
  29.     opacity: 1;
  30. }
  31. .postprofile-rank {
  32.     font-size: 12px;
  33.     margin: 31px;
  34.     text-transform: uppercase;
  35. }
  36. .postprofile-fields {
  37.     height: 200px;
  38. }
  39. .postprofile-field-imagen-de-los-titulos {
  40.     display: none;
  41. }
  42. .postprofile-field-label {
  43.     background: #394341;
  44.     color: #fff;
  45.     float: left;
  46.     font-size: 8px;
  47.     margin-left: -2px;
  48.     margin-top: -3px;
  49.     padding: 3px;
  50. }
  51. .postprofile-field-frase {
  52.     background: #111;
  53.     font-size: 8px;
  54.     height: 50px;
  55.     letter-spacing: .5px;
  56.     margin-bottom: 18px;
  57.     margin-top: 29px;
  58.     overflow: auto;
  59.     padding-left: 37px;
  60.     padding-right: 37px;
  61.     text-align: justify;
  62.     text-transform: uppercase;
  63. }
  64. .postprofile-field-denarios, .postprofile-field-edad, .postprofile-field-especialidad {
  65.     background: #111;
  66.     border: 1px solid #111;
  67.     font-family: calibri;
  68.     font-size: 6px;
  69.     height: 10px;
  70.     letter-spacing: 1px;
  71.     margin-left: 21px;
  72.     margin-top: 5px;
  73.     outline: 1px solid #394341;
  74.     padding: 1px;
  75.     text-align: center;
  76.     text-transform: uppercase;
  77.     width: 199px;
  78. }
  79. .postprofile-avatar {
  80.     position: absolute;
  81.     top: 3px;
  82.     height: 350px;
  83. }
  84. .postprofile-username {
  85.     font-family: calibri;
  86.     font-size: 9px;
  87.     font-weight: 900!important;
  88.     letter-spacing: 1px;
  89.     padding: 19px 15px;
  90.     position: absolute;
  91.     top: 356px;
  92.     width: 215px;
  93.     text-align: left;
  94.     text-transform: uppercase;
  95.     z-index: 3;
  96.     background: #111111;
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement