thisisnotras

Alter profile 7/30/16.

Jul 30th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.89 KB | None | 0 0
  1. <style>
  2.  
  3. ::-webkit-scrollbar {
  4. width: 4px;
  5. background-color: transparent;
  6. }
  7.  
  8.  
  9. ::-webkit-scrollbar-thumb {
  10. border-radius: 0px;
  11. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  12. background-color: #000000;
  13. }
  14.  
  15.  
  16.  
  17. #whole{
  18. position: fixed;
  19. left: 0px;
  20. right: 0px;
  21. top: 0px;
  22. bottom: 0px;
  23. background: gray;
  24. }
  25.  
  26. #whole2{
  27. position: fixed;
  28. left: 0px;
  29. right: 0px;
  30. top: 0px;
  31. bottom: 0px;
  32. margin: auto;
  33. width: 100%;
  34. height: 50%;
  35. background-color: gray;
  36. background-image:
  37. repeating-linear-gradient(120deg, rgba(255,255,255,.1), rgba(255,255,255,.1) 1px, transparent 1px, transparent 60px),
  38. repeating-linear-gradient(60deg, rgba(255,255,255,.1), rgba(255,255,255,.1) 1px, transparent 1px, transparent 60px),
  39. linear-gradient(60deg, rgba(0,0,0,.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.1) 75%, rgba(0,0,0,.1)),
  40. linear-gradient(120deg, rgba(0,0,0,.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.1) 75%, rgba(0,0,0,.1));
  41. background-size: 70px 120px;
  42. }
  43.  
  44. #alterimage{
  45. position: fixed;
  46. top: 0px;
  47. left: 0px;
  48. right: 0px;
  49. bottom: 0px;
  50. margin: auto;
  51. background-image:url(http://i68.tinypic.com/2hwnsar.jpg);
  52. background-size: auto 100%;
  53. background-position: bottom left 65%;
  54. background-repeat: no-repeat;}
  55.  
  56. @font-face{
  57. src:url(https://dl.dropboxusercontent.com/u/4556289/direwolfcondital.ttf);
  58. font-family:'direwolf';
  59. }
  60.  
  61. #titlepiece{
  62. position: absolute;
  63. top: -100px;
  64. left: -50%;
  65. right: 0px;
  66. margin: auto;
  67. height: 200px;
  68. width: 200px;
  69. font-family: 'direwolf';
  70. font-size: 120px;
  71. letter-spacing: 20px;
  72. color: black;
  73. text-shadow: 2px 2px 2px #1c222c;}
  74.  
  75. #contentarea{
  76. position: absolute;
  77. top: 0px;
  78. left: -45%;
  79. right: 0px;
  80. bottom: 0px;
  81. margin: auto;
  82. border: 0px solid black;
  83. height: 300px;
  84. width: 300px;
  85. z-index: 1;
  86. }
  87.  
  88. #backgroundfill{
  89. position: absolute;
  90. height: 100%;
  91. width: 100%;
  92. background: gray;
  93. -webkit-filter:blur(30px);
  94. border-radius: 30px 30px 30px 30px;
  95. }
  96.  
  97. .diamonddiv{
  98. position: absolute;
  99. opacity: .9;
  100. -webkit-transition: all 2s;
  101. transition: all 2s;
  102. z-index: 1;
  103. }
  104.  
  105. .diamonddiv *{
  106. zoom: 60%;
  107. }
  108.  
  109. .diamonddiv:nth-child(3){
  110. top: 100px; left: 70px;
  111. }
  112. .diamonddiv:nth-child(5){
  113. top: 170px; left: 120px;
  114. z-index: 2;
  115. }
  116. .diamonddiv:nth-child(4){
  117. top: 100px; left: 170px;
  118. }
  119. .diamonddiv:nth-child(2){
  120. top: 30px; left: 120px;
  121. }
  122.  
  123. #diamond-narrow {
  124. width: 0;
  125. height: 0;
  126. border: 50px solid transparent;
  127. border-bottom: 70px solid black;
  128. position: relative;
  129. top: -50px;
  130. -webkit-transition: all 1s;
  131. transition: all 1s;
  132. }
  133. #diamond-narrow:after {
  134. content: '';
  135. position: absolute;
  136. margin: -50px; margin-top: 70px;
  137. width: 0;
  138. height: 0;
  139. border: 50px solid transparent;
  140. border-top: 70px solid black;
  141. -webkit-transition: all 1s;
  142. transition: all 1s;
  143. }
  144.  
  145. .diamonddiv:hover #diamond-narrow:after{
  146. border-top: 70px solid #8B323E;
  147. }
  148.  
  149. .diamonddiv:hover #diamond-narrow{border-bottom: 70px solid #8B323E;}
  150.  
  151. @font-face {
  152. src: url(https://dl.dropboxusercontent.com/u/4556289/somepx.ttf);
  153. font-family: 'bodyfont';
  154. }
  155.  
  156.  
  157. #diamondlabel{
  158. position: fixed;
  159. height: 50px;
  160. width: 100px;
  161. border: 0px solid black;
  162. background: black;
  163. z-index: 1;
  164. opacity: .8;
  165. display: none;
  166. color: gray;
  167. border-radius: 5px 5px 5px 5px;
  168. box-sizing: border-box;
  169. text-align: center;
  170. font-size: 40pt;
  171. font-family: 'bodyfont';
  172. }
  173.  
  174. .diamonddiv:nth-child(2):hover #diamondlabel,
  175. .diamonddiv:nth-child(3):hover #diamondlabel,
  176. .diamonddiv:nth-child(4):hover #diamondlabel{
  177. display: block;
  178. }
  179.  
  180. .diamonddiv:nth-child(2) #diamondlabel{
  181. margin-left: 0px;
  182. margin-top: -180px;
  183. }
  184. .diamonddiv:nth-child(3) #diamondlabel{
  185. margin-left: -130px;
  186. margin-top: -75px;
  187. }
  188. .diamonddiv:nth-child(4) #diamondlabel{
  189. margin-left: 130px;
  190. margin-top: -75px;
  191. }
  192. .diamonddiv:nth-child(5) #diamondlabel{
  193. margin-top: -110px;
  194. margin-left: 110px;
  195. }
  196.  
  197. #decisions1:target .diamonddiv,
  198. #decisions2:target .diamonddiv,
  199. #decisions3:target .diamonddiv{
  200. top: 0px;
  201. left: 0px;
  202. }
  203.  
  204. .contentbox{
  205. position: absolute;
  206. left: 30px;
  207. top: 42px;
  208. height: 240px;
  209. width: 240px;
  210. border: 1px solid black;
  211. border-radius: 0px 10px 10px 10px;
  212. -webkit-transition: all 1s;
  213. transition: all 1s;
  214. opacity: 0;
  215. z-index: 0;
  216. overflow: hidden;
  217. }
  218.  
  219. #decisions1:target #content1,
  220. #decisions2:target #content2,
  221. #decisions3:target #content3{
  222. opacity: 1;
  223. -webkit-transition: all 1s 2s;
  224. transition: all 1s 2s;
  225. z-index: 3;
  226. }
  227.  
  228. .contentbox h1{
  229. position: absolute;
  230. left: 23px;
  231. top: -7px;
  232. text-align: right;
  233. font-size: 20pt;
  234. font-family:'direwolf';
  235. color: black;
  236. letter-spacing: 3px;
  237. }
  238.  
  239. #contentcontent{
  240. position: absolute;
  241. top: 40px;
  242. bottom: 2px;
  243. left: 10px;
  244. box-sizing: border-box;
  245. padding-right: 10px;
  246. overflow: auto;
  247. color: black;
  248. font-family: Arial;
  249. font-style: italic;
  250. font-size: 9pt;
  251. text-align: justify;
  252. text-justify: inter-word;
  253. }
  254.  
  255. #decisions1:target .diamonddiv:nth-child(5):hover,
  256. #decisions2:target .diamonddiv:nth-child(5):hover,
  257. #decisions3:target .diamonddiv:nth-child(5):hover{
  258. webkit-transition: all .5s, left 2s, top 2s;
  259. transition: all .5s, left 2s, top 2s;
  260. z-index: 5;}
  261.  
  262.  
  263. #decisions1:target #diamondlabel,
  264. #decisions2:target #diamondlabel,
  265. #decisions3:target #diamondlabel{
  266. opacity: 1;
  267. }
  268.  
  269. #decisions1:target .diamonddiv:nth-child(5):hover #diamondlabel,
  270. #decisions2:target .diamonddiv:nth-child(5):hover #diamondlabel,
  271. #decisions3:target .diamonddiv:nth-child(5):hover #diamondlabel{
  272. display: block;
  273. }
  274.  
  275.  
  276. #musicslice{
  277. position: fixed;
  278. top: 20px;
  279. right: 20px;
  280. height: 50px;
  281. width: 50px;
  282. border: 1px solid black;
  283. overflow: hidden;
  284. -webkit-transition: all 1s;
  285. transition: all 0s;
  286. box-shadow: 1px 1px 3px black;}
  287.  
  288. #musicslice:active{
  289. -webkit-transition: all 0s;
  290. transition: all 0s;
  291. box-shadow: 0px 0px 0px black;}
  292.  
  293. #musiccover{
  294. position: absolute;
  295. left: 0px;
  296. top: 0px;
  297. height: 50px;
  298. width: 50px;
  299. background-image:url(http://i68.tinypic.com/i44s4n.jpg);
  300. background-size: auto 90%;
  301. background-repeat: no-repeat;
  302. background-position: center;
  303. }
  304.  
  305. #musichidden{
  306. position: absolute;
  307. left: -10px;
  308. top: 0px;
  309. height: 50px;
  310. width: 50px;
  311. zoom: 180%;
  312. opacity: 0;
  313. z-index: 1;
  314. overflow: hidden;}
  315.  
  316. #contentcontent a{
  317. text-decoration: none;
  318. font-weight: 600;
  319. color: black;}
  320.  
  321. </style>
  322.  
  323. <div id="decisions1">
  324. <div id="decisions2">
  325. <div id="decisions3">
  326.  
  327. <div id="whole">
  328. <div id="whole2">
  329. <div id="alterimage">
  330. </div>
  331. <div id="titlepiece">
  332. ALTER
  333. </div>
  334. <div id="contentarea">
  335. <div id="backgroundfill">
  336. </div>
  337.  
  338. <a href="#decisions1" class="diamonddiv">
  339. <div id="diamond-narrow">
  340. </div>
  341. <div id="diamondlabel">stats
  342. </div>
  343. </a>
  344.  
  345. <a href="#decisions2" class="diamonddiv">
  346. <div id="diamond-narrow">
  347. </div>
  348. <div id="diamondlabel">
  349. info
  350. </div>
  351. </a>
  352.  
  353. <a href="#decisions3" class="diamonddiv">
  354. <div id="diamond-narrow">
  355. </div>
  356. <div id="diamondlabel">
  357. ooc
  358. </div>
  359. </a>
  360.  
  361. <a href="#none" class="diamonddiv">
  362. <div id="diamond-narrow">
  363. </div>
  364. <div id="diamondlabel">
  365. reset
  366. </div>
  367. </a>
  368.  
  369. <div class="contentbox" id="content1"> <h1>Stats and Abilities.</h1>
  370. <div id="contentcontent">
  371. 1. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  372. </div>
  373. </div>
  374.  
  375. <div class="contentbox" id="content2"> <h1>Information.</h1>
  376. <div id="contentcontent">
  377. 2. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
  378. </div>
  379. </div>
  380.  
  381. <div class="contentbox" id="content3"> <h1>OOC.</h1>
  382. <div id="contentcontent">
  383.  
  384. Character and art are owned by me.<br>
  385. Code is <a href="http://roleplay.chat/profile.php?user=Digital" target=_blank>mine</a>.<br>
  386. Music track is <a href="https://youtu.be/a0GnH1LSt0M" target=_blank>DMC3 : Cerberus</a>.
  387. </div>
  388. </div>
  389.  
  390.  
  391. </div>
  392. </div>
  393. </div>
  394.  
  395.  
  396. <div id="musicslice" title="ratatat - loud pipes">
  397. <div id="musiccover">
  398. </div>
  399. <div id="musichidden">
  400. <audio controls src="http://puu.sh/qk1xV/ebe5e7f72c.mp3"></audio>
  401. </div>
  402. </div>
  403.  
  404.  
  405. </div></div></div></div>
Add Comment
Please, Sign In to add comment