ChaZayari

From Shadows Codes, 10/8/2020

Oct 8th, 2020
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.28 KB | None | 0 0
  1. <style>
  2.  
  3.  
  4. @import url('https://fonts.googleapis.com/css?family=Aguafina+Script|Dynalight|Great+Vibes|Italianno|Meie+Script|Parisienne|Petit+Formal+Script|Ruthie&display=swap');
  5. @import url('https://fonts.googleapis.com/css?family=Alegreya+Sans:300|Chathura|Marvel|Open+Sans:300&display=swap');
  6. @import url('https://fonts.googleapis.com/css?family=Aguafina+Script|Aladin|Audiowide|Bangers|Chathura|Marvel|Open+Sans:300|Permanent+Marker|Share|Staatliches&display=swap');
  7. ::-webkit-scrollbar{width:0.5vh;height:0.1vh;}
  8. ::-webkit-scrollbar-track{border-radius:0;background:transparent;}
  9. ::-webkit-scrollbar-thumb{border-radius:0;background:transparent;}
  10.  
  11. body{
  12. background: #000;
  13. background-position: center;
  14. background-size: cover;
  15. }
  16.  
  17.  
  18. @keyframes fadein{
  19. from{opacity:0;}
  20. to{opacity:1;}
  21. }
  22.  
  23.  
  24. @keyframes fadeup{
  25. from{opacity:0;top:10vh;}
  26. to{opacity:1;top:8vh;}
  27. }
  28.  
  29. @keyframes fadeuplogo{
  30. from{opacity:0;top:24vh;}
  31. to{opacity:1;top:22vh;}
  32. }
  33.  
  34. @keyframes bouncein1{
  35. 0%{bottom: 6vh;opacity: 0;}
  36. 50%{bottom:16vh;}
  37. 100%{bottom:14vh;opacity: 1;}
  38. }
  39.  
  40. @keyframes bouncein2{
  41. 0%{bottom: 46vh;opacity: 0;}
  42. 50%{bottom:56vh;}
  43. 100%{bottom:54vh;opacity: 1;}
  44. }
  45.  
  46. @keyframes pulseglow{
  47. 0%{box-shadow: 0 0 2vh #fff0c9;}
  48. 50%{box-shadow: 0 0 4vh #fff0c9;}
  49. 100%{box-shadow: 0 0 2vh #fff0c9;}
  50. }
  51.  
  52. #maintitle{
  53. position: fixed;
  54. z-index: 5;
  55. text-align: center;
  56. height: 25vh;
  57. width: 50vw;
  58. left: 2vw;
  59. font-family: 'Aguafina Script';
  60. font-size: 15vh;
  61. color: #fff;
  62. text-shadow: 0vh 1vh 1vh #000;
  63. animation: fadeup .5s 1;
  64. animation-fill-mode: both;
  65. animation-delay: .5s;
  66. }
  67.  
  68.  
  69. #box1, #box2{
  70. position: fixed;
  71. padding: 1%;
  72. overflow: auto;
  73. background: radial-gradient(#fff, #f9dc84);
  74. box-shadow: 0vh 1vh 1vh #f9dc84;
  75. height: 30vh;
  76. width: 35vw;
  77. right: 5vw;
  78. font-family: 'Marvel';
  79. font-size: 2.5vh;
  80. color: ##1a092d;
  81. text-shadow: 0vh .5vh .75vh;
  82. }
  83.  
  84. #box1{
  85. animation: bouncein1 1s 1;
  86. animation-fill-mode: both;
  87. animation-delay: .75s;
  88. }
  89.  
  90. #box2{
  91. animation: bouncein2 1s 1;
  92. animation-fill-mode: both;
  93. animation-delay: .8s;
  94. }
  95.  
  96.  
  97.  
  98. h1{font-size: 5vh;font-weight: lighter;}
  99. a{text-decoration: underline;transition: 0.2s;color: #a078ba;}
  100. a:hover{transition: 0.2s;color:#8852a8;}
  101.  
  102.  
  103. #logo{
  104. position: fixed;
  105. left: 21.5vw;
  106. animation: fadeuplogo .5s 1;
  107. animation-fill-mode: both;
  108. animation-delay: .6s;
  109. }
  110.  
  111. #logo img{
  112. height: 25vh;
  113. }
  114.  
  115. b{
  116. color: #9e49ff;
  117. text-shadow: 0 0 1vh #7700ff;
  118. }
  119.  
  120.  
  121. #showcase{
  122. height: 20vh;
  123. overflow: hidden;
  124. position: fixed;
  125. width: 120vw;
  126. bottom: 19vh;
  127. left: -30vw;
  128. opacity: 0;
  129. background: transparent;
  130. color: #333;
  131. animation: fadein 2s 1;
  132. animation-fill-mode: both;
  133. animation-delay: 1s;
  134. }
  135.  
  136. .showcase p{
  137. position: absolute;
  138. width: 100%;
  139. height: 100%;
  140. margin: 0;
  141. line-height: 50px;
  142. text-align: center;
  143. color: #fff;
  144. -moz-transform: translateX(100%);
  145. -webkit-transform: translateX(100%);
  146. transform: translateX(100%);
  147. -moz-animation: scroll-left 4s linear infinite;
  148. -webkit-animation: scroll-left 4s linear infinite;
  149. animation: scroll-left 30s linear infinite;
  150. letter-spacing: 20px;
  151. }
  152.  
  153.  
  154. .showcase p:hover{
  155. -webkit-animation-play-state: paused;
  156. -moz-animation-play-state: paused;
  157. -o-animation-play-state: paused;
  158. animation-play-state: paused;
  159. }
  160.  
  161. @-moz-keyframes scroll-left {
  162. 0% {-moz-transform: translateX(100%);}
  163. 100%{-moz-transform: translateX(-100%);}
  164. }
  165.  
  166. @-webkit-keyframes scroll-left{
  167. 0%{-webkit-transform: translateX(100%);}
  168. 100%{-webkit-transform: translateX(-100%);}
  169. }
  170.  
  171. @keyframes scroll-left{
  172. 0%{
  173. -moz-transform: translateX(100%);
  174. -webkit-transform: translateX(100%);
  175. transform: translateX(100%);}
  176. 100% {
  177. -moz-transform: translateX(-100%);
  178. -webkit-transform: translateX(-100%);
  179. transform: translateX(-100%);}
  180. }
  181.  
  182. .screencap{
  183. height:12vh;
  184. box-shadow: 0 0 1vh #808080;
  185. }
  186.  
  187. .screencapnew{
  188. height:12vh;
  189. animation: pulseglow 1.4s infinite;
  190. animation-fill-mode: both;
  191. }
  192.  
  193. .hoverover{
  194. position: relative;
  195. display: inline-block;
  196. }
  197.  
  198. .hoverover .hoverovertext {
  199. visibility: hidden;
  200. position: relative;
  201. left: 30px;
  202. width: 20vw;
  203. height: 20vh;
  204. overflow: hidden;
  205. background-color: black;
  206. text-align: center;
  207. border-radius: 6px;
  208. padding: 5px 0;
  209. position: absolute;
  210. z-index: 7;
  211. }
  212.  
  213. .hoverover:hover .hoverovertext {
  214. visibility: visible;
  215. }
  216.  
  217.  
  218. </style>
  219.  
  220. <div id="maintitle">From Shadows Coding</div>
  221.  
  222. <div id="logo">
  223. <img src="https://i.imgur.com/UxNP8yk.gif">
  224. </div>
  225.  
  226.  
  227. <div id="showcase">
  228. <div class="showcase"><br><br>
  229. <p>
  230. <a target="_blank" href="https://i.imgur.com/dWJHwge.png"><img src="https://i.imgur.com/dWJHwge.png" class="screencap"></a>
  231. <a target="_blank" href="https://i.imgur.com/QC4KyxU.png"><img src="https://i.imgur.com/QC4KyxU.png" class="screencap"></a>
  232. <a target="_blank" href="https://i.imgur.com/L42pjBQ.png"><img src="https://i.imgur.com/L42pjBQ.png" class="screencap"></a>
  233. <a target="_blank" href="https://i.imgur.com/INLQ84m.png"><img src="https://i.imgur.com/INLQ84m.png" class="screencap"></a>
  234. <a target="_blank" href="https://i.imgur.com/aoR7rnc.png"><img src="https://i.imgur.com/aoR7rnc.png" class="screencap"></a>
  235. <a target="_blank" href="https://i.imgur.com/AggfahT.png"><img src="https://i.imgur.com/AggfahT.png" class="screencap"></a>
  236. <a target="_blank" href="https://i.imgur.com/6a3lLsi.png"><img src="https://i.imgur.com/6a3lLsi.png" class="screencap"></a>
  237. <a target="_blank" href="https://i.imgur.com/DeXtBs9.png"><img src="https://i.imgur.com/DeXtBs9.png" class="screencapnew"></a>
  238. </p>
  239. </div>
  240. </div>
  241.  
  242.  
  243. <div id="box1">
  244. <center>
  245. <h1>02: Public Use Layouts and Resources</h1>
  246. Below is a list of public, free-to-use layouts that I build from time-to-time when I'm feeling moderately lazy. Feel free to use them, but please keep the credit on the layout.<br>
  247. <br>
  248. <u><b>VERY IMPORTANT.</b></u><br>
  249. To use these layouts, you need to take the entirety of the layout's code and stick it in the 'body' section of your 'edit profile' page. If you separate the code, you will cause the fonts to go haywire, and the scrollbar to become visible. I design my layouts to hide the scrollbar because the Chrome scrollbar looks totally hideous.<br>
  250. I've seen too many people with jacked up codes because they take the CSS and the HTML and put them into the two separate boxes.<br>
  251. <br>
  252. I typically use this <a target="_blank" href="https://htmledit.squarefree.com/">Real-time HTML Editor</a> to put together my codes, and I recommend it for anyone looking to build something of their own.<br>
  253. For my fonts, I use <a target="_blank" href="https://fonts.google.com/">Google Fonts</a>, although <a target="_blank" href="https://roleplay.chat/profile.php?user=Deum">Monster Codes</a> also has a fonts page, and I occasionally use that as well.<br>
  254. </center>
  255. <br>
  256. <ol>
  257. <li><div class="hoverover"><a target="_blank" href="https://pastebin.com/raw/7ipx8WJX">Lynz.</a><span class="hoverovertext"><img src="https://i.imgur.com/6aLV7g3.png" height="100%"></span></div> Three boxes, fast slide-in animation, and spot for one image.</li>
  258. <li><div class="hoverover"><a target="_blank" href="https://pastebin.com/raw/qqcm7bv9">Through the Fire.</a><span class="hoverovertext"><img src="https://i.imgur.com/GDdTWLC.png" height="100%"></span></div> One box, with four tabs. One image. No animations.</li>
  259. <li><div class="hoverover"><a target="_blank" href="https://pastebin.com/raw/DiF1U4Hj">That Grey Cat.</a><span class="hoverovertext"><img src="https://i.imgur.com/6IPMfNU.png" height="100%"></span></div> One image, slides in. Two boxes, both fade in.</li>
  260. <li><div class="hoverover"><a target="_blank" href="https://pastebin.com/raw/SsGEyxzH">Liger.</a><span class="hoverovertext"><img src="https://i.imgur.com/LWegQmF.png" height="100%"></span></div> One image, and one box with a slanted animation.</li>
  261. <li><div class="hoverover"><a target="_blank" href="https://pastebin.com/raw/ivtA82Tv">Snowflake.</a><span class="hoverovertext"><img src="https://i.imgur.com/Jsbkmvr.png" height="100%"></span></div> One image, three boxes with a gradual slide-in animation.</li>
  262. <li><div class="hoverover"><a target="_blank" href="https://pastebin.com/raw/EGwLQ163">Archer of Red.</a><span class="hoverovertext"><img src="https://i.imgur.com/mwjXpVe.png" height="100%"></span></div> One image, three gif buttons and one gif-header. Move-in animation.</li>
  263. <li><div class="hoverover"><a target="_blank" href="https://pastebin.com/raw/vdga0YLQ">Shinobi.</a><span class="hoverovertext"><img src="https://i.imgur.com/qtdpvOx.png" height="100%"></span></div> One image, one box, three tabs, slide-in animation.</li>
  264. <li><div class="hoverover"><a target="_blank" href="https://pastebin.com/raw/6w2s8u4e">Striped.</a><span class="hoverovertext"><img src="https://i.imgur.com/Xb2arlA.png" height="100%"></span></div> One image, one box, two animated stripes, slide-in/fade animation.</li>
  265. <li><div class="hoverover"><a target="_blank" href="https://pastebin.com/raw/qyVqKBhT">Crystal.</a><span class="hoverovertext"><img src="https://i.imgur.com/I1Layjm.png" height="100%"></span></div> One image, one box, one info, three tabs, one title. No animation.</li>
  266. <li><div class="hoverover"><a target="_blank" href="https://pastebin.com/raw/WqB8ytRp">Florencian.</a><span class="hoverovertext"><img src="https://i.imgur.com/j7P6a1K.png" height="100%"></span></div> One Image, One Box, four tabs, One Title, smooth transition between tabs.</li>
  267. <li><div class="hoverover"><a target="_blank" href="https://pastebin.com/raw/LuPGGp6m">Cottontail.</a><span class="hoverovertext"><img src="https://i.imgur.com/HCrJFq2.png" height="100%"></span></div> One Image, One Box, three tabs, smooth transition between tabs.</li>
  268. <li><div class="hoverover"><a target="_blank" href="https://pastebin.com/raw/SvT7gzz5">Annika.</a><span class="hoverovertext"><img src="https://i.imgur.com/o5uSrPa.png" height="100%"></span></div> <u><b>New!</b></u> One image, Two Boxes, Four tabs with animated buttons.</li>
  269.  
  270. </div>
  271. <div id="box2">
  272. <center>
  273. <h1>01: Rules and Prices</h1>
  274. Hello! Thank you for visiting my coding profile.
  275. Here, I have information regarding my profile commissions, as well as a list of free-to-use layouts in the second box.<br>
  276. If you're looking to hire me to build you a role-playing layout, there are a few key things you should take note of first.<br>
  277. <br>
  278. <li>This profile is Not for role playing. It is for consultation on commissions or on pre-made layouts. (And occasionally for shitposting In-Room.)</li>
  279. <li>My layouts are purely HTML- and CSS-based. <b>I do not write JavaScript.</b></li>
  280. <li>My codes can be distinguished either by the little tag I put in the Out of Character section, or by the small cat in the bottom corner of the screen.</li>
  281. <li>Please don't remove the tag or the small cat. These are credits to my work.</li>
  282. <li>Don't steal my codes. I make good money through my coding commissions. If you want one for yourself, see below for commission pricing.</li>
  283. <br>
  284. My commissions vary in prices, depending on a few variables.<br>
  285. Base Price : $20 per Layout<br>
  286. Animations : +$5<br>
  287. Same-Day Completion : +$5<br>
  288. <br>
  289. If you bring a render-able image, I will gladly remove the background from the image for an extra $5 added to the base price.<br>
  290. <br>
  291. I only accept PayPal.<br><br>
  292. <b>For more questions on coding and commissions and whatnot, please feel free to DM me or send me an RPCMail!
  293. </div>
Add Comment
Please, Sign In to add comment