ChaZayari

Amiya

May 18th, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.28 KB | None | 0 0
  1. <style>
  2. @import url('https://fonts.googleapis.com/css?family=Exo+2|Oxanium|Spartan&display=swap');
  3. @import url('https://fonts.googleapis.com/css?family=Noto+Sans&display=swap');
  4.  
  5. ::-webkit-scrollbar{width:0.5vh;height:0.1vh;}
  6. ::-webkit-scrollbar-track{border-radius:0;background:transparent;}
  7. ::-webkit-scrollbar-thumb{border-radius:0;background:transparent;}
  8.  
  9.  
  10.  
  11. body{
  12. background: url(https://i.imgur.com/tgLAdw0.png);
  13. background-color: #2e3136;
  14. }
  15.  
  16. #image{
  17. position: fixed;
  18. bottom: 10vh;
  19. right: 10vw;
  20. z-index: 5;
  21. border: .15vh #fff solid;
  22. box-shadow: 0 0 .5vh #000;
  23. }
  24.  
  25. #image img{
  26. height: 80vh;
  27. }
  28.  
  29. #icon{
  30. position: fixed;
  31. top: 12vh;
  32. right: 40vw;
  33. z-index: 6;
  34. transition: 0.3s;
  35. }
  36. #icon img{
  37. height: 15vh;
  38. }
  39.  
  40. #leftarrow{
  41. position: fixed;
  42. z-index: 6;
  43. width: 0;
  44. height: 0;
  45. border-top: 3vh solid transparent;
  46. border-bottom: 3vh solid transparent;
  47. border-right: 3vh solid #fff;
  48. top: 15vh;
  49. right: 47vw;
  50. transform: rotate( 30.5deg);
  51. transition: 0.3s;
  52. }
  53.  
  54. #leftarrow:hover{
  55. transition: 0.3s;
  56. top: 14.5vh;
  57. right: 47.25vw;
  58. }
  59.  
  60. #rightarrow{
  61. position: fixed;
  62. z-index: 6;
  63. width: 0;
  64. height: 0;
  65. border-top: 3vh solid transparent;
  66. border-bottom: 3vh solid transparent;
  67. border-left: 3vh solid #fff;
  68. top: 15vh;
  69. right: 40vw;
  70. transform: rotate( -30.5deg);
  71. transition: 0.3s;
  72. }
  73.  
  74.  
  75. #rightarrow:hover{
  76. transition: 0.3s;
  77. top: 14.5vh;
  78. right: 39.75vw;
  79. }
  80.  
  81. #bottomarrow{
  82. position: fixed;
  83. z-index: 6;
  84. width: 0;
  85. height: 0;
  86. border-top: 3vh solid #fff;
  87. border-bottom: 3vh solid transparent;
  88. border-left: 3vh solid transparent;
  89. border-right: 3vh solid transparent;
  90. top: 28.25vh;
  91. right: 42.75vw;
  92. transition: 0.3s;
  93. }
  94.  
  95. #bottomarrow:hover{
  96. transition: 0.3s;
  97. top: 28.75vh;
  98. }
  99.  
  100. #bar{
  101. position: fixed;
  102. background: #70deff;
  103. box-shadow: 0 0 1vh #000;
  104. width: 100vw;
  105. bottom: 15vh;
  106. height: 20vh;
  107. right: 0vw;
  108. z-index: 1;
  109. }
  110.  
  111.  
  112. .appear{opacity: 0; z-index: 4;transition: 2s;overflow: auto;}
  113. .appear:target{opacity: 1; z-index: 6;transition: 2s;}
  114.  
  115.  
  116. #info1, #info2, #info3{
  117. position: fixed;
  118. padding: 1%;
  119. background: rgba(0, 0, 0, 0.95);
  120. border: .15vh #fff solid;
  121. box-shadow: 0 0 1vh #000;
  122. height: 40vh;
  123. width: 40vw;
  124. bottom:20vh;
  125. left: 10vw;
  126. color: #fff;
  127. font-family: 'Noto Sans';
  128. font-size: 1.75vh;
  129. overflow: auto;
  130. }
  131.  
  132. #info1{
  133. background: linear-gradient( rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(https://i.imgur.com/4bPhwTc.png);
  134. background-size: cover;
  135. background-position: center;
  136. }
  137.  
  138. #info2{
  139. background: linear-gradient( rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(https://i.imgur.com/qaK0Q4p.jpg);
  140. background-size: cover;
  141. background-position: center;
  142. }
  143.  
  144. #info3{
  145. background: linear-gradient( rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(https://i.imgur.com/0RE1anu.png);
  146. background-size: cover;
  147. background-position: center;
  148. }
  149.  
  150. h1{
  151. font-family: 'Oxanium';
  152. font-size: 4.5vh;
  153. }
  154.  
  155. h2{
  156. font-size: 2.5vh;
  157. border-bottom: .15vh #fff solid;
  158. }
  159.  
  160. .r{float:right}
  161.  
  162. a{
  163. color: #fff;
  164. transition: 0.25s;
  165. }
  166.  
  167. a:hover{
  168. color: #ff0d0d;
  169. transition: 0.25s;
  170. }
  171.  
  172. </style>
  173.  
  174. <div id="image"><img src="https://i.imgur.com/g43hKrz.png"></div>
  175. <a href="#reset"><div id="icon"><img src="https://i.imgur.com/kCf62r6.png"></div></a>
  176. <div id="bar"></div>
  177. <a href="#info1"><div id="leftarrow"></div></a>
  178. <a href="#info2"><div id="rightarrow"></div></a>
  179. <a href="#info3"><div id="bottomarrow"></div></a>
  180.  
  181.  
  182. <div id="info1" class="appear">
  183. <h1>Amiya</h1>
  184. <h2><img src="https://i.imgur.com/tgbuI5p.png"> Profile</h2>
  185. <p>The public face of Rhodes Island and its top executive. Although Amiya appears to be a young and inexperienced girl, she is universally trusted and highly qualified for her position.
  186. Amiya now leads the island in fighting for the future of the Infected and striving to exorcise the dark shadow of Originium from the land.</p>
  187. <h2><img src="https://i.imgur.com/tgbuI5p.png"> Clinical Analysis</h2>
  188. <p>Imaging test for this Operator showed blurry outline of internal organs with visible unusual dark spots. Unusually high concentration of Originium particles were present in her circulation, indicating signs of infection and confirming her as infected at this stage.</p>
  189. <p>[Cell-Originium Assimilation] 19%</p>
  190. <p>[Blood Originium-Crystal Density] 0.27u/L</p>
  191. <h2><img src="https://i.imgur.com/tgbuI5p.png"> ? ? ?</h2>
  192. ? ? ? ? ? ?
  193. </div>
  194.  
  195.  
  196. <div id="info2" class="appear">
  197. <h1>Dossier</h1>
  198. Name<div class="r">Amiya</div><br>
  199. Date of Birth<div class="r">Dec. 23</div><br>
  200. Place of Birth<div class="r">Rim Billton</div><br>
  201. Race<div class="r">Cautus/Chimera. <a target="_blank" href="https://i.redd.it/rf6tjs2ovfk41.png">Pertaining to her ears.</a></div><br>
  202. Age<div class="r">18</div><br>
  203. Height<div class="r">142 cm</div><br>
  204. Role<div class="r">Caster</div><br>
  205. Marital<div class="r"><a target="_blank" href="https://roleplay.chat/profile.php?user=Chien">Angry Dragon</a></div><br>
  206. Status<div class="r">Standby</div><br>
  207. </div>
  208.  
  209.  
  210. <div id="info3" class="appear">
  211. <h1>Out of Character</h1>
  212. <ol>
  213. <li>Layout is mine. i worked very hard on it, please do not steal.</li>
  214. <li>Neither the character nor her art are mine, both belong to their respective developers/artists.</li>
  215. <li>I will write as Amiya to the best of my ability.</li>
  216. <li>Amiya belongs to the game Arknights.</li>
  217. <li><a target="_blank" href="https://imgur.com/a/H4SEWbE">Extra Images</a></div>
Add Comment
Please, Sign In to add comment