thisisnotras

code fixer 1/31/16

Jan 31st, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.44 KB | None | 0 0
  1. <style>
  2.  
  3. .pfor {display: none;}
  4. #profile {background: transparent; border: 0px;}
  5.  
  6. a,a:hover{text-decoration: none;
  7. color: black;}
  8.  
  9. #whole {
  10. position: absolute;
  11. top: 0px;
  12. left: -5px;
  13. right: 0px;
  14. bottom: 0px;
  15. background-image: url(http://i68.tinypic.com/8zkw9i.jpg);
  16. background-size: auto 120%;
  17. background-position: bottom 55px left;
  18. background-repeat: no-repeat;
  19. background-color: #111111;
  20. overflow: hidden;
  21. }
  22.  
  23. @font-face {
  24. src: url(https://dl.dropboxusercontent.com/u/4556289/narrow_rectangle-7.ttf);
  25. font-family: 'buttonfont';
  26. }
  27.  
  28. * {
  29. box-sizing: border-box;
  30. }
  31.  
  32. #startbar {
  33. position: absolute;
  34. bottom: 0px;
  35. left: 0px;
  36. right: 0px;
  37. height: 50px;
  38. background: blue;
  39. }
  40.  
  41. #backgroundfiller {
  42. position: absolute;
  43. top: 50px;
  44. left: 0px;
  45. right: 0px;
  46. bottom: 0px;
  47. opacity: .7;
  48. box-shadow: -10px 10px 10px 65px #0082FE;
  49. box-sizing: border-box;
  50. }
  51.  
  52. #startbutton {
  53. position: absolute;
  54. top: 7px;
  55. left: 20px;
  56. height: 30px;
  57. width: 100px;
  58. border-radius: 90px 90px 90px 90px;
  59. background: white;
  60. box-sizing: border-box;
  61. box-shadow: 0px 0px 4px 2px black;
  62. background: #111111;
  63. -webkit-transition: all .4s;
  64. transition: all .4s;
  65. }
  66.  
  67. #startbutton:hover {
  68. box-shadow: 0px 0px 4px 0px black;
  69. -webkit-transition: all .2s;
  70. transition: all .2s;
  71. }
  72.  
  73. #startbutton .additional {
  74. color: white;
  75. text-decotation: none;
  76. font-style: none;
  77. font-size: 9pt;
  78. text-align: center;
  79. float: left;
  80. margin-top: 8px;
  81. margin-left: 23px;
  82. letter-spacing: 6px;
  83. font-family: Arial;
  84. font-weight: 600;
  85. text-shadow: 1px 1px -1px white;
  86. -webkit-transition: all .5s;
  87. transition: all .5s;
  88. }
  89.  
  90. #startbutton:hover .additional {
  91. -webkit-transition: all .1s;
  92. transition: all .1s;
  93. text-shadow: 1px 1px 5px white;
  94. }
  95.  
  96. #startmenu {
  97. position: absolute;
  98. left: 0px;
  99. bottom: -45px;
  100. height: 450px;
  101. width: 260px;
  102. border: 0px solid black;
  103. z-index: -10;
  104. -webkit-transition: all 1s 10s;
  105. transition: all 1s 10s;
  106. }
  107.  
  108. #startbutton:active #startmenu {
  109. -webkit-transition: all 0s 0s;
  110. transition: all 0s 0s;
  111. z-index: 1;
  112. }
  113.  
  114. #startmenu:hover {
  115. -webkit-transition: all 0s 0s;
  116. transition: all 0s 0s;
  117. z-index: 2;
  118. }
  119.  
  120. #option1 {
  121. position: absolute;
  122. height: 50px;
  123. width: 160px;
  124. border: 1px solid red;
  125. }
  126.  
  127. #option2 {
  128. position: absolute;
  129. height: 50px;
  130. width: 160px;
  131. border: 1px solid red;
  132. }
  133.  
  134. #option3 {
  135. position: absolute;
  136. height: 50px;
  137. width: 160px;
  138. border: 1px solid red;
  139. }
  140.  
  141. #option4 {
  142. position: absolute;
  143. height: 50px;
  144. width: 160px;
  145. border: 1px solid red;
  146. }
  147.  
  148. #option1,
  149. #option2,
  150. #option3,
  151. #option4 {
  152. border-radius: 10px 10px 10px 10px;
  153. border: 0px solid white;
  154. opacity: 0;
  155. z-index: -10;
  156. margin-top: 10px;
  157. color: black;
  158. bottom: 0px;
  159. -webkit-transition: all 0s 10s, opacity 1s 9s, bottom 1s 9s;
  160. transition: all 0s 10s, opacity 1s 9s, bottom 1s 9s;
  161. }
  162.  
  163. #startmenu:hover #option1,
  164. #startmenu:hover #option2,
  165. #startmenu:hover #option3,
  166. #startmenu:hover #option4 {
  167. -webkit-transition: all 0s .5s, opacity 1s 0s, bottom 1s 0s;
  168. transition: all 0s .5s, opacity 1s 0s, bottom 1s 0s;
  169. opacity: 1;
  170. z-index: 0;
  171. margin-top: 0px;
  172. }
  173.  
  174. #startmenu:hover #option1 {
  175. bottom: 295px
  176. }
  177.  
  178. #startmenu:hover #option2 {
  179. bottom: 240px
  180. }
  181.  
  182. #startmenu:hover #option3 {
  183. bottom: 185px
  184. }
  185.  
  186. #startmenu:hover #option4 {
  187. bottom: 130px;
  188. }
  189.  
  190. #titlesign {
  191. position: absolute;
  192. height: 100%;
  193. width: 89px;
  194. border: 0px solid white;
  195. z-index: 1;
  196. font-family: ;
  197. font-size: 25pt;
  198. letter-spacing: -1px;
  199. font-family: 'buttonfont';
  200. text-align: center;
  201. padding-top: 5px;
  202. margin-left: 45px;
  203. }
  204.  
  205. #emblemsign {
  206. position: absolute;
  207. height: 100%;
  208. width: 50px;
  209. border: 0px solid white;
  210. z-index: 1;
  211. background-image: url();
  212. background-repeat: no-repeat;
  213. background-size: 100% 100%;
  214. margin-left: 0px;
  215. }
  216.  
  217. #arrowsign {
  218. position: absolute;
  219. margin-left: 140px;
  220. height: 100%;
  221. width: 19px;
  222. border-left: 2px dashed black;
  223. background-image: url(http://i65.tinypic.com/1534qhy.jpg);
  224. background-repeat: no-repeat;
  225. background-size: 100% 100%;
  226. z-index: 10;
  227. }
  228.  
  229. #backgroundfiller2 {
  230. box-shadow: 0px 0px 0px;
  231. background: white;
  232. position: absolute;
  233. top: 0px;
  234. left: 0px;
  235. right: 0px;
  236. bottom: 0px;
  237. z-index: 0;
  238. opacity: .7;
  239. }
  240.  
  241. #option1:hover #backgroundfiller2,
  242. #option2:hover #backgroundfiller2,
  243. #option3:hover #backgroundfiller2,
  244. #option4:hover #backgroundfiller2 {
  245. ;
  246. }
  247.  
  248. #optioncontainer {
  249. position: absolute;
  250. left: 0px;
  251. top: 0px;
  252. height: 100%;
  253. width: 100%;
  254. z-index: 1;
  255. border-radius: 10px 10px 10px 10px;
  256. }
  257.  
  258. #optioncontainer{
  259. overflow: hidden;
  260. }
  261.  
  262. #dropmenu {
  263. position: absolute;
  264. height: 50px;
  265. width: 100px;
  266. border: 1px solid black;
  267. margin-left: 1070px;
  268. -webkit-transition: all 2s 1.1s, opacity .5s 1s ;
  269. transition: all 2s 1.1s, opacity .5s 1s;
  270. opacity: 0;
  271. z-index: -10;
  272. }
  273.  
  274. #option1:active #dropmenu,
  275. #option2:active #dropmenu,
  276. #dropmenu:hover {
  277. -webkit-transition: all 0s;
  278. transition: all 0s;
  279. opacity: 1;
  280. z-index: 1;
  281. margin-left: 170px;
  282. }
  283.  
  284. #optioncontainer2{
  285. position: absolute;
  286. overflow: none;
  287. border-radius: 0px 0px 0px 0px;
  288. top: 0px;
  289. left: 0px;
  290. width: 100%;
  291. height: 100%;
  292. z-index: 1;
  293. }
  294.  
  295. #selectionmenu{
  296. float: left;
  297. width: 100%;
  298. height: 17px;
  299. text-align: center;
  300. font-family:'buttonfont';
  301. letter-spacing: 2px;
  302. font-size:10px;
  303. border-bottom:2px solid black;
  304. -webkit-transition: all .5s;
  305. transition: all .5s;
  306. }
  307.  
  308. #selectionmenu:hover{
  309. background: #005AFE;
  310. }
  311.  
  312. #selectionmenu:active + #notepaddiv
  313. {
  314. opacity: 1;
  315. -webkit-transition: all 0s 0s;
  316. transition: all 0s 0s;
  317. z-index: 10;
  318. top: 100px;
  319. left: 400px;
  320. }
  321.  
  322. #selectionmenu:active + #notepaddiv2{
  323. top:130px; left:435px;
  324. opacity: 1;
  325. -webkit-transition: all 0s 0s;
  326. transition: all 0s 0s;
  327. z-index: 10;
  328.  
  329. }
  330.  
  331. #selectionmenu:active + #notepaddiv3{
  332. top:160px; left: 480px;
  333. opacity: 1;
  334. -webkit-transition: all 0s 0s;
  335. transition: all 0s 0s;
  336. z-index: 10;
  337.  
  338. }
  339.  
  340. #notepaddiv, #notepaddiv2, #notepaddiv3{
  341. position: fixed;
  342. top: -300px;
  343. left: -400px;
  344. height: 250px;
  345. width: 300px;
  346. overflow: hidden;
  347. background: transparent;
  348. border-radius: 30px 30px 30px 30px;
  349. z-index: -10;
  350. opacity: 0;
  351. -webkit-transition: all 0s 2s, z-index 0s 0s;
  352. transition: all 0s 2s, z-index 0s 0s;
  353. }
  354.  
  355. #notepaddiv:hover{
  356. z-index: 120;
  357. opacity: 1;
  358. top: 100px;
  359. left: 400px;
  360. }
  361.  
  362. #notepaddiv2:hover{
  363. z-index: 120;
  364. opacity: 1;
  365. top:130px; left:435px;
  366. }
  367. #notepaddiv3:hover{
  368. z-index: 120;
  369. opacity: 1;
  370. top:160px; left: 480px;
  371. }
  372.  
  373. #notebar{
  374. position: absolute;
  375. left: 0px;
  376. right: 0px;
  377. top: 0px;
  378. height: 30px;
  379. border-bottom: 2px solid black;
  380. z-index: 1;
  381. font-family:'buttonfont';
  382. text-align: center;
  383. font-size: 15pt;
  384. }
  385.  
  386. #notebody{
  387. position: absolute;
  388. top: 32px;
  389. left: 2px;
  390. right: 2px;
  391. bottom: 2px;
  392. background: gray;
  393. z-index: 1;
  394. font-family:'buttonfont';
  395. font-size: 15pt;
  396. text-align: left;
  397. padding-left: 2px;
  398. border-radius: 0px 0px 30px 30px;
  399. }
  400.  
  401. #musicplayer{
  402. position: fixed;
  403. right: 0px;
  404. bottom: 220px;
  405. height: 220px;
  406. width: 200px;
  407. border: 0px solid white;
  408. overflow: hidden;
  409. padding-top: 2px;
  410. -webkit-transition:z-index 0s, all 1s;
  411. transition: z-index 0s, all 1s;
  412. z-index: -10;
  413. opacity: 0;
  414. }
  415.  
  416.  
  417. #songselect{
  418. float: left;
  419. height: 30px;
  420. width: 100%;
  421. border-radius: 5px 5px 5px 5px;
  422. border: 0px solid red;
  423. margin-bottom: 4px;
  424. overflow: hidden;
  425. font-family:'buttonfont';
  426. font-size: 12pt;
  427. padding-top: 4px;
  428. letter-spacing: 5px;
  429. text-align: center;
  430. background: gray;
  431. -webkit-transition: all 1s;
  432. transition: all 1s;
  433. }
  434.  
  435. #songselect:hover{
  436. background: #0082FE;
  437. }
  438.  
  439.  
  440. #playlist{
  441. position: fixed;
  442. right: 100px;
  443. bottom: 100px;
  444. height: 100px;
  445. width: 200px;
  446. border: 0px solid white;
  447. overflow: hidden;
  448. z-index: -10;
  449. opacity: 0;
  450. -webkit-transition: z-index 0s, all 1s;
  451. transition: z-index 0s, all 1s;
  452. }
  453.  
  454. #nowplaying1A,#nowplaying1B,
  455. #nowplaying1C,#nowplaying1D,
  456. #nowplaying1E{
  457. position: absolute;
  458. height: 98px;
  459. width: 198px;
  460. border: 0px solid red;
  461. z-index: -2;
  462. opacity: 0;
  463. color: black;
  464. -webkit-transition: all 1s;
  465. transition: all 1s;
  466. border-radius: 70px 70px 70px 70px;
  467. overflow: hidden;
  468. font-family: 'buttonfont';
  469. text-align: center;
  470. }
  471.  
  472. #nowplayingtitle{
  473. position: absolute;
  474. top: 0px;
  475. left: 0px;
  476. right: 0px;
  477. height: 25px;
  478. border-bottom: 2px solid black;
  479. padding-top: 1px;
  480. letter-spacing: 5px;
  481. z-index: 1;
  482. }
  483.  
  484. #nowplayingmarquee{
  485. position: absolute;
  486. top: 25px;
  487. left: 0px;
  488. right: 0px;
  489. height: 40px;
  490. width: 100%;
  491. padding-top: 5px;
  492. z-index: 1;
  493. font-size: 20pt;
  494. }
  495.  
  496. #nowplayingartist{
  497. position: absolute;
  498. top: 65px;
  499. height: 35px;
  500. width: 100%;
  501. border-top: 2px solid black;
  502. padding-top: 5px;
  503. z-index: 1;
  504. }
  505.  
  506. #backgroundfill{
  507. position: absolute;
  508. z-index: 0;
  509. top: 0px;
  510. left: 0px;
  511. height: 100%;
  512. width: 100%;
  513. opacity: .4;
  514. background: #0082FE;
  515. }
  516.  
  517. #list1:target #musicplayer,
  518. #list1A:target #musicplayer,
  519. #list1B:target #musicplayer,
  520. #list1C:target #musicplayer,
  521. #list1D:target #musicplayer,
  522. #list1E:target #musicplayer{
  523. z-index:1;
  524. opacity: 1;
  525. right: 100px;
  526. }
  527.  
  528. #list1A:target #nowplaying1A,
  529. #list1B:target #nowplaying1B,
  530. #list1C:target #nowplaying1C,
  531. #list1D:target #nowplaying1D,
  532. #list1E:target #nowplaying1E
  533. {opacity: 1;
  534. -webkit-transition: z-index 0s, opacity 1s .2s;
  535. transition: z-index 0s, opacity 1s .2s;
  536. z-index: 1;}
  537.  
  538. #list1A:target #playlist,
  539. #list1B:target #playlist,
  540. #list1C:target #playlist,
  541. #list1D:target #playlist,
  542. #list1E:target #playlist
  543. {z-index:1;
  544. opacity: 1;}
  545.  
  546. #song1A, #song1B, #song1C, #song1D, #song1E{
  547. position: fixed;
  548. opacity: 0;
  549. top: -300px;
  550. display: none;
  551. }
  552.  
  553. #list1A:target #song1A,
  554. #list1B:target #song1B,
  555. #list1C:target #song1C,
  556. #list1D:target #song1D,
  557. #list1E:target #song1E{
  558. display: block;
  559. }
  560.  
  561.  
  562.  
  563.  
  564. </style>
  565.  
  566.  
  567. <div id="whole">
  568.  
  569. <div id="startbar">
  570. <div id="backgroundfiller" style="background: blue;">
  571. </div>
  572. <div id="startbutton">
  573. <a class="additional">
  574. start</a>
  575. <div id="startmenu">
  576.  
  577. <div id="option1">
  578.  
  579. <div id="optioncontainer">
  580. <div id="emblemsign" style="background-image:url(http://i66.tinypic.com/j63frm.jpg);">
  581. </div>
  582. <div id="titlesign">notes
  583. </div>
  584. <div id="arrowsign">
  585. </div>
  586. <div id="backgroundfiller2">
  587. </div>
  588. </div>
  589.  
  590. <div id="dropmenu">
  591. <div id="optioncontainer2">
  592. <div id="selectionmenu">coding
  593. </div>
  594.  
  595. <div id="notepaddiv">
  596. <div id="notebar">
  597. coding.
  598. </div>
  599. <div id="notebody">
  600. I <s>will</s> may code a profile for you.
  601. </div>
  602. <div id="backgroundfiller2">
  603. </div>
  604. </div>
  605.  
  606. <div id="selectionmenu">fixing
  607. </div>
  608.  
  609.  
  610. <div id="notepaddiv2">
  611. <div id="notebar">
  612. fixing.
  613. </div>
  614. <div id="notebody">
  615. I <s>will</s> may fix your code.
  616. </div>
  617. <div id="backgroundfiller2">
  618. </div>
  619. </div>
  620.  
  621. <div id="selectionmenu">ooc
  622. </div>
  623.  
  624. <div id="notepaddiv3">
  625. <div id="notebar">
  626. ooc.
  627. </div>
  628. <div id="notebody">
  629. Please ask nicely.
  630. <br>I'm an <b>amateur</b> coder.
  631. <br> Profile is WIP.
  632. <br>Hover on notes to keep them in place.
  633. </div>
  634. <div id="backgroundfiller2">
  635. </div>
  636. </div>
  637.  
  638.  
  639. </div>
  640. <div id="backgroundfiller2">
  641. </div>
  642. </div>
  643. </div>
  644.  
  645. <div id="option2">
  646. <div id="optioncontainer">
  647.  
  648. <div id="emblemsign" style="background-image:url(http://i65.tinypic.com/x2qfzd.jpg);">
  649. </div>
  650. <div id="titlesign">music
  651. </div>
  652. <div id="arrowsign">
  653. </div>
  654. <div id="backgroundfiller2">
  655. </div>
  656. </div>
  657.  
  658. <div id="dropmenu">
  659. <div id="optioncontainer2">
  660. <a href=#list1>
  661. <div id="selectionmenu">list 1
  662. </div>
  663. </a>
  664. <div id="selectionmenu">list 2
  665. </div>
  666. <div id="selectionmenu">list 3
  667. </div>
  668.  
  669.  
  670. </div>
  671. <div id="backgroundfiller2">
  672. </div>
  673. </div>
  674.  
  675. </div>
  676.  
  677. <div id="option3">
  678. <div id="optioncontainer">
  679. <div id="backgroundfiller2">
  680. </div>
  681.  
  682. </div>
  683. </div>
  684.  
  685. <div id="option4">
  686. <div id="optioncontainer">
  687. <div id="backgroundfiller2">
  688. </div>
  689. </div>
  690. </div>
  691.  
  692. </div>
  693. </div>
  694. </div>
  695.  
  696. <div id="list1">
  697. <div id="list1A">
  698. <div id="list1B">
  699. <div id="list1C">
  700. <div id="list1D">
  701. <div id="list1E">
  702.  
  703. <div id="song1A">
  704. <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" width="129" height="20">
  705. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" />
  706. <param name="wmode" value="transparent" />
  707. <param name="FlashVars" value="mp3=https://www.dropbox.com/s/nd475uchysfy4a5/01%20Go%20Straight.mp3?dl=1&autoplay=1&loop=1&volume=7&bgcolor1=808080&bgcolor2=808080&slidercolor1=000000&slidercolor2=000000&buttoncolor=000000&buttonovercolor=AA220F" />
  708. </object>
  709. </div>
  710.  
  711.  
  712. <div id="song1B">
  713. <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" width="129" height="20">
  714. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" />
  715. <param name="wmode" value="transparent" />
  716. <param name="FlashVars" value="mp3=https://www.dropbox.com/s/46au6c92bpbzf1x/01-Ruthless.mp3?dl=1&autoplay=1&loop=1&volume=7&bgcolor1=808080&bgcolor2=808080&slidercolor1=000000&slidercolor2=000000&buttoncolor=000000&buttonovercolor=AA220F" />
  717. </object>
  718. </div>
  719.  
  720. <div id="song1C">
  721. <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" width="129" height="20">
  722. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" />
  723. <param name="wmode" value="transparent" />
  724. <param name="FlashVars" value="mp3=https://www.dropbox.com/s/vqp3zwltan8hxle/1-02%20Turn%20It%20Down%20%28with%20Rebecca%20%26%20Fi.mp3?dl=1&autoplay=1&loop=1&volume=7&bgcolor1=808080&bgcolor2=808080&slidercolor1=000000&slidercolor2=000000&buttoncolor=000000&buttonovercolor=AA220F" />
  725. </object>
  726. </div>
  727.  
  728. <div id="song1D">
  729. <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" width="129" height="20">
  730. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" />
  731. <param name="wmode" value="transparent" />
  732. <param name="FlashVars" value="mp3=https://www.dropbox.com/s/s3kbnokw4zt33oq/102%20-%20AIM%20TO%20WIN%20%28Character%20Select%29.mp3?dl=1&autoplay=1&loop=1&volume=7&bgcolor1=808080&bgcolor2=808080&slidercolor1=000000&slidercolor2=000000&buttoncolor=000000&buttonovercolor=AA220F" />
  733. </object>
  734. </div>
  735.  
  736.  
  737. <div id="song1E">
  738. <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" width="129" height="20">
  739. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" />
  740. <param name="wmode" value="transparent" />
  741. <param name="FlashVars" value="mp3=https://dl.dropboxusercontent.com/u/4556289/Prefuse%2073%20-%20Drum%20Machine%2C%20Cello%2C%20Headwrap.mp3&autoplay=1&loop=1&volume=7&bgcolor1=808080&bgcolor2=808080&slidercolor1=000000&slidercolor2=000000&buttoncolor=000000&buttonovercolor=AA220F" />
  742. </object>
  743. </div>
  744.  
  745.  
  746. <div id="musicplayer">
  747. <a href=#list1A>
  748. <div id="songselect">
  749. go straight
  750.  
  751. </div>
  752. </a>
  753. <a href=#list1B>
  754. <div id="songselect">
  755. ruthless
  756. </div>
  757. </a>
  758. <a href=#list1C>
  759. <div id="songselect">
  760. turn it down
  761. </div>
  762. </a>
  763. <a href=#list1D>
  764. <div id="songselect">
  765. aim to win
  766. </div>
  767. </a>
  768. <a href=#list1E>
  769. <div id="songselect" style="letter-spacing: 0px;">
  770. drum machine, cello, headwrap
  771. </div>
  772. </a>
  773. <a href=#cancel>
  774. <div id="songselect">
  775. (CANCEL)
  776. </div>
  777. </a>
  778.  
  779.  
  780.  
  781. </div>
  782. <div id="playlist">
  783. <div id="nowplaying1A">
  784. <div id="nowplayingtitle">now playing
  785. </div>
  786. <div id="nowplayingmarquee">
  787.  
  788. <marquee direction="left" scrollamount="3">
  789. GO STRAIGHT (STREETS OF RAGE 2)
  790. </marquee>
  791.  
  792. </div>
  793. <div id="nowplayingartist">yuzo koshiro
  794. </div>
  795. <div id="backgroundfill">
  796. </div>
  797.  
  798. </div>
  799. <div id="nowplaying1B">
  800.  
  801. <div id="nowplayingtitle">
  802. now playing
  803. </div>
  804. <div id="nowplayingmarquee">
  805.  
  806. <marquee direction="left" scrollamount="3">
  807. RUTHLESS (MAX ANARCHY)
  808. </marquee>
  809.  
  810. </div>
  811. <div id="nowplayingartist">tre-dot
  812. </div>
  813. <div id="backgroundfill">
  814. </div>
  815. </div>
  816.  
  817. <div id="nowplaying1C">
  818. <div id="nowplayingtitle">now playing
  819. </div>
  820. <div id="nowplayingmarquee">
  821.  
  822. <marquee direction="left" scrollamount="3">
  823. TURN IT DOWN (with Rebecca & Fiona) / FIRE & ICE
  824. </marquee>
  825.  
  826. </div>
  827. <div id="nowplayingartist">kaskade
  828. </div>
  829. <div id="backgroundfill">
  830. </div>
  831. </div>
  832.  
  833.  
  834. <div id="nowplaying1D">
  835. <div id="nowplayingtitle">now playing
  836. </div>
  837. <div id="nowplayingmarquee">
  838. <marquee direction="left" scrollamount="3">
  839. AIM TO WIN (character select) / tekken tag tournament 2
  840. </marquee>
  841.  
  842. </div>
  843. <div id="nowplayingartist">akitaka tohyama
  844. </div>
  845. <div id="backgroundfill">
  846. </div>
  847. </div>
  848.  
  849.  
  850. <div id="nowplaying1E">
  851. <div id="nowplayingtitle">now playing
  852. </div>
  853. <div id="nowplayingmarquee">
  854. <marquee direction="left" scrollamount="3">
  855. DRUM MACHINE, CELLO, HEADWRAP / EXTINGUISHED: OUTTAKES
  856. </marquee>
  857.  
  858. </div>
  859. <div id="nowplayingartist">prefuse 73
  860. </div>
  861. <div id="backgroundfill">
  862. </div>
  863. </div>
  864. </div>
  865.  
  866. </div>
  867. </div>
  868. </div>
  869. </div>
  870. </div>
  871. </div>
  872.  
  873. </div>
Advertisement
Add Comment
Please, Sign In to add comment