crimsonxthemes

WIP Page 01. - Journal

May 31st, 2018
581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.90 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <!--
  5. WIP Page 01. by CrimsonxThemes
  6. Journal
  7. ˈjərnl
  8. -->
  9.  
  10. <link href="https://fonts.googleapis.com/css?family=Open+Sans:400, 400i|Karla" rel="stylesheet">
  11.  
  12. <title>{Title}</title>
  13. <link rel="shortcut icon" href="{Favicon}">
  14. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  15. <meta name="description" content="" />
  16. <meta http-equiv="x-dns-prefetch-control" content="off"/>
  17.  
  18.  
  19. <style type="text/css">
  20.  
  21. ::-webkit-scrollbar {display:none;}
  22. ::-webkit-scrollbar-thumb {display:none;}
  23.  
  24. body {
  25. background: #f3f3f3; /**BACKGROUND COLOR**/
  26. color:#000; /**TEXT COLOR**/
  27. font-family:open sans;
  28. font-size:10px;
  29.  
  30. }
  31.  
  32. a {
  33. color: #555; /**LINK COLOR**/
  34. text-decoration:none;
  35. -moz-transition-duration: 0.5s;
  36. -o-transition-duration: 0.5s;
  37. -webkit-transition-duration: 0.5s;
  38. transition-duration: 0.5s;
  39. }
  40.  
  41. a:hover {
  42. color:#FFB6C1; /**LINK HOVER COLOR**/
  43. -moz-transition-duration: 0.5s;
  44. -o-transition-duration: 0.5s;
  45. -webkit-transition-duration: 0.5s;
  46. transition-duration: 0.5s;
  47. }
  48.  
  49.  
  50.  
  51. .box {
  52. background:#fff; /**TOP BOX BACKGROUND COLOR**/
  53. width:400px;
  54. top:50px;
  55. left:0;
  56. position:fixed;
  57. height:100px;
  58. text-align:center;
  59. margin-left:calc(50% - 200px);
  60. z-index:99999999;
  61. }
  62.  
  63. .title {
  64. color: #555; /**MAIN TITLE COLOR**/
  65. font-family: karla;
  66. font-size:17px;
  67. margin-top:15px;}
  68. .text {
  69. margin-top:10px;
  70. padding:0 10px;
  71. height:14px;
  72. overflow:hidden;}
  73. .links {margin-top:10px;}
  74. .links a {margin-right:5px; font-style:italic;}
  75.  
  76.  
  77. .contain {
  78. position:absolute;
  79. width:600px;
  80. top:200px;
  81. left:0;
  82. margin-left:calc(50% - 300px);
  83. margin-bottom:50px;}
  84.  
  85.  
  86. .cbox {
  87. border-right:1px solid #f3f3f3; /**FOR BEST RESULT, MATCH THIS TO MAIN BACKGROUND COLOR**/
  88. background:#fff; /**PROGRESS BOX BACKGROUND COLOR**/
  89. float:left;
  90. width:299px;
  91. height:75px;
  92. margin-top:1px;}
  93. .ctitle {
  94. color:#555; /**PROGRESS TITLE COLOR**/
  95. font-family:karla;
  96. text-align:center;
  97. font-size:13px;
  98. margin-top:10px;}
  99. .cdes {
  100. margin-top:5px;
  101. padding:0 10px;
  102. height:14px;
  103. overflow:hidden;
  104. text-align:center;}
  105.  
  106.  
  107. .desunderline, .underline {
  108. background:#f3f3f3; /**BACKGROUND LINE COLOR**/
  109. width:200px;
  110. height:1px;
  111. position:absolute;
  112. margin-left:49.5px;}
  113. .desunderline {margin-top:15px;}
  114. .underline {margin-top:25px;}
  115. .coloredline {
  116. margin-top:-1px;
  117. height:3px;
  118. border-radius:5px;}
  119.  
  120. .behind {
  121. height:160px;
  122. background-color:#f3f3f3; /**MATCH THIS TO MAIN BACKGROUND COLOR**/
  123. position:fixed;
  124. top:0;
  125. left:0;
  126. width:100%;
  127. z-index:5;}
  128.  
  129. </style>
  130. </head>
  131.  
  132. <body>
  133.  
  134.  
  135. <!--PLEASE NOTE:
  136. This page uses inline styling to input the color and length of the progress bars. So in the html, look for <div class="coloredline" and customize both the color of the bar (if you'd like to change it) and the width. Also, the lines for the progress bars are 200px in length, which means you will need to input DOUBLE the amount of width as your progress. ex: you're 50% done with your project, so you'd input width: 100px;
  137. Happy coding!!
  138. -->
  139.  
  140.  
  141. <!--For a new project box without a description
  142.  
  143. <div class="cbox">
  144. <div class="ctitle">Project 3</div>
  145. <div class="underline">
  146. <div class="coloredline" style="background:#FFB6C1;width:25px;"></div>
  147. </div>
  148. </div>
  149.  
  150. -->
  151.  
  152.  
  153.  
  154. <!--For a new project box with a description
  155.  
  156. <div class="cbox">
  157. <div class="ctitle">Project 4</div>
  158. <div class="cdes">project 4 description.</div>
  159. <div class="desunderline">
  160. <div class="coloredline" style="background:#FFB6C1;width:50px;"></div>
  161. </div>
  162. </div>
  163.  
  164. -->
  165.  
  166. <!----------------------------------------------------------------------->
  167. <div class="box">
  168. <!--TITLE-->
  169. <div class="title">Works in Progress</div>
  170. <!--DESCRIPTION-->
  171. <div class="text">A short description can go here if you'd like</div>
  172. <!--LINKS-->
  173. <div class="links">
  174. <a href="/">home</a> <a href="/ask">message</a> <a href="/archive">past</a> <a href="/">extra</a>
  175. </div>
  176. </div>
  177. <div class="behind"></div>
  178. <!----------------------------------------------------------------------->
  179.  
  180. <div class="contain">
  181.  
  182. <!----------------------------------------------------------------------->
  183.  
  184. <!--BOX WITH DESCRIPTION-->
  185. <div class="cbox">
  186. <div class="ctitle">Project 1</div>
  187. <div class="cdes">project 1 description. optional. max 1 line.</div>
  188. <!--If you're putting a description for your project, be sure the following div says "desunderline" and not just "underline"!!!-->
  189. <div class="desunderline">
  190. <div class="coloredline" style="background:#FFB6C1;width:100px;"></div>
  191. </div>
  192. </div>
  193. <!---->
  194.  
  195. <!----------------------------------------------------------------------->
  196.  
  197. <!--BOX WITHOUT DESCRIPTION-->
  198. <div class="cbox">
  199. <div class="ctitle">Project 2</div>
  200. <!--Likewise, if you're NOT putting a description for your project be sure the following div says "underline" and not "desunderline"!!!-->
  201. <div class="underline">
  202. <div class="coloredline" style="background:#FFB6C1;width:125px;"></div>
  203. </div>
  204. </div>
  205. <!---->
  206.  
  207. <!----------------------------------------------------------------------->
  208.  
  209. <!--Don't touch this div!-->
  210. </div>
  211.  
  212.  
  213. <a href="http://crimsonxthemes.tumblr.com" style="color:#999;position:fixed;bottom:3px;right:7px;font-size:15px;">◎</a>
  214. </body>
  215. </html>
Advertisement
Add Comment
Please, Sign In to add comment