Advertisement
tragical

#404 profile css

Sep 16th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 KB | None | 0 0
  1. body{
  2. background:#fff;
  3. color:#727272;
  4. font:12px helvetica;
  5. }
  6.  
  7. h1{
  8. font-weight:normal;
  9. background:#fff;
  10. color:#333;
  11. padding:5px;
  12. margin-bottom:5px;
  13. font-weight:bold;
  14. font-size:13px;
  15. letter-spacing:1px;
  16. border-bottom:1px solid #93bdbf;
  17. }
  18.  
  19. #info-panel{
  20. float:left;
  21. left:200px;
  22. position:relative;
  23. top:-20px;
  24. height:auto;
  25. }
  26.  
  27. #info-panel dl{
  28. margin-top:6px;
  29. }
  30.  
  31. #info-panel dt{
  32. text-align:left;
  33. color:#444;
  34. }
  35.  
  36. #info-panel dd{
  37. text-align:right;
  38. }
  39.  
  40. #link-panel{
  41. float:left;
  42. margin-top:7px;
  43. position:relative;
  44. left:200px;
  45. height:140px;
  46. width:290px;
  47. top:195px;
  48. }
  49.  
  50. #link-panel li{
  51. display:block;
  52. text-align:center;
  53. }
  54.  
  55. #link-panel a, a:visited, #info-panel a, #info-panel a:visited{
  56. color:#93bdbf;
  57. transition:0.5s ease;
  58. -o-transition:0.5s ease;
  59. -moz-transition:0.5s ease;
  60. -webkit-transition:0.5s ease;
  61. }
  62.  
  63. #link-panel a:hover, #info-panel a:hover{
  64. color:#b7b7b7;
  65. }
  66.  
  67. #profile-nav, #profile-nav a{
  68. opacity:0.5;
  69. background:none;
  70. border:none;
  71. transition:0.5s ease;
  72. -o-transition:0.5s ease;
  73. -moz-transition:0.5s ease;
  74. -webkit-transition:0.5s ease;
  75. color:#000;
  76. }
  77.  
  78. #profile-nav a:hover{
  79. opacity:1;
  80. }
  81.  
  82. #custom-5-panel{
  83. height:35px;
  84. overflow:auto;
  85. width:300px;
  86. position:absolute;
  87. background:#fff;
  88. float:right;
  89. top:-20px;
  90. text-align:justify;
  91. line-height:15px;
  92. margin-left:200px;
  93. text-align:center;
  94. padding:0;
  95. z-index:5;
  96. }
  97.  
  98. #custom-5-panel h1{
  99. display:none;
  100. }
  101.  
  102. #custom-5-panel a{
  103. color:#93bdbf;
  104. display:inline-block;
  105. font-size:17px;
  106. font-variant:small-caps;
  107. letter-spacing:1px;
  108. margin:-5px 9px;
  109. padding:10px 6px;
  110. float:left;
  111. text-align:center;
  112. transition:0.5s ease;
  113. -o-transition:0.5s ease;
  114. -moz-transition:0.5s ease;
  115. -webkit-transition:0.5s ease;
  116. }
  117.  
  118. #custom-3-panel{
  119. height:148px;
  120. overflow:auto;
  121. width:290px;
  122. position:absolute;
  123. background:#fff;
  124. float:right;
  125. margin-top:28px;
  126. line-height:17px;
  127. margin-left:200px;
  128. opacity:1;
  129. transition:0.5s ease;
  130. -o-transition:0.5s ease;
  131. -moz-transition:0.5s ease;
  132. -webkit-transition:0.5s ease;
  133. }
  134.  
  135. #custom-4-panel{
  136. height:148px;
  137. overflow:auto;
  138. width:290px;
  139. position:absolute;
  140. background:#fff;
  141. float:right;
  142. margin-top:28px;
  143. line-height:17px;
  144. margin-left:200px;
  145. opacity:0;
  146. transition:0.5s ease;
  147. -o-transition:0.5s ease;
  148. -moz-transition:0.5s ease;
  149. -webkit-transition:0.5s ease;
  150. }
  151.  
  152. #custom-4-panel, #comment-panel:target{
  153. opacity:1;
  154. }
  155.  
  156. #custom-3-panel, #custom-4-panel{
  157. text-align:justify;
  158. }
  159.  
  160. #comment-panel{
  161. text-align:center;
  162. }
  163.  
  164. #custom-3-panel{
  165. z-index:3;
  166. }
  167.  
  168. #custom-4-panel{
  169. z-index:2;
  170. }
  171.  
  172. #comment-panel{
  173. z-index:1;
  174. }
  175.  
  176. #custom-3-panel:target{
  177. z-index:4;
  178. }
  179.  
  180. #custom-4-panel:target{
  181. z-index:5;
  182. }
  183.  
  184. #custom-5-panel a:hover{
  185. color:#b7b7b7;
  186. }
  187.  
  188. .panel{
  189. border:1px solid #b7b7b7;
  190. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement