Advertisement
hanimjay

Prototype III

Jan 2nd, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.44 KB | None | 0 0
  1. [dohtml]
  2. <link href="https://fonts.googleapis.com/css?family=Muli:800|Abril+Fatface" rel="stylesheet">
  3. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  4.  
  5. <style>
  6. #prototype-3 {
  7. width: 550px;
  8. height: 500px;
  9. overflow: hidden;
  10. position: relative;
  11. margin: 0px auto;
  12. outline: 1px solid #000;
  13. border-left: 4px solid #fff;
  14. border-bottom: 4px solid #fff;
  15. }
  16.  
  17. #prototype-3 ::-webkit-scrollbar {
  18. width: 1px;
  19. }
  20.  
  21. #prototype-3 ::-webkit-scrollbar-track {
  22. background: #ccc;
  23. border: 0.5px solid #ccc;
  24. }
  25.  
  26. #prototype-3 ::-webkit-scrollbar-thumb {
  27. background: #F45D3F;
  28. border: 0.5px solid #EAFF3B;
  29. }
  30.  
  31. #prototype-3 .background{
  32. position: absolute;
  33. width: 550px;
  34. height: 500px;
  35. background: url(https://i.imgur.com/qw4EopO.jpg);
  36. background-size: 820px;
  37. background-position: left;s;
  38. opacity: 1;
  39. transition: all 0.8s ease-in-out 2.5s;
  40. }
  41.  
  42. #prototype-3 input[type=checkbox]:checked ~ .background{
  43. background-position: right;
  44. transition: all 1s ease-in-out 1.5s;
  45. }
  46.  
  47. #prototype-3 .base{
  48. position: absolute;
  49. width: 550px;
  50. height: 500px;
  51. background: #000;
  52. opacity: 0.5;
  53. transition: all 1s ease-in-out 2.5s;
  54. }
  55.  
  56. #prototype-3 input[type=checkbox]:checked ~ .base{
  57. opacity: 0.9;
  58. transition: all 1s ease-in-out 1.5s;
  59. }
  60.  
  61. #prototype-3 .container {
  62. overflow: auto;
  63. background: transparent;
  64. width: 440px;
  65. height: 400px;
  66. position: absolute;
  67. top: 45px;
  68. left: 40px;
  69. text-align: right;
  70. opacity: 0;
  71. transition: all 1s ease-in-out 0s;
  72. }
  73. #prototype-3 input[type=checkbox]:checked ~ .container {
  74. opacity: 0.95;
  75. transition: all 1s ease-in-out 2.5s;
  76. }
  77.  
  78. #prototype-3 .click{
  79. position: absolute;
  80. bottom: 35px;
  81. left: 15px;
  82. transition: all 1s ease-in-out 0s;
  83. }
  84. #prototype-3 input[type=checkbox]:checked ~ .click {
  85. transform: rotate(45deg);
  86. transition: all 1s ease-in-out 0s;
  87. }
  88.  
  89. #prototype-3 label {
  90. text-transform: uppercase;
  91. font-family: 'Montseratt', sans-serif;
  92. font-size: 8px;
  93. font-weight: 600;
  94. padding: 5px 10px;
  95. padding-left: 20px;
  96. transition: 0.5s;
  97. letter-spacing: 9px;
  98. }
  99. #prototype-3 label:hover {
  100. cursor: crosshair;
  101. }
  102.  
  103. #prototype-3 input[type=checkbox] {
  104. display: none;
  105. }
  106.  
  107. #prototype-3 .title{
  108. height: 108px;
  109. position: absolute;
  110. top: 265px;
  111. left: 187px;
  112. background: transparent;
  113. opacity: 0.9;
  114. letter-spacing: 0px;
  115. line-height: 50px;
  116. transform: rotate(32.5deg);
  117. transition: all 0.8s ease-in-out 2.5s;
  118. }
  119.  
  120. #prototype-3 input[type=checkbox]:checked ~ .title {
  121. opacity: 0;
  122. transition: all 0.8s ease-in-out 0s;
  123. }
  124.  
  125. #prototype-3 t1{
  126. font-family: 'Abril Fatface', cursive;
  127. font-size: 72px;
  128. color: #fff;
  129. letter-spacing: 0px;
  130. }
  131.  
  132. #prototype-3 .triangle{
  133. position: absolute;
  134. bottom: -1px;
  135. left: 0px;
  136. width: 550px;
  137. height: 350px;
  138. background: #EAFF3B;
  139. opacity: 0.7;
  140. -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 0 0);
  141. clip-path: polygon(0 0, 0 100%, 100% 100%, 0 0);
  142. transition: all 1s ease-in-out 1.2s;
  143. }
  144. #prototype-3 input[type=checkbox]:checked ~ .triangle {
  145. width: 370px;
  146. height: 501px;
  147. opacity: 0.75;
  148. -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  149. clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  150. transition: all 1s ease-in-out 2s;
  151. }
  152.  
  153. #prototype-3 .triangle2{
  154. position: absolute;
  155. top: -1px;
  156. right: -1px;
  157. width: 550px;
  158. height: 350px;
  159. background: #000;
  160. opacity: 0.8;
  161. -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
  162. clip-path: polygon(0 0, 100% 100%, 100% 0);
  163. transition: all 1s ease-in-out 1.2s;
  164. }
  165. #prototype-3 input[type=checkbox]:checked ~ .triangle2 {
  166. top: -235px;
  167. background: #fff;
  168. opacity: 0.5;
  169. transition: all 1s ease-in-out 0s;
  170. }
  171.  
  172. #prototype-3 t2{
  173. font-family: 'Abril Fatface', cursive;
  174. font-size: 35px;
  175. color: #EAFF3B;
  176. letter-spacing: 0px;
  177. padding-right: 40px;
  178. line-height: 10px;
  179. }
  180.  
  181. #prototype-3 o{
  182. font-family: 'Abril Fatface', cursive;
  183. font-size: 18px;
  184. color: #000;
  185. letter-spacing: 0px;
  186. opacity: 0;
  187. }
  188.  
  189. #prototype-3 t3{
  190. font-family: 'Abril Fatface', cursive;
  191. font-size: 30px;
  192. color: #000;
  193. letter-spacing: 0px;
  194. margin-right: 60px;
  195. text-transform: lowercase;
  196. line-height: 57px;
  197. border-bottom: 0.5px solid #eee;
  198. }
  199.  
  200. #prototype-3 t4{
  201. font-family: 'Muli', sans-serif;
  202. font-size: 12px;
  203. font-weight: 800;
  204. color: #000;
  205. letter-spacing: 0.5px;
  206. margin-right: 150px;
  207. text-transform: uppercase;
  208. line-height: 25px;
  209. transition: 0.5s;
  210. }
  211.  
  212. #prototype-3 t4:hover{
  213. letter-spacing: 2px;
  214. }
  215.  
  216. #prototype-3 a{
  217. text-decoration: none;
  218. color: #000;
  219. cursor: crosshair;
  220. }
  221.  
  222. #prototype-3 .line{
  223. position: absolute;
  224. top: 125px;
  225. left: -70px;
  226. width: 195px;
  227. height: 350px;
  228. background: transparent;
  229. opacity: 0.8;
  230. border-top: 0.5px solid #fff;
  231. transform: rotate(32.5deg);
  232. transition: all 0.8s ease-in-out 2.5s;
  233. }
  234. #prototype-3 input[type=checkbox]:checked ~ .line {
  235. opacity: 0;
  236. transition: all 0.8s ease-in-out 0s;
  237. }
  238.  
  239. </style>
  240.  
  241. <center>
  242. <div id="prototype-3">
  243.  
  244. <input type="checkbox" id="max-toggle">
  245.  
  246. <div class="background"></div>
  247.  
  248. <div class="base"></div>
  249.  
  250. <div class="triangle"></div>
  251.  
  252. <div class="triangle2"></div>
  253.  
  254. <div class="line"></div>
  255.  
  256. <div class="title">
  257. <t1>prototype</t1>
  258. </div>
  259.  
  260. <div class="container">
  261. <t3>threads</t3> <t2>01<o>.</o></t2><br>
  262.  
  263. <a href="http://shine.jcink.net/index.php?showtopic=38770&view=findpost&p=301158"><t4>ultraviolence
  264. <i class="fa fa-unlock" style="margin-left:5px;font-size:12px;color:#000;"></i></t4></a><br>
  265.  
  266. <a href="http://shine.jcink.net/index.php?showtopic=38748&st=0&#entry300980"><t4>the price of freedom
  267. <i class="fa fa-lock" style="margin-left:5px;margin-right:3px;font-size:12px;color:#000;"></i></t4></a><br>
  268.  
  269. <a href="http://shine.jcink.net/index.php?showtopic=38769&view=findpost&p=301157"><t4>young god
  270. <i class="fa fa-unlock" style="margin-left:5px;font-size:12px;color:#000;"></i></t4></a><br><br>
  271.  
  272.  
  273. <t3>signatures</t3> <t2>02</t2><br>
  274. <t4><i>coming soon</i>
  275. <i class="fa fa-key" style="margin-left:5px;margin-right:3px;font-size:12px;color:#000;"></i></t4><br><br>
  276.  
  277. <t3>foundations</t3> <t2>03</t2><br>
  278. <a href="http://shine.jcink.net/index.php?showtopic=38768&view=findpost&p=301156"><t4>John Tyree (shipper)
  279. <i class="fa fa-unlock" style="margin-left:5px;font-size:12px;color:#000;"></i></t4></a><br><br>
  280.  
  281.  
  282. <t3>mini profiles</t3> <t2>04</t2><br>
  283. <t4><i>coming soon</i>
  284. <i class="fa fa-key" style="margin-left:5px;margin-right:3px;font-size:12px;color:#000;"></i></t4><br><br>
  285.  
  286.  
  287. <t3>skins</t3> <t2>05</t2><br>
  288. <t4><i>coming soon</i>
  289. <i class="fa fa-key" style="margin-left:5px;margin-right:3px;font-size:12px;color:#000;"></i></t4><br><br>
  290.  
  291.  
  292. <t3>miscellaneous</t3> <t2>06</t2><br>
  293. <a href="http://shine.jcink.net/index.php?showtopic=38748&st=0&#entry301010"><t4>prototype
  294. <i class="fa fa-lock" style="margin-left:5px;margin-right:3px;font-size:12px;color:#000;"></i></t4></a><br><br>
  295. </div>
  296.  
  297.  
  298. <div class="click">
  299. <label for="max-toggle"><i class="fa fa-plus" style="font-size:20px;color:#eee;"></i></label>
  300. </div>
  301.  
  302. </div>
  303. </center>
  304. [/dohtml]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement