Advertisement
QueenOfGeckos

goldie locke

Dec 18th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.43 KB | None | 0 0
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. height: 100%;
  5. width: 100%;
  6. background: url(https://i.imgur.com/hNWK8Pa.png); /*background image*/
  7. background-position: center;
  8. background-attachment: fixed;
  9. -webkit-background-size: cover;
  10. -moz-background-size: cover;
  11. -o-background-size: cover;
  12. background-size: cover;
  13. font-family: Arial; /*body font*/
  14. }
  15.  
  16. a {
  17. color: #606060; /*link color*/
  18. text-decoration: none;
  19. -webkit-transition: all 0.5s ease;
  20. -moz-transition: all 0.5s ease;
  21. transition: all 0.5s ease;
  22. }
  23.  
  24. a:hover {
  25. color: #e1e1e1; /*hover link color*/
  26. -webkit-transition: all 0.5s ease;
  27. -moz-transition: all 0.5s ease;
  28. transition: all 0.5s ease;
  29. }
  30.  
  31. #sidebar-background {
  32. width: 1000px;
  33. height: 100%;
  34. background: #f0ff91; /*sidebar background color*/
  35. top: 0;
  36. left: -708px;
  37. position: fixed;
  38. transform: skew(-25deg);
  39. -webkit-transform: skew(-25deg);
  40. -moz-transform: skew(-25deg);
  41. -o-transform: skew(-25deg);
  42. }
  43.  
  44. #sidebar-border {
  45. width: 1003px;
  46. height: 100%;
  47. border-right: 5px solid #f0ff91; /*sidebar background color*/
  48. left: 0;
  49. top: 0;
  50. margin-left: -708px;
  51. position: fixed;
  52. transform: skew(-25deg);
  53. -webkit-transform: skew(-25deg);
  54. -moz-transform: skew(-25deg);
  55. -o-transform: skew(-25deg);
  56. }
  57.  
  58. #sidebar {
  59. width: 450px;
  60. height: auto;
  61. position: fixed;
  62. }
  63.  
  64. #title {
  65. font-size: 70px;
  66. color: #0b1217; /*title color*/
  67. font-family: Arial Black;
  68. text-transform: lowercase;
  69. letter-spacing: -7px;
  70. padding-left: 20px;
  71. }
  72.  
  73. #title:first-letter {
  74. color: #107c1b; /*first letter of title color*/
  75. }
  76.  
  77. #navigation {
  78. text-align: right;
  79. height: auto;
  80. text-transform: uppercase;
  81. letter-spacing: -1px;
  82. position: fixed;
  83. margin-top: 30px;
  84. font-size: 14px;
  85. width: 1000px;
  86. left: -690px;
  87. }
  88.  
  89. #navigation a {
  90. display: inline-block;
  91. text-align: right;
  92. width: 180px;
  93. position: relative;
  94. height: 28px;
  95. color: #0b1217; /*navigation link color*/
  96. line-height: 18px;
  97. font-weight: bold;
  98. }
  99.  
  100. i {
  101. opacity: 0;
  102. width: 170px;
  103. height: 18px;
  104. background: #0b1217; /*hover navigation link background color*/
  105. border-left: 10px solid #fbbeff; /*hover navigation link left border color*/
  106. z-index: -1;
  107. position: absolute;
  108. margin-left: -160px;
  109. display: inline-block;
  110. transform: skew(-25deg);
  111. -webkit-transform: skew(-25deg);
  112. -moz-transform: skew(-25deg);
  113. -o-transform: skew(-25deg);
  114. -webkit-transition: all 0.6s ease-in-out;
  115. -moz-transition: all 0.6s ease-in-out;
  116. -o-transition: all 0.6s ease-in-out;
  117. transition: all 0.6s ease-in-out;
  118. }
  119.  
  120. #navigation a:hover i {
  121. opacity: 1;
  122. height: 18px;
  123. }
  124.  
  125. #navigation a:hover {
  126. color: white; /*hover navigation link color*/
  127. height: 28px;
  128. -webkit-transition: all 0.6s ease-in-out;
  129. -moz-transition: all 0.6s ease-in-out;
  130. -o-transition: all 0.6s ease-in-out;
  131. transition: all 0.6s ease-in-out;
  132. }
  133.  
  134. #description-background {
  135. background: white; /*description background color*/
  136. width: 400px;
  137. height: 280px;
  138. position: fixed;
  139. top: 34%;
  140. left: 47%;
  141. border-radius: 10px;
  142. opacity: 0.5; /*description background transparency*/
  143. }
  144.  
  145. #description {
  146. width: 360px;
  147. height: 240px;
  148. position: fixed;
  149. top: 34%;
  150. left: 47%;
  151. margin-left: 20px;
  152. margin-top: 20px;
  153. overflow: hidden;
  154. letter-spacing: 1px;
  155. text-align: justify;
  156. padding-right: 8px;
  157. font-size: 11px; /*description font size*/
  158. color: #0b1217; /*description font color*/
  159. }
  160.  
  161. #quote {
  162. font-size: 12px;
  163. font-family: Arial Black;
  164. text-transform: uppercase;
  165. letter-spacing: 2px;
  166. text-align: center;
  167. color: #0b1217; /*quote font color*/
  168. }
  169.  
  170. #quote:first-letter {
  171. color: #107c1b; /*first letter of quote color*/
  172. font-size: 16px;
  173. }
  174.  
  175. ::-webkit-scrollbar {
  176. height: 10px;
  177. width: 7px;
  178. background: white; /*scrollbar background color*/
  179. }
  180.  
  181. ::-webkit-scrollbar-thumb:vertical {
  182. background: #107c1b; /*scrollbar color*/
  183. border: 2px solid white; /*scroll barbackground color*/
  184. }
  185.  
  186. ::selection {
  187. background: #606060; /*selection color*/
  188. color: #ffffff;
  189. }
  190.  
  191. ::-moz-selection {
  192. background: #606060; /*selection color*/
  193. color: #ffffff;
  194. }
  195.  
  196. p::selection {
  197. background: #606060; /*selection color*/
  198. color: #ffffff;
  199. }
  200.  
  201. p::-moz-selection {
  202. background: #606060; /*selection color*/
  203. color: #ffffff;
  204. }
  205.  
  206. /* Credits to http://pohroro.tumblr.com */
  207.  
  208. #c {
  209. width: 55px;
  210. height: 18px;
  211. font-family: Arial;
  212. font-size: 7px;
  213. text-transform: uppercase;
  214. text-align: center;
  215. bottom: 10px;
  216. right: 10px;
  217. letter-spacing: 1px;
  218. line-height: 4px;
  219. padding: 10px 3px;
  220. display: block;
  221. background: #ffffff;
  222. border: 1px dotted #000000;
  223. position: fixed;
  224. }
  225.  
  226. #c a {
  227. font-weight: bold;
  228. line-height: 17px;
  229. font-size: 15px;
  230. font-family: Libre Baskerville;
  231. text-transform: lowercase;
  232. font-style: italic;
  233. letter-spacing: -1px;
  234. }
  235. .far{
  236. width:330px;
  237. height: 300px;
  238. overflow:auto;
  239. }
  240. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  241.  
  242. <!--
  243.  
  244.  
  245. ▪ ▪ ▪ ▪ ▪ ▪ { Pʟᴇᴀsᴇ ᴅᴏ ɴᴏᴛ ʀᴇᴍᴏᴠᴇ ᴄʀᴇᴅɪᴛs!
  246.  
  247. ___ ___ ___ ___ ___ ___ __ __
  248. / __|/ _ \ | \ | __|/ __| | _ )\ \ / /
  249. | (__| (_) || |) || _| \__ \ | _ \ \ V /
  250. \___|\___/ |___/ |___||___/ |___/ |_|
  251. ___ ___ _ _ ___ ___ ___ ___
  252. | _ \ / _ \ | || || _ \ / _ \ | _ \ / _ \
  253. | _/| (_) || __ || /| (_) || /| (_) |
  254. |_| \___/ |_||_||_|_\ \___/ |_|_\ \___/
  255.  
  256.  
  257. ★ http://pohroro.tumblr.com } ▪ ▪ ▪ ▪ ▪ ▪
  258.  
  259.  
  260.  
  261. -->
  262.  
  263. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  264.  
  265. <head>
  266.  
  267. <title>{Title}</title>
  268. <link rel="shortcut icon" href="{Favicon}">
  269. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  270.  
  271.  
  272. <style type="text/css">
  273.  
  274.  
  275.  
  276. </style>
  277. </head>
  278. <body>
  279.  
  280. <div id="sidebar-border"></div>
  281. <div id="sidebar-background"></div>
  282. <div id="sidebar">
  283. <div id="title">ZŁOTA</div>
  284.  
  285. <div id="navigation">
  286. <a href="#we" style="left: 56px;">This one is to hot,<i></i></a><br />
  287. <a href="#will" style="left: 43px;">This one is too cold,<i></i></a><br />
  288. <a href="#rock" style="left: 29px;">This one is<i></i></a><br />
  289. <a href="#you" style="left: 17px;">Just right<i></i></a><br />
  290. <a target="_blank" href=" " style="left: 4px;"> <i></i></a><br />
  291. <a target="_blank" href=" " style="left: -9px;"> <i></i></a><br />
  292. <a target="_blank" href=" " style="left: -22px;"> <i></i></a><br />
  293. <a target="_blank" href=" " style="left: -35px;"> <i></i></a><br />
  294. </div>
  295.  
  296. <div id="description-background"></div>
  297. <div id="description">
  298.  
  299.  
  300. <!--start of description-->
  301. <div id="we" class="far">
  302. <div id="quote"><!--edit quote here-->Dossier</div>
  303. <font style="float:left"><b>Name</b></font>
  304. <font style="float:right">Zlota</font><br>
  305. <font style="float:left"><b>Nicknames</b></font>
  306. <font style="float:right">Z, Lot, Lota, Goldie Lockes</font><br>
  307. <font style="float:left"><b>Age</b></font>
  308. <font style="float:right">24</font><br>
  309. <font style="float:left"><b>Gender</b></font>
  310. <font style="float:right">♀ Female</font><br>
  311. <font style="float:left"><b>Race</b></font>
  312. <font style="float:right">Human</font><br>
  313. <font style="float:left"><b>Height + Weight</b></font>
  314. <font style="float:right">6'2"・130lbs</font><br>
  315. <font style="float:left"><b>Hair + Eye </b></font>
  316. <font style="float:right">Blond・Gold</font><br>
  317. <font style="float:left"><b>Alignment</b></font>
  318. <font style="float:right">None</font><br>
  319. <font style="float:left"><b>Origin</b></font>
  320. <font style="float:right">Goldie Lockes and the 3 bears</font><br>
  321. <font style="float:left"><b>Sexual Orientation</b></font>
  322. <font style="float:right">Meh doesn't matter. </font><br>
  323. <font style="float:left"><b>Martial Status</b></font>
  324. <font style="float:right">Single</font><br></p></div>
  325.  
  326. <div id="will" class="far">
  327. <div id="quote"><!--edit quote here-->About</div>
  328.  
  329. <p>A scrappy and tough chick. Zlota's far from a straight arrow. She's a mama with a short fuse, and quick temper. What's that mean for you? Well stay away. That's all really. She tends to keep her perosnal issues to herself and does well off. Her 'friends' or crew are made up of varying outcasts. Those who ran away from the queen's circle, those who are the wrong side of the law, or those who just don't have a place to go.</p>
  330.  
  331. <p> Zlota is a single mother, her son is still fairly young, and in her case. Despite her questionable background. She was a run away, as a kid. Why? Some say it was cause her dad was an alcholic, and hner mother was a hooker. Others say she killed her own parents....then ran off. While the real truth is? She was a foster kid. No real family. She packed her stuff up and ran. Was filed as a missing child, but hopped a buss cross country that night and made her way to Grimm Well.</p>
  332.  
  333. <p>Her first real crime wasn't comitted until she was 18. Her 'boyfriend' at the time, her baby daddy, and her were young, stupid and in love. What the two thought was an abandoned house they were going to be squatting in turned out to be the 'side home' of some fuddy duddy right guy.... So their break in resulted in both being prosecuted and Zlota being released with a eight month old... on good behavior and pleas, she was able to get out with a leash.</p>
  334.  
  335. <p>She tries to make a living however she can. Avoding illegal activity at this point.Despite watching over a bunch of misfits. All in all she stays tough for her little Terry. </div>
  336.  
  337. <div id="rock" class="far">
  338. <div id="quote">Friends</div>
  339.  
  340. <p>N/A</p></div>
  341.  
  342. <div id="you" class="far">
  343. <div id="quote">Rules</div>
  344. o1. PM friendly.<Br>
  345. o2. IC =/= OOC..<Br>
  346. o3. No fucks given.<Br>
  347. o4. I play my character. Br>
  348. o5. For the Grimm justice room.<Br>
  349. o6. What ever.<Br>
  350. o7. Start with a post if you really want to. I will decline if I am not interested. Do not take it personally.<Br>
  351. o8. Story > Smut.<Br>
  352. o9. I am a bit of a bitch if you cross me.<Br>
  353. 1o. Keep drama away please.<Br>
  354. 11. No profile? No RP<Br>
  355. </div>
  356. </div>
  357.  
  358. <!--end of description-->
  359.  
  360. <div id="c">codes by<br /><a target="_blank" href="http://pohroro.tumblr.com">pohroro</a></div>
  361.  
  362. </body>
  363. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement