Advertisement
QueenOfGeckos

yamcha

Jan 22nd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.62 KB | None | 0 0
  1. css
  2. @import url("https://fonts.googleapis.com/css?family=Voltaire|Abel");
  3. ::-webkit-scrollbar {
  4. width: 0.3vw;
  5. height: 0.3vw;
  6. }
  7. ::-webkit-scrollbar-track {
  8. border-radius: 0px;
  9. background-color: transparent;
  10. }
  11. ::-webkit-scrollbar-thumb {
  12. border-radius: 0px;
  13. background-color: transparent;
  14. }
  15. body{background: #000;
  16. background-image: url('https://i.imgur.com/1v0fePp.png');
  17. background-size: cover;}
  18. .doors {
  19. box-sizing: border-box;
  20. position: relative;
  21. width: 100%;
  22. height: 100%;
  23. overflow: hidden;
  24. }
  25.  
  26. .doors .key {
  27. position: absolute;
  28. top: 0%;
  29. width: 100%;
  30. color: yellow;
  31. z-index: 10;
  32. text-align: center;
  33. font-size: 48px;
  34. font-family: "Trebuchet MS";
  35. text-transform: uppercase;
  36. text-shadow: 5px 0 2px #000;
  37. transition: transform 2s ease-in-out;
  38. }
  39.  
  40. .doors:hover .key {
  41. transform: scale(0);
  42. }
  43.  
  44. .doors .left {
  45. display: inline-block;
  46. position: absolute;
  47. top: 0;
  48. left: 0;
  49. width: 50%;
  50. height: 100%;
  51. box-shadow: 3px 0 4px #111;
  52. background-image: url("https://i.ytimg.com/vi/cQNACPPGUA8/maxresdefault.jpg");
  53. background-size: cover;
  54. background-repeat: no-repeat;
  55. transition: width 2s ease-in-out;
  56. }
  57. .doors .right {
  58. display: inline-block;
  59. position: absolute;
  60. top: 0;
  61. right: 0;
  62. width: 50%;
  63. height: 100%;
  64. box-shadow: 3px 0 4px #111;
  65. background-image: url("https://i.ytimg.com/vi/cQNACPPGUA8/maxresdefault.jpg");
  66. background-size: cover;
  67. background-repeat: no-repeat;
  68. transform: scaleX(-1);
  69. transition: width 2s ease-in-out;
  70. }
  71.  
  72. .doors:hover .left, .doors:hover .right {
  73. width: 5%;
  74. }
  75.  
  76. .inner {
  77. width: 100%;
  78. height: 100%;
  79. }
  80.  
  81. .image {
  82. border-radius: 50%;
  83. -webkit-transition: -webkit-transform .8s ease-in-out;
  84. transition: transform .8s ease-in-out;
  85. }
  86. .image:hover {
  87. -webkit-transform: rotate(360deg);
  88. transform: rotate(360deg);
  89. }
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97. #content {
  98. position: fixed;
  99. width: 100%;
  100. height: 70%;
  101. background: transparent;
  102. top: 15%;
  103. left: 0%;
  104. transition-duration: 1s;
  105. }
  106.  
  107.  
  108.  
  109. @keyframes whoosh {
  110. 0% {
  111. opacity: 1;
  112. }
  113. 100% {
  114. opacity: 0;
  115. }
  116. }
  117.  
  118. @-webkit-keyframes whoosh {
  119. 0% {
  120. opacity: 1;
  121. }
  122. 100% {
  123. opacity: 0;
  124. }
  125. }
  126.  
  127.  
  128. #pluto {
  129. position: fixed;
  130. height: 96%;
  131. width: 25%;
  132. background: transparent;
  133. left: 36.7%;
  134. transition-duration: 1s;
  135. }
  136.  
  137. #content:hover #garnet {
  138. opacity: 1;
  139. left: 6%;
  140. transition-duration: 1.5s;
  141. }
  142.  
  143. #content:hover #guarding {
  144. opacity: 1;
  145. right: 6%;
  146. transition-duration: 1.5s;
  147. }
  148.  
  149. #garnet {
  150. position: absolute;
  151. overflow: auto;
  152. height: 92.5%;
  153. width: 25%;
  154. background: #161616;
  155. border-radius: 10px;
  156. border: 3px solid;
  157. border-color: #940017;
  158. left: 35%;
  159. padding: 15px;
  160. opacity: 0;
  161. transition-duration: 1s;
  162. font-family: "Forum";
  163. font-size: 2.3vh;
  164. color: #eee;
  165.  
  166. }
  167.  
  168. #guarding {
  169. position: absolute;
  170. overflow: auto;
  171. height: 92.5%;
  172. width: 25%;
  173. background: #161616;
  174. border-radius: 10px;
  175. border: 3px solid;
  176. border-color: #940017;
  177. right: 35%;
  178. padding: 15px;
  179. opacity: 0;
  180. transition-duration: 1s;
  181. font-family: "Forum";
  182. font-size: 2.3vh;
  183. color: #eee;
  184. }
  185.  
  186. #gate,
  187. #time {
  188. width: 100%;
  189. height: 100%;
  190. position: relative;
  191. overflow: hidden;
  192.  
  193. }
  194.  
  195. #leftbox,
  196. #right {
  197. width: 100%;
  198. height: 100%;
  199. overflow: auto;
  200.  
  201. }
  202. }
  203.  
  204. #leftbox:target,
  205. #rightbox:target {
  206. animation: appear 1.5s 1;
  207. -webkit-animation: appear 1.5s 1;
  208. }
  209.  
  210. @keyframes appear {
  211. from {
  212. opacity: 0;
  213. }
  214. to {
  215. opacity: 1;
  216. }
  217. }
  218.  
  219. @-webkit-keyframes appear {
  220. from {
  221. opacity: 0;
  222. }
  223. to {
  224. opacity: 1;
  225. }
  226. }
  227.  
  228. h1 {
  229. font-family: century;
  230. font-weight: normal;
  231. line-height: 8px;
  232. text-transform: uppercase;
  233. text-align: center;
  234. }
  235.  
  236. a {
  237. font-family: 'Voltaire', sans-serif;
  238. color: #940017;
  239. text-decoration: none;
  240. }
  241.  
  242. a:hover {
  243. color: #eee;
  244. }
  245.  
  246. .hue {
  247. float: right;
  248. }
  249.  
  250. html
  251. <div class="doors">
  252. <div class="key"><img src="https://i.imgur.com/hpEygnX.png" height="500px" class="image"></div>
  253. <div class="left"></div>
  254. <div class="inner">
  255. <div id="sheet"></div>
  256. <div id="content">
  257. <div id="pluto">
  258.  
  259. </div>
  260.  
  261. <div id="garnet">
  262. <div id="gate">
  263. <div id="leftbox">
  264. <center><h1>Stats</h1></center>
  265. <a>Name</a> <div class="hue"><font size="-2px">Yamcha</font></div><br>
  266. <a>Age</a> <div class="hue"><font size="-2px">46</font></div><br>
  267. <a>Height + Weight</a> <div class="hue"><font size="-2px">6'0"/183cm// 150lbs/68kg</font></div><br>
  268. <a>Birthday</a> <div class="hue"><font size="-2px">March 20th</font></div><br>
  269. <a>Species</a> <div class="hue"><font size="-2px">Human </font></div><br>
  270. <a>Gender</a> <div class="hue"><font size="-2px"> Male</font></div><br>
  271. <a>Hair</a> <div class="hue"><font size="-2px">Long Black, Shaggy and wavy</font></div><br>
  272. <a>Eyes</a> <div class="hue"><font size="-2px">Black</font></div><br>
  273. <a>Occupation</a> <div class="hue"><font size="-2px">Frelance Bodyguard</font></div><br>
  274. <a>Sexual Orientation</a> <div class="hue"><font size="-2px">Heterosexual</font>l</div><br>
  275. <a>Status</a> <div class="hue"><font size="-2px">Singular</font></div><br>
  276.  
  277. <Center><h1>Personality</h1></center>
  278. <font size="-2px"><p>In his younger days Yamcha was a desert bandit. Often striving to be the best and feared nothing... Aside from women. He's determined and strong, compared the average human. However, despite this factor, he knows he is greatly outmatched by his comrades. And will willingly step back and remain on the sidelines if he feels he is out of his own league.</p>
  279.  
  280. <p>He can be a smidge bit of a pervert, but this isn't his only trait. Neither is the fact he is seen as one of the weaker of the Z-fighters. In fact, in time he would develop his status as a martial artist and become a professional baseball player. Proving has pique physical status compared to other humans minus those of the Z warriors.</p>
  281.  
  282. <p>However after the Saiyans arrived he found himself outclassed... Often turning to the clown of the group, even when fighting. His passion for the fight was extinguished due to the ever-growing gap between him and the aliens of the group. Even Krillian and Tien.</p>
  283.  
  284. <p>But unlike Tien, he finds himself being left in the dust. ANd knows how easily he could be overpowered and killed again.
  285. Yamcha accepts that his contribution would be futile, and instead opts to stand aside and keep watch, instead of engaging in combat. But he will take up arms if he absolutely must.</p>
  286.  
  287. <p>In recent years though he continues to train. Often going off on his own, to become stronger. He still has a small lingering passion for fighting, and honestly had hoped he would be asked to join the Tournament of Power. But he also understood when he was not asked, and instead, Frieza was brought onto the scene. He was disappointed but capable of knowing the stakes were truly large, and he would possibly hinder the progression. </p>
  288. </font>
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295. </div>
  296. </div>
  297. </div>
  298.  
  299.  
  300. <div id="guarding">
  301. <div id="time">
  302. <div id="rightbox">
  303. <center><h1>Abilities + Tools</h1></center>
  304. <font size="-2px"> Ki manipulation – This includes flight, blasts and sensing.<br>
  305. Kamehameha//Super Kamehameha<Br>
  306. Wolf Fang Fist – Yamcha's trademark attack. It is a very fast series of powerful punches, swipes, and kicks. Before the attack, a wolf's howl can be heard, along with an aura around Yamcha. <Br>
  307. Blinding Wolf Fang Fist – A one-hit variant of the Wolf Fang Fist.<Br>
  308. Wolf Klaw - A single technique where Yamcha leaps forward, and slashes the air with invisible claws.<Br>
  309. Tiger Jackhammer Fist – Yamcha punches his opponent repeatedly before finishing with a kick.<Br>
  310. Neo Wolf Fang Fist – An upgraded version of the Wolf Fang Fist. Also called Wolf Fang Blowing Wind, or Wolf Fang Whirlwind Claw.<Br>
  311. Wolf Hurricane – A weaker version of the Wolf Fang Fist<Br>
  312. Wolf Slice Fist – Yamcha kicks the opponent up in the air, and then he kicks and punches them down again. <Br>
  313. Spirit Ball – One of Yamcha's signature moves. He produces a concentrated ball of energy from his palm, and is able to precisely control its directional pattern using two fingers to guide it.<Br>
  314. Super Spirit Ball – A much more powerful version of the Spirit Ball, and is even bigger than Yamcha himself.<Br>
  315. Wolf Fang Blast – Yamcha uppercuts his opponent up in the air, then he flies up and knock them down to the ground again. Yamcha then fires a barrage of ki blasts on the opponent, only to finish the attack with a large ball of ki.<Br>
  316. Energy Wave Combo<Br>
  317. Afterimage Technique<Br>
  318. Phantom Fist <Br>
  319. Ki Blast Thrust - A ki-enhanced punch attack.<Br>
  320. </font>
  321. <center><h1>Rules/OOC</h1></center>
  322. <font size="-2px">✧ You wanna make a joke?Ok. But jokes get old very quick. Keep this in mind.<br>
  323. ✦ NOT PM friendly. Unless you are respectful<br>
  324. ✧ IC=/= OOC. <br>
  325. ✦ Semi to Novella. I mirror.<br>
  326. ✧ This character is from the Dragon Ball series.<br>
  327. ✦ Story > Sex <br>
  328. ✧ I'll play Yamcha to the best of my ability. But not the 'meme' you expect.<br>
  329. ✦ None of the art is mine. And I shall remove them upon request.<br>
  330. ✧ Code belongs to me! Do not snatch. Jut ask<Br>
  331. ✦ Sorry private rps will be rare. You can try though.<br>
  332. ✧ Skype and discord are no options for communication.<br>
  333. ✦ If you read this far send me a PM with the tagline #catlikesfoodNONONO. It'll actually increase your chances of a positive reaction and possible private roleplay. <br>
  334. </font>
  335. </div>
  336.  
  337. </div>
  338. </div>
  339. </div>
  340. <img src="https://i.imgur.com/AEdBjEh.png" Width="160px" style="float:left; margin-left: 700px; margin-top: 250px">
  341.  
  342.  
  343. <div class="right"></div>
  344. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement