Advertisement
rpcrandom

Nys

Mar 3rd, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.68 KB | None | 0 0
  1. <style>
  2.  
  3. .pfor {display: none;}
  4. #profile {background-color: Transparent;}
  5. #profile {border: 0px;}
  6.  
  7.  
  8. ::-webkit-scrollbar {width: 3px;}
  9. ::-webkit-scrollbar-track {width: 3px; border-radius: 0px; background-color: #FFF;}
  10. ::-webkit-scrollbar-thumb {width: 3px; border-radius: 0px; background-color: #FFF;}
  11.  
  12.  
  13. body {
  14. background-image:url("");
  15. background-attachment: fixed;
  16. background-repeat: no-repeat;
  17. background-position: center;
  18. background-color: #000000;
  19. }
  20.  
  21. #pic {
  22. position: fixed;
  23. top: 0px;
  24. left: 620px;
  25. z-index: 10;
  26. }
  27.  
  28.  
  29. #secpic {
  30. position: fixed;
  31. top: 300px;
  32. left: 429px;
  33. opacity: 1;
  34. z-index: 30;
  35. transition: all .3s ease-in-out;
  36. -webkit-transition: all .3s ease-in-out;
  37. -moz-transition: all .3s ease-in-out;
  38. -o-transition: all .3s ease-in-out;
  39. -ms-transition: all .3s ease-in-out;
  40. }
  41.  
  42. #secpic:hover {
  43. position: fixed;
  44. opacity: 0;
  45. z-index: 1;
  46. transition: all .3s ease-in-out;
  47. -webkit-transition: all .3s ease-in-out;
  48. -moz-transition: all .3s ease-in-out;
  49. -o-transition: all .3s ease-in-out;
  50. -ms-transition: all .3s ease-in-out;
  51. }
  52.  
  53. #box {
  54. position: fixed;
  55. top: 380px;
  56. left: 223px;
  57. height: 200px;
  58. width: 570px;
  59. background-color: #FFF;
  60. border: solid 6px #292929;
  61. border-radius: 2px 2px 2px 2px;
  62. z-index: 15;
  63. }
  64.  
  65. #navbox {
  66. float: left;
  67. height: 200px;
  68. width: 200px;
  69. background-color: #454545;
  70. border-right: solid 6px #292929;
  71. }
  72.  
  73. #nav {
  74. float: left;
  75. padding: 24px;
  76. margin-top: -15px;
  77. }
  78.  
  79. #nav a {
  80. display: block;
  81. background-color: #292929;
  82. border: 2px solid #292929;
  83. padding: 1px;
  84. margin-top: 15px;
  85. width: 150px;
  86. height: 14px;
  87. text-decoration: none;
  88. color: #FFF;
  89. font-family: 'Roboto', sans-serif;
  90. font-size: 11px;
  91. font-variant: small-caps;
  92. transition: all .3s ease-in-out;
  93. -webkit-transition: all .3s ease-in-out;
  94. -moz-transition: all .3s ease-in-out;
  95. -o-transition: all .3s ease-in-out;
  96. -ms-transition: all .3s ease-in-out;
  97. }
  98.  
  99. #nav a:hover {
  100. color: #292929;
  101. transition: all .3s ease-in-out;
  102. -webkit-transition: all .3s ease-in-out;
  103. -moz-transition: all .3s ease-in-out;
  104. -o-transition: all .3s ease-in-out;
  105. -ms-transition: all .3s ease-in-out;
  106. }
  107.  
  108. .shift {
  109. position: fixed;
  110. height: 200px;
  111. width: 364px;
  112. overflow: auto;
  113. left: 980px;
  114. top: 386px;
  115. background-color: #FFF;
  116. opacity: 0;
  117. transition: all 0.0s ease-in-out;
  118. -webkit-transition: all 0.0s ease-in-out;
  119. -moz-transition: all 0.0s ease-in-out;
  120. -o-transition: all 0.0s ease-in-out;
  121. -ms-transition: all 0.0s ease-in-out;
  122. }
  123.  
  124. .shift:target {
  125. left: 435px;
  126. opacity: 1.0;
  127. transition: all 0.0s ease-in-out;
  128. -webkit-transition: all 0.0s ease-in-out;
  129. -moz-transition: all 0.0s ease-in-out;
  130. -o-transition: all 0.0s ease-in-out;
  131. -ms-transition: all 0.0s ease-in-out;
  132. }
  133.  
  134. #rightbox {
  135. float: left;
  136. height: 190px;
  137. width: 364px;
  138. }
  139.  
  140. #boxtext {
  141. padding: 10px;
  142. font-family: 'Roboto', sans-serif;
  143. font-size: 10px;
  144. color: #000000;
  145. text-align: justify;
  146. overflow: hidden;
  147. }
  148.  
  149. h1 {
  150. font-family: 'Roboto';
  151. font-size: 10px;
  152. letter-spacing: 2px;
  153. line-height: 13px;
  154. padding: 2px;
  155. color: #000000;
  156. border-bottom: solid 1px #000;
  157. margin-top: -5px;
  158. text-align: right;
  159. }
  160.  
  161. a, a:visited {
  162. text-decoration: none;
  163. opacity: 0.7;
  164. transition: all 0.7s ease-in-out;
  165. -webkit-transition: all 0.7s ease-in-out;
  166. -moz-transition: all 0.7s ease-in-out;
  167. -o-transition: all 0.7s ease-in-out;
  168. -ms-transition: all 0.7s ease-in-out;
  169. }
  170.  
  171. a:hover {
  172. opacity: 1.0;
  173. text-decoration: none;
  174. transition: all 0.7s ease-in-out;
  175. -webkit-transition: all 0.7s ease-in-out;
  176. -moz-transition: all 0.7s ease-in-out;
  177. -o-transition: all 0.7s ease-in-out;
  178. -ms-transition: all 0.7s ease-in-out;
  179. }
  180.  
  181. </style>
  182.  
  183. <img src="http://i.imgbox.com/CceAhXsh.png" id="pic" width="460px" height="620px">
  184.  
  185. <img src="" id="secpic">
  186.  
  187.  
  188. <div id="box">
  189. <div id="navbox">
  190. <div id="nav">
  191.  
  192. <a href="#five">Stats</a>
  193. <a href="#two">History</a>
  194. <a href="#three">Gallery</a>
  195. <a href="#four">Friends</a>
  196. <a href="#one">OOC</a>
  197.  
  198. </div></div>
  199.  
  200. <div id="rightbox">
  201. <div id="boxtext">
  202. <h1><i>Title.</i></h1>
  203. <br>
  204. <b>Name:</b> Nyssa <br>
  205. <b>Age:</b> Twenty-one <br>
  206. <b>Sex:</b> Female <br>
  207. <b>Height:</b> 5'2 <br>
  208. <b>Weight:</b> 121 lbs. <br>
  209. <b>Eye color:</b> <br>
  210. <b>Hair color:</b> <br>
  211. <b>Status:</b> Single <br>
  212. <b>Kinks:</b> <a href="" target="_blank">F-List</a><br>
  213.  
  214. </div></div>
  215.  
  216.  
  217. <div id="four" class="shift">
  218. <div id="boxtext">
  219. <h1><i>Title</i></h1>
  220.  
  221. Friends
  222.  
  223. </div></div>
  224. <div id="three" class="shift">
  225. <div id="boxtext">
  226. <h1><i>Gallery</i></h1>
  227. <center>
  228.  
  229. </center>
  230. </div></div>
  231.  
  232. <div id="two" class="shift">
  233. <div id="boxtext">
  234. Words
  235.  
  236. </div></div>
  237.  
  238. <div id="one" class="shift">
  239. <div id="boxtext">
  240. <h1><i>OOC</i></h1>
  241.  
  242. </div></div>
  243.  
  244. </div></div></center></div></center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement