Chibi-Elle

Karolina Dean Code

Jun 19th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.20 KB | None | 0 0
  1. <style>
  2. @import url('https://fonts.googleapis.com/css?family=Roboto+Condensed|Raleway|Montserrat|Meie+Script');
  3.  
  4. ::-webkit-scrollbar-thumb {background: #000000;}
  5. ::-webkit-scrollbar {width: 0px;}
  6.  
  7. #extra {position: fixed;top: 0px; left: 0px;bottom: 0px; right: 0px;z-index:999;}
  8.  
  9. body{
  10. background: #f9f9f9;
  11. overflow: hidden;
  12. }
  13.  
  14. #box{
  15. position: absolute;
  16. left: 10%;
  17. top: 10%;
  18. height: 90%;
  19. width: 30%;
  20. background: #FFD1F6;
  21. opacity: 0.6;
  22. -webkit-clip-path: polygon(80% 0, 100% 17%, 100% 100%, 0 100%, 0 0);
  23. clip-path: polygon(80% 0, 100% 17%, 100% 100%, 0 100%, 0 0);
  24. }
  25.  
  26. #decobox{
  27. position: absolute;
  28. top: 27%;
  29. left: 0;
  30. height: 36%;
  31. width: 39%;
  32. border-top: 1px solid #FFD1F6;
  33. border-right: 1px solid #FFD1F6;
  34. border-bottom: 1px solid #FFD1F6;
  35. }
  36.  
  37. #img{
  38. position: absolute;
  39. top: 25%;
  40. left: 0;
  41. height: 40%;
  42. width: 40%;
  43. background: url(https://img00.deviantart.net/5242/i/2014/235/0/4/rainbow_eyes___speedpainting_tutorial____by_pixiecold-d7wcdac.jpg) no-repeat;
  44. background-size: 100% auto;
  45. background-position: center center;
  46. }
  47.  
  48.  
  49. #title{
  50. position: absolute;
  51. top: 55%;
  52. left: 0%;
  53. height: 5%;
  54. width: 30%;
  55. background: #ffd1f6;
  56. font: 6vh meie script;
  57. color: #ffffff;
  58. text-align: right;
  59. line-height: 5vh;
  60. padding-right: 2%;
  61. }
  62.  
  63. #boxbox a, #boxbox a:visited, #boxbox a:active{
  64. position: absolute;
  65. bottom: 5px;
  66. left: 5px;
  67. font: 2.5vh arial;
  68. color: #ffd1f6;
  69. text-decoration: none;
  70. }
  71.  
  72. #stats{
  73. position: absolute;
  74. top: 67%;
  75. left: 12%;
  76. height: 10%;
  77. width: 13%;
  78. font: 1vh roboto condensed;
  79. color: #595956;
  80. text-shadow: 2px 2px #fff;
  81. line-height: 1.5vh;
  82. text-align: right;
  83. padding: 1%;
  84. border-top: 1px solid #fff;
  85. border-left: 1px solid #fff;
  86. overflow: scroll;
  87. }
  88.  
  89. #stats b{
  90. font: 1.1vh times new roman;
  91. color: #FF7DC2;
  92. font-style: italic;
  93. float: left;
  94. }
  95.  
  96. #stats a, #stats a:visited, #stats a:target{
  97. color: #000;
  98.  
  99. }
  100.  
  101. #stats tr{
  102. width: 100%;
  103. }
  104.  
  105. #stats td{
  106. border-bottom: 1px solid #ffffff;
  107. }
  108.  
  109. #txt1{
  110. position: absolute;
  111. top: 65%;
  112. left: 25%;
  113. height: 20%;
  114. width: 11%;
  115. background: #ffffff;
  116. font: 1.1vh times new roman;
  117. color: #595956;
  118. font-style: italic;
  119. text-align: center;
  120. padding: 2% 1% 1% 1%;
  121. overflow: scroll;
  122. opacity: 1;
  123. visibility: visible;
  124. }
  125.  
  126. #txt2{
  127. position: absolute;
  128. top: 65%;
  129. left: 25%;
  130. height: 20%;
  131. width: 11%;
  132. background: #ffffff;
  133. font: 1.1vh times new roman;
  134. color: #595956;
  135. font-style: italic;
  136. text-align: center;
  137. padding: 2% 1% 1% 1%;
  138. overflow: scroll;
  139. opacity: 0;
  140. visibility: hidden;
  141. transition: 0.8s ease-in-out;
  142. -moz-transition: 0.8s ease-in-out;
  143. -webkit-transition: 0.8s ease-in-out;
  144. -o-transition: 0.8s ease-in-out;
  145. }
  146.  
  147. #txt2:target{
  148. visibility: visible;
  149. opacity: 1;
  150. transition: 0.8s ease-in-out;
  151. -moz-transition: 0.8s ease-in-out;
  152. -webkit-transition: 0.8s ease-in-out;
  153. -o-transition: 0.8s ease-in-out;
  154. }
  155.  
  156. #txt1 a, #txt2 a, #txt1 a:visited, #txt2 a:visited, #txt1 a:active, #txt2 a:active{
  157. color: #999999;
  158. text-decoration: none;
  159. transition: 0.8s ease-in-out;
  160. -moz-transition: 0.8s ease-in-out;
  161. -webkit-transition: 0.8s ease-in-out;
  162. -o-transition: 0.8s ease-in-out;
  163. }
  164.  
  165. #txt1 a:hover, #txt2 a:hover{
  166. color: #FF7DC2;
  167. transition: 0.8s ease-in-out;
  168. -moz-transition: 0.8s ease-in-out;
  169. -webkit-transition: 0.8s ease-in-out;
  170. -o-transition: 0.8s ease-in-out;
  171. }
  172.  
  173. #tri{
  174. position: absolute;
  175. top: 90.8%;
  176. left: 25%;
  177. height: 6%;
  178. width: 13%;
  179. background: #ffffff;
  180. -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  181. clip-path: polygon(100% 0, 0 0, 50% 100%);
  182. }
  183.  
  184. #friend{
  185. position: absolute;
  186. top: 87%;
  187. left: 12%;
  188. height: 9%;
  189. width: 10%;
  190. font: 1vh roboto condensed;
  191. font-style: italic;
  192. background: rgba(255,255,255,0.5);
  193. padding-left: 1%;
  194. padding-right: 1%;
  195. overflow: scroll;
  196. text-align: right;
  197. }
  198.  
  199. #friend a, #friend a:target, #friend a:visited{
  200. font: 0.9vh montserrat;
  201. text-shadow: 1px 1px #ffffff;
  202. text-decoration: none;
  203. color: #FF7DC2;
  204. float: left;
  205. font-weight: bold;
  206. text-transform: uppercase;
  207. }
  208.  
  209. #friend a:hover{
  210. background: none;
  211. color: #000;
  212. }
  213.  
  214. #friend p{
  215. padding-top: 1%;
  216. margin-bottom: 0;
  217. border-bottom: 1px solid #fff;
  218. }
  219.  
  220. h1{
  221. font: 2vh meie script;
  222. color: #ff7dc2;
  223. line-height: 2vh;
  224. border-bottom: 1px solid #ffd1f6;
  225. }
  226.  
  227. </style>
  228.  
  229. <div id="extra">
  230. <div id="box"></div>
  231. <div id="img"></div><div id="decobox"></div>
  232.  
  233. <div id="title">lucy in the sky.</div>
  234. <div id="boxbox"><a target="_blank" href="https://roleplay.chat/profile.php?user=Spicy" title="-- Coded by Spicy. ">🌶</a></div>
  235. <table id="stats">
  236. <tr><td><b>Name.</b>Karolina Dean</td></tr>
  237. <tr><td><b>Age.</b>Eighteen</td></tr>
  238. <tr><td><b>Gender.</b>Female</td></tr>
  239. <tr><td><b>Race.</b>Majesdanian</td></tr>
  240. <tr><td><b>Orientation</b>Homosexual</td></tr>
  241. <tr><td><b>Relationship</b>Single. ♥</td></tr>
  242. <tr><td><b>Occupation</b>Runaway; Hero</td></tr>
  243. </table>
  244.  
  245. <div id="tri"></div>
  246. <div id="txt1">
  247. <a href="#txt2">next >></a>
  248. <h1>powers & abilities</h1>
  249.  
  250. </div>
  251.  
  252. <div id="txt2">
  253. <a href="#txt1"><< prev</a>
  254. <h1>out of sunlight</h1>
  255. <br><br>
  256. </div>
  257.  
  258. <div id="friend">
  259. <p><a href="friendslinkhere">Friend Name</a>.</p>
  260. <p><a href="friendslinkhere">Friend Name</a>.</p>
  261. <p><a href="friendslinkhere">Friend Name</a>.</p>
  262. <p><a href="friendslinkhere">Friend Name</a>.</p>
  263. </div>
  264.  
  265. </div>
Advertisement
Add Comment
Please, Sign In to add comment