Advertisement
wyvernlynch

eunoia

Mar 25th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.81 KB | None | 0 0
  1. <!--
  2. ____________________________________________________________________________
  3.  
  4. eunoia
  5. a wip masterpage
  6. by wyvernlynch
  7. https://writingsbywyvern.tumblr.com
  8. please don't remove the credit
  9. thank you
  10.  
  11. ____________________________________________________________________________
  12. -->
  13.  
  14. <!DOCTYPE html>
  15. <html>
  16. <head>
  17.  
  18. <!-- fonts -->
  19. <link href="https://fonts.googleapis.com/css?family=Work+Sans:300,400,600,700" rel="stylesheet">
  20.  
  21. <!-- tab title -->
  22. <title>eunoia</title>
  23.  
  24. <style>
  25.  
  26. /* S C R O L L B A R */
  27. ::-webkit-scrollbar {
  28. width: 3px;
  29. height: 6px;
  30. }
  31.  
  32. ::-webkit-scrollbar-thumb {
  33. border:1px solid white;
  34. background-color: #ddd; /* scrollbar color */
  35. }
  36.  
  37. /* B O D Y */
  38. body {
  39. font:10px/1.7 'work sans', sans-serif; /* main font */
  40. color: #9c9c9c; /*font color*/
  41. background-color: #fff; /* background color */
  42. line-height:14px;
  43. cursor:url('https://66.media.tumblr.com/51aa4b0cb73356472f4336df13b2fc6b/tumblr_inline_p7nrx1388N1r1shc4_540.png'), progress !important; /* tiny cursor - delete this part if you don't want a tiny cursor */
  44. }
  45.  
  46. b {
  47. font-weight: 400;
  48. color:#000; /* bold font color */
  49. padding:1px;
  50. background-color: #d79983; /* hightlight color */
  51. }
  52. strong {
  53. font-weight:600;
  54. color:#000; /* font color */
  55. background-color:none;
  56. }
  57.  
  58. i {
  59. font-style: italic;
  60. }
  61.  
  62. a {
  63. text-decoration: none;
  64. transition:.8s;
  65. cursor:url('https://66.media.tumblr.com/6fb38fc5e97353c67e3fc3a2e2b29bf9/tumblr_inline_p7nrx1hoRW1r1shc4_540.png'), progress !important; /* tiny cursor - delete this part if you don't want a tiny cursor */
  66. }
  67.  
  68. h1 {
  69. font-size:20px; /* title font size */
  70. letter-spacing:2px;
  71. font-weight:300;
  72. /* to change the font color, copy:
  73. color:(color);
  74. */
  75. }
  76. h2 {
  77. font-size:15px; /* box title font size */
  78. letter-spacing:1px;
  79. text-transform:uppercase;
  80. font-weight:300;
  81. z-index:1;
  82. }
  83.  
  84. /* H E A D E R */
  85. #header {
  86. width:100%;
  87. text-align:center;
  88. margin-top:-20px;
  89. height:170px;
  90. }
  91. .head {
  92. padding-top:70px;
  93. text-transform:uppercase;
  94. font-weight:300;
  95. }
  96. .head a {
  97. color:#000; /* navigation links color */
  98. margin:3px 5px;
  99. }
  100.  
  101. .head a:hover {
  102. color:#d79983; /* navigation links color hover */
  103. }
  104.  
  105.  
  106. /* B O X C O L U M N */
  107. #cont {
  108. display: grid;
  109. grid-gap:50px; /* space between column */
  110. grid-template-columns:auto auto auto; /*number of column*/
  111. margin:100px auto;
  112. width:70%;
  113. }
  114.  
  115. /* B O X */
  116. .box {
  117. background-color: #fff; /* box background color */
  118. height:310px; /* box height */
  119. width:270px; /* box width */
  120. text-align:center;
  121. border:1px #eee solid; /* box border, to change color delete '#eee' and change it to the color you want */
  122. }
  123.  
  124. /* B O X I M A G E */
  125. .boximg {
  126. width:250px; /* box image width */
  127. height:250px; /* box image height */
  128. padding:10px 10px 0 10px;
  129. position:relative;
  130. z-index:1;
  131. transition:.8s;
  132. }
  133.  
  134. /* B O X D E S C R I P T I O N */
  135. .cover {
  136. background-color: rgba(255,255,255,0.8); /* box description background */
  137. height:0;
  138. width:270px; /* box description width, make sure this is the same as the box width */
  139. z-index:100;
  140. transition:.8s;
  141. position:relative;
  142. overflow-y:auto;
  143. }
  144. .cover-text {
  145. color:#7e7e7e; /* box description text */
  146. max-width:250px; /* box description max width */
  147. text-align:justify; /* text alignment */
  148. opacity:0;
  149. padding:5px;
  150. transition:.8s;
  151. }
  152. .cover-text a {box-shadow:inset 0 -5px 0 #e5c0b3;color:#000;} /* box desc kink - to change color delete '#e5c0b3' and change it with the color you want */
  153. .cover-text a:hover {background-color:#e5c0b3 /* make sure this is the same as cover-text a color */;color:#000;}
  154.  
  155. .box:hover .boximg {opacity:.6;}
  156. .box:hover .cover-text {opacity:1;transition-delay:.5s;}
  157. .box:hover h2 {opacity:0;transition:.8s;}
  158. .box:hover .cover {margin-top:-303px;height:303px;} /* adjust this to how ever you want. this is how high the description will slide. to adjust, copy:
  159. margin-top:-(number)px;height:(number)px
  160. make sure the (number) are the same
  161. */
  162.  
  163. /* C R E D I T */
  164. /* please don't remove this */
  165. .credit {
  166. bottom:10px;
  167. right:10px;
  168. float:right;
  169. position:fixed;
  170. text-align:right;
  171. transition:.8s;
  172. }
  173. .credit a {font-size:7px; color:#000;}
  174. .credit a:hover {color:#888;}
  175.  
  176.  
  177. </style>
  178.  
  179. <body>
  180.  
  181. <!-- header -->
  182. <div id="header">
  183. <div class="head">
  184. <h1>works in progress masterpage</h1> <!-- title -->
  185. <!-- navigation -->
  186. <a href="link one">link one</a> •
  187. <a href="link two">link two</a> •
  188. <a href="link three">link three</a>
  189. </div>
  190. </div>
  191. <div id="cont">
  192.  
  193.  
  194. <!-- TO AD MORE BOXES, COPY THIS:
  195.  
  196. <div class="box">
  197. <img src="image url" class="boximg">
  198.  
  199. <h2>Title</h2>
  200.  
  201. <div class="cover">
  202. <div class="cover-text">
  203. <b>genre:</b> fantasy <br>
  204. <b>status:</b> on progress <br>
  205. <p><b>bold</b> <i>italic</i> <strong>strong</strong> <a href="link">link</a>
  206. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  207.  
  208. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  209. <a href="link url">read more</a>
  210. </div></div></div>
  211.  
  212. END -->
  213.  
  214. <!-- box one -->
  215. <div class="box">
  216. <!-- box one image -->
  217. <img src="image url" class="boximg">
  218.  
  219. <h2>Title</h2> <!-- box one title -->
  220.  
  221. <div class="cover">
  222. <div class="cover-text">
  223. <!-- description -->
  224. <b>genre:</b> fantasy <br>
  225. <b>status:</b> on progress <br>
  226. <p><b>bold</b> <i>italic</i> <strong>strong</strong> <a href="link">link</a>
  227. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  228.  
  229. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  230. <!-- links -->
  231. <a href="link url">read more</a>
  232. </div></div></div>
  233. <!-- end box one -->
  234.  
  235.  
  236. <!-- boxtwoe -->
  237. <div class="box">
  238. <!-- box two image -->
  239. <img src="image url" class="boximg">
  240.  
  241. <h2>Title</h2> <!-- box two title -->
  242.  
  243. <div class="cover">
  244. <div class="cover-text">
  245. <!-- description -->
  246. <b>genre:</b> fantasy <br>
  247. <b>status:</b> on progress <br>
  248. <p><b>bold</b> <i>italic</i> <strong>strong</strong> <a href="link">link</a>
  249. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  250.  
  251. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  252. <!-- links -->
  253. <a href="link url">read more</a>
  254. </div></div></div>
  255. <!-- end box two -->
  256.  
  257. <!-- box three -->
  258. <div class="box">
  259. <!-- box three image -->
  260. <img src="image url" class="boximg">
  261.  
  262. <h2>Title</h2> <!-- box three title -->
  263.  
  264. <div class="cover">
  265. <div class="cover-text">
  266. <!-- description -->
  267. <b>genre:</b> fantasy <br>
  268. <b>status:</b> on progress <br>
  269. <p><b>bold</b> <i>italic</i> <strong>strong</strong> <a href="link">link</a>
  270. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  271.  
  272. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  273. <!-- links -->
  274. <a href="link url">read more</a>
  275. </div></div></div>
  276. <!-- end box three -->
  277.  
  278.  
  279. <!-- box four -->
  280. <div class="box">
  281. <!-- box four image -->
  282. <img src="image url" class="boximg">
  283.  
  284. <h2>Title</h2> <!-- box four title -->
  285.  
  286. <div class="cover">
  287. <div class="cover-text">
  288. <!-- description -->
  289. <b>genre:</b> fantasy <br>
  290. <b>status:</b> on progress <br>
  291. <p><b>bold</b> <i>italic</i> <strong>strong</strong> <a href="link">link</a>
  292. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  293.  
  294. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  295. <!-- links -->
  296. <a href="link url">read more</a>
  297. </div></div></div>
  298. <!-- end box four -->
  299.  
  300.  
  301. </div>
  302.  
  303.  
  304. <!-- credit. please do not remove -->
  305.  
  306. <div class="credit"><a href="https://themesbywyvern.tumblr.com">@wyvernlynch</a></div>
  307. </body>
  308.  
  309. </head>
  310. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement