Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. //* Mini Profile *//
  2.  
  3. .avatarname {
  4. text-align: left;
  5. margin: 0px 0px 0px 30px;
  6. border-bottom: 1px solid #fafafa;
  7. }
  8.  
  9. .avatarname a {
  10. color: #ffffff;
  11. font-family: Oswald;
  12. font-size: 14px;
  13. letter-spacing:1px;
  14. text-transform:uppercase;
  15. }
  16.  
  17. .miniinfo1 {
  18. width: 62.5px;
  19. background: #eeeeee;
  20. padding: 5px;
  21. color:#777;
  22. font: 9px yanone kaffeesatz;
  23. font-weight: 200;
  24. letter-spacing: 2px;
  25. text-align: center;
  26. text-transform: uppercase;
  27. float: left;
  28. margin-right: 5px;
  29. margin-bottom:5px;
  30. }
  31.  
  32. .miniinfo2 {
  33. width: 62.5px;
  34. background: #eeeeee;
  35. padding: 5px;
  36. color:#777;
  37. font: 9px yanone kaffeesatz;
  38. font-weight: 200;
  39. letter-spacing: 2px;
  40. text-align: center;
  41. text-transform: uppercase;
  42. float: left;
  43. margin-bottom:5px;
  44. }
  45.  
  46. .miniinfo3 {
  47. width: 134px;
  48. background: #eeeeee;
  49. padding: 8px;
  50. color:#777;
  51. font: 9px yanone kaffeesatz;
  52. font-weight: 200;
  53. letter-spacing: 2px;
  54. text-align: center;
  55. text-transform: uppercase;
  56. float: left;
  57. margin-bottom: 5px;
  58. }
  59.  
  60. .miniinfo1 a, .miniinfo2 a {
  61. color:#777;
  62. font: 9px yanone kaffeesatz;
  63. font-weight: 200;
  64. letter-spacing: 2px;
  65. }
  66.  
  67. .miniinfolinks, .miniinfolinks a {
  68. color:#777;
  69. font: 9px yanone kaffeesatz;
  70. font-weight: 200;
  71. letter-spacing: 2px;
  72. text-transform: uppercase;
  73. margin-top:7px;
  74. margin-bottom:7px;
  75. }
  76.  
  77. .membergroup {
  78. color:#222;
  79. font-family: Open sans condensed;
  80. font-size: 15px;
  81. letter-spacing:1px;
  82. text-transform:uppercase;
  83. text-align: right;
  84. margin: -8px 10px 0px 10px;
  85. }
  86.  
  87.  
  88. .profilemini {
  89. width: 200px;
  90. height: 300px;
  91. opacity: 0;
  92. -webkit-transition: 0.5s all ease-in-out;
  93. -moz-transition: 0.5s all ease-in-out;
  94. transition: 0.5s all ease-in-out;
  95. }
  96.  
  97. .profilemini:hover {
  98. width: 200px;
  99. height: 300px;
  100. opacity: 1;
  101. background-color:rgba(155, 155, 155, 0.7);
  102. -webkit-transition: 0.5s all ease-in-out;
  103. -moz-transition: 0.5s all ease-in-out;
  104. transition: 0.5s all ease-in-out;
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement