Advertisement
Falkstids

Agol code

Jul 10th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.31 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css?family=Inconsolata');
  2. @import url('https://fonts.googleapis.com/css?family=Federo');
  3.  
  4. body{
  5. background-color:#fa8072;
  6. overflow:hidden;
  7.  
  8. }
  9.  
  10. ::-webkit-scrollbar
  11. {
  12. width: 0px;
  13. background-color: transparent;
  14. }
  15.  
  16.  
  17.  
  18. /*you can change the image on these two boxes, you can use the same image for both boxes and they will look exactly how they do in this trial version*/
  19. #boxleft{
  20. background-image:url(https://78.media.tumblr.com/f24505c9102771e4b03e4e708ef61abf/tumblr_p4tuan9QVg1wko284o1_1280.jpg);
  21. background-size:100%;
  22. width:300px;
  23. height:300px;
  24. background-color:#fff;
  25. clip-path: polygon(0 0, 0% 100%, 100% 0);
  26. position:absolute;
  27. top:50%;
  28. left:50%;
  29. margin-top:-150px;
  30. margin-left:-150px;
  31. animation:left 3s 1s;
  32. animation-fill-mode:forwards;
  33. filter:drop-shadow(0px 0px 10px #000);
  34.  
  35. }
  36.  
  37.  
  38.  
  39. #boxright{
  40. width:300px;
  41. height:300px;
  42. background-color:#fff;
  43. clip-path: polygon(100% 100%, 0% 100%, 100% 0);
  44. position:absolute;
  45. top:50%;
  46. left:50%;
  47. margin-top:-150px;
  48. margin-left:-150px;
  49. animation:right 3s 1s;
  50. animation-fill-mode:forwards;
  51. background-image:url(https://78.media.tumblr.com/f24505c9102771e4b03e4e708ef61abf/tumblr_p4tuan9QVg1wko284o1_1280.jpg);
  52. background-size:100%;
  53. }
  54.  
  55. /*you can also change the texture and make it an image if you like*/
  56. #boxbackground{
  57. width:800px;
  58. height:600px;
  59. background-color:#333;
  60. position:absolute;
  61. top:50%;
  62. left:50%;
  63. margin-top:-300px;
  64. margin-left:-400px;
  65. clip-path: polygon(41% 0, 100% 0, 100% 45%, 59% 100%, 0 100%, 0 55%);
  66. opacity:0;
  67. background-image:url(https://www.transparenttextures.com/patterns/3px-tile.png);
  68. animation:appear 1s 4s;
  69. animation-fill-mode:forwards;
  70. }
  71.  
  72. #box1{
  73. width:450px;
  74. height:250px;
  75. background-color:#111;
  76. position:absolute;
  77. right:0px;
  78. top:0px;
  79. margin-right:15px;
  80. margin-top:15px;
  81. }
  82.  
  83. #box2{
  84. width:450px;
  85. height:250px;
  86. background-color:#111;
  87. position:absolute;
  88. left:0px;
  89. bottom:0px;
  90. margin-left:15px;
  91. margin-bottom:15px;
  92. }
  93.  
  94. #info1{
  95. background-color:#111;
  96. box-shadow:0px 0px 10px 0px #000;
  97. position:absolute;
  98. margin-left:10px;
  99. margin-top:10px;
  100. border:solid 1px #333;
  101. width:200px;
  102. height:215px;
  103. padding:5px;
  104. overflow:auto;
  105. font-family: 'Inconsolata', monospace;
  106. color:#fff;
  107. font-size:10pt;
  108. }
  109.  
  110. #info2{
  111. width:200px;
  112. height:215px;
  113. padding:5px;
  114. background-color:#111;
  115. box-shadow:0px 0px 10px 0px #000;
  116. position:absolute;
  117. right:0px;
  118. margin-right:10px;
  119. margin-top:10px;
  120. border:solid 1px #333;
  121. overflow:auto;
  122. font-family: 'Inconsolata', monospace;
  123. color:#fff;
  124. font-size:10pt;
  125. }
  126.  
  127. #info3{
  128. width:200px;
  129. height:215px;
  130. padding:5px;
  131. background-color:#111;
  132. box-shadow:0px 0px 10px 0px #000;
  133. position:absolute;
  134. margin-left:10px;
  135. margin-top:10px;
  136. border:solid 1px #333;
  137. overflow:auto;
  138. font-family: 'Inconsolata', monospace;
  139. color:#fff;
  140. font-size:10pt;
  141. }
  142.  
  143. #info4{
  144. width:200px;
  145. height:215px;
  146. padding:5px;
  147. background-color:#111;
  148. box-shadow:0px 0px 10px 0px #000;
  149. position:absolute;
  150. right:0px;
  151. margin-right:10px;
  152. margin-top:10px;
  153. border:solid 1px #333;
  154. overflow:auto;
  155. font-family: 'Inconsolata', monospace;
  156. color:#fff;
  157. font-size:10pt;
  158.  
  159. }
  160.  
  161. h1{
  162. margin-top:5px;
  163. margin-bottom:5px;
  164. color:#fff;
  165. font-family: 'Federo', sans-serif;
  166. font-size:15pt;
  167. text-align:center;
  168. }
  169.  
  170. #triangle1{
  171. width:250px;
  172. height:250px;
  173. background-color:#111;
  174. clip-path: polygon(100% 100%, 0% 100%, 100% 0);
  175. position:absolute;
  176. margin-left:75px;
  177. margin-top:15px;
  178. float:right;
  179. overflow:auto;
  180.  
  181. }
  182.  
  183. #triangle1 a{
  184. width:230px;
  185. height:40px;
  186. background-color:#fff;
  187. margin-top:10px;
  188. margin-left:10px;
  189. display:block;
  190. filter:brightness(50%) contrast(100%);
  191. transition:1s;
  192. background-size:100%;
  193. }
  194.  
  195. #triangle1 a:hover{
  196. filter:brightness(100%) contrast(150%);
  197. }
  198.  
  199. #triangle2{
  200. width:250px;
  201. height:250px;
  202. background-color:#111;
  203. clip-path: polygon(0 0, 0% 100%, 100% 0);
  204. position:absolute;
  205. bottom:0px;
  206. right:0px;
  207. margin-right:75px;
  208. margin-bottom:15px;
  209. float:left;
  210. overflow:auto;
  211.  
  212. }
  213.  
  214. #triangle2 a{
  215. width:230px;
  216. height:40px;
  217. background-color:#fff;
  218. margin-top:10px;
  219. margin-left:10px;
  220. display:block;
  221. filter:brightness(50%) contrast(100%);
  222. transition:1s;
  223. }
  224.  
  225. #triangle2 a:hover{
  226. filter:brightness(100%) contrast(150%);
  227. }
  228.  
  229.  
  230.  
  231.  
  232. @keyframes appear{
  233. from{
  234. opacity:0;
  235. }
  236. to{
  237. opacity:1;
  238. }
  239. }
  240.  
  241. @keyframes left{
  242. 0%{
  243. margin-top:-150px;
  244. margin-left:-150px;
  245. }
  246. 50%{
  247. margin-top:-300px;
  248. margin-left:0px;
  249. }
  250. 100%{
  251. margin-top:-300px;
  252. margin-left:-400px;
  253. }
  254. }
  255.  
  256. @keyframes right{
  257. 0%{
  258. margin-top:-150px;
  259. margin-left:-150px;
  260. }
  261. 50%{
  262. margin-top:0px;
  263. margin-left:-300px;
  264. }
  265. 100%{
  266. margin-top:0px;
  267. margin-left:100px;
  268. }
  269. }
  270.  
  271. a{
  272. text-decoration:none;
  273. color:#dadada;
  274. transition:1s;
  275. }
  276.  
  277. a:hover{
  278. color:gold;
  279. }
  280.  
  281.  
  282. <div id="boxleft"></div>
  283. <div id="boxright"></div>
  284.  
  285. <div id="boxleft"></div>
  286. <div id="boxright"></div>
  287. <div id="boxbackground">
  288. <div id="triangle1">
  289. <br>
  290. <br>
  291. <br>
  292. <a target="_blank" href="https://roleplay.chat//profile.php?user=" title="Write thing about fren here"><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/ZbEjh79.png"></a>
  293. <a target="_blank" href="https://roleplay.chat//profile.php?user=" title="Write thing about fren here"><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/Jj4yB9Z.png"></a>
  294. <a target="_blank" href="https://roleplay.chat//profile.php?user=" title="Write thing about fren here"><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/3dxJd57.png"></a>
  295. <a target="_blank" href="https://roleplay.chat//profile.php?user=" title="Write thing about fren here"><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/jDoGQpE.png"></a>
  296. <a target="_blank" href="https://roleplay.chat//profile.php?user=" title="Write thing about fren here"><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/iOHQG1d.png"></a>
  297. <a target="_blank" href="https://roleplay.chat//profile.php?user=" title="Write thing about fren here"><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/w9P2MzO.png"></a>
  298. <a target="_blank" href="https://roleplay.chat//profile.php?user=" title="Write thing about fren here"><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/w9P2MzO.png"></a>
  299. <a target="_blank" href="https://roleplay.chat//profile.php?user=" title="Write thing about fren here"><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/w9P2MzO.png"></a>
  300. <a target="_blank" href="https://roleplay.chat//profile.php?user=" title="Write thing about fren here"><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/w9P2MzO.png"></a>
  301.  
  302.  
  303.  
  304.  
  305. </div>
  306. <div id="triangle2">
  307. <a target="_blank" href="https://78.media.tumblr.com/3e677526c4f137672b92e888a92648f7/tumblr_oia5hlH0gF1r4f9b7o1_1280.jpg" ><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/ZbEjh79.png"></a>
  308. <a target="_blank" href="https://78.media.tumblr.com/e1ea24d74ac5ba8dc5aa78790db88f91/tumblr_o5flj8UiCT1ugfzjbo1_640.jpg" ><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/Jj4yB9Z.png"></a>
  309. <a target="_blank" href="https://78.media.tumblr.com/367517b1e1b8e272c92651bbd0752823/tumblr_o2n2sm4vGO1ugfzjbo1_640.jpg" ><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/3dxJd57.png"></a>
  310. <a target="_blank" href="https://78.media.tumblr.com/bfe705628dc1c2bdbaed68e9f6273961/tumblr_oqisxo3Lrm1shcacyo1_1280.jpg" ><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/jDoGQpE.png"></a>
  311. <a target="_blank" href="https://78.media.tumblr.com/769399f785d197b4667a6928fb1c6824/tumblr_o7kochWDln1rqat58o1_1280.jpg" ><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/iOHQG1d.png"></a>
  312. <a target="_blank" href="#"><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/w9P2MzO.png"></a>
  313. <a target="_blank" href="#"><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/w9P2MzO.png"></a>
  314. <a target="_blank" href="#"><img style="background-size:100%; width230px; height:40px;"src="https://i.imgur.com/w9P2MzO.png"></a>
  315. </div>
  316. <div id="box1">
  317. <div id="info1">
  318. <h1>Information</h1>
  319. <span style="float: left; ">Thing</span> <span style="float: right;">Thing</span><br>
  320. <span style="float: left; ">Thing</span> <span style="float: right;">Thing</span><br>
  321. <span style="float: left; ">Thing</span> <span style="float: right;">Thing</span><br>
  322. <span style="float: left; ">Thing</span> <span style="float: right;">Thing</span><br>
  323. <span style="float: left; ">Thing</span> <span style="float: right;">Thing</span><br>
  324. <span style="float: left; ">Thing</span> <span style="float: right;">Thing</span><br>
  325. <span style="float: left; ">Thing</span> <span style="float: right;">Thing</span><br>
  326. <span style="float: left; ">Thing</span> <span style="float: right;">Thing</span><br>
  327. <span style="float: left; ">Thing</span> <span style="float: right;">Thing</span><br>
  328. </div>
  329.  
  330. <div id="info2">
  331. <h1>Information</h1>
  332.  
  333. Meme
  334. </div>
  335. </div>
  336. <div id="box2">
  337. <div id="info3">
  338. <h1>Information</h1>
  339.  
  340. Meme
  341. </div>
  342.  
  343. <div id="info4">
  344. <h1>Information</h1>
  345. <b>00</b>Code credit @ <a href="https://roleplay.chat/profile.php?user=Hound+of+Tindalos">Hound of Tindalos</a>
  346. </div>
  347. </div>
  348. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement