Roleplay Verse Tracker - Tumblr Page Code


SUBMITTED BY: VSmolGay

DATE: May 31, 2017, 4:26 p.m.

UPDATED: Aug. 4, 2018, 7:10 p.m.

FORMAT: Text only

SIZE: 8.9 kB

HITS: 466

  1. <!Please do not claim as your own.
  2. Feel Free to Edit as you please.>
  3. <head>
  4. <title>Verse Page</title>
  5. <style>
  6. /*--Body--*/
  7. body{
  8. background-color: #eee;
  9. background-image: url('http://imageshack.com/a/img15/2814/hkf0.png');
  10. }
  11. /*--Big Title--*/
  12. #logo h1{
  13. font-family:'Bebas Neue', "Times New Roman", Times, serif;
  14. font-size:50px;
  15. text-align:center;
  16. color: #529ecc;
  17. margin:0;
  18. padding:30px 0 0 0;
  19. }
  20. /*--Subtitle--*/
  21. #logo h2{
  22. font-family: 'Bebas Neue', Georgia, "Times New Roman", Times, serif;
  23. font-size:20px;
  24. font-weight:normal;
  25. text-align:center;
  26. color: #8e8e8e;
  27. margin:0px 0 0 0;
  28. padding:0;
  29. }
  30. /*--Menu--*/
  31. .circlemenu{
  32. width: 100%;
  33. overflow:hidden;
  34. background-color:#97c5e0;
  35. border-top: 1px solid #fff;
  36. border-bottom: 1px solid #fff;
  37. }
  38. .circlemenu ul{
  39. margin: 0;
  40. padding: 0;
  41. font: bold 12px 'PT Sans Narrow';
  42. list-style-type: none;
  43. text-align: center; /* "left", "center", or "right" align menu */
  44. }
  45. .circlemenu li{
  46. display: inline;
  47. margin: 0;
  48. }
  49. .circlemenu li a{
  50. display:inline-block;
  51. text-align:center;
  52. text-decoration: none;
  53. color: white;
  54. background:#97c5e0;
  55. margin: 0;
  56. margin-right:0px; /*right spacing between each link */
  57. width:100px;
  58. height:40px;
  59. }
  60. .circlemenu a span{
  61. position:relative;
  62. top:30%;
  63. }
  64. .circlemenu li a:visited{
  65. color: white;
  66. }
  67. .circlemenu a:hover{
  68. background: #bad8eb;
  69. }
  70. /*--Accordion--*/
  71. .ac-container{
  72. width: 400px;
  73. margin: 10px auto 30px auto;
  74. background: rgba(255, 255, 255, 0.5);
  75. }
  76. .ac-container label{
  77. font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
  78. padding: 5px 20px;
  79. position: relative;
  80. z-index: 20;
  81. display: block;
  82. height: 30px;
  83. cursor: pointer;
  84. color: #777;
  85. text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
  86. line-height: 33px;
  87. font-size: 19px;
  88. background: linear-gradient(top, #ffffff 1%,#eaeaea 100%);
  89. box-shadow:
  90. 0px 0px 0px 1px rgba(155,155,155,0.3),
  91. 1px 0px 0px 0px rgba(255,255,255,0.9) inset,
  92. 0px 2px 2px rgba(0,0,0,0.1);
  93. }
  94. .ac-container label:hover{
  95. background: #fff;
  96. }
  97. .ac-container input:checked + label,
  98. .ac-container input:checked + label:hover{
  99. background: #c6e1ec;
  100. color: #3d7489;
  101. text-shadow: 0px 1px 1px rgba(255,255,255, 0.6);
  102. box-shadow:
  103. 0px 0px 0px 1px rgba(155,155,155,0.3),
  104. 0px 2px 2px rgba(0,0,0,0.1);
  105. }
  106. .ac-container label:hover:after,
  107. .ac-container input:checked + label:hover:after{
  108. content: '';
  109. position: absolute;
  110. width: 24px;
  111. height: 24px;
  112. right: 13px;
  113. top: 7px;
  114. background: transparent url(../images/arrow_down.png) no-repeat center center;
  115. }
  116. .ac-container input:checked + label:hover:after{
  117. background-image: url(../images/arrow_up.png);
  118. }
  119. .ac-container input{
  120. display: none;
  121. }
  122. .ac-container article{
  123. background: rgba(255, 255, 255, 0.5);
  124. margin-top: -1px;
  125. overflow: hidden;
  126. height: 0px;
  127. position: relative;
  128. z-index: 10;
  129. transition:
  130. height 0.3s ease-in-out,
  131. box-shadow 0.6s linear;
  132. }
  133. .ac-container input:checked ~ article{
  134. transition:
  135. height 0.5s ease-in-out,
  136. box-shadow 0.1s linear;
  137. box-shadow: 0px 0px 0px 1px rgba(155,155,155,0.3);
  138. }
  139. .ac-container article p{
  140. font-style: italic;
  141. color: #777;
  142. line-height: 20px;
  143. font-size: 14px;
  144. padding-left: 20px;
  145. padding-right: 20px;
  146. padding-top:0px;
  147. text-shadow: 1px 1px 1px rgba(255,255,255,0.8);
  148. }
  149. .ac-container input:checked ~ article.ac-small{
  150. height: 250px;
  151. overflow: auto;
  152. }
  153. .ac-container input:checked ~ article.ac-medium{
  154. height: 300px;
  155. overflow: auto;
  156. }
  157. .ac-container input:checked ~ article.ac-large{
  158. height: 350px;
  159. overflow: auto;
  160. }
  161. /*---Text Styles---*/
  162. h1{
  163. color:#000;
  164. font-family:Times New Roman;
  165. font-size:12px;
  166. font-weight:lighter;
  167. letter-spacing:3px;
  168. font-style:italic;
  169. border-bottom: 1px solid #ccc;
  170. }
  171. h2{
  172. color:#000;
  173. font-family:Times New Roman;
  174. font-size:26px;
  175. font-weight:lighter;
  176. letter-spacing:3px;
  177. font-style:italic;
  178. }
  179. a:link, a:active, a:visited {
  180. color: #529ecc;
  181. text-decoration:none;
  182. }
  183. a:hover {
  184. color: #97c5e0;
  185. text-decoration: none;
  186. }
  187. </style>
  188. <body>
  189. <!--Titles-->
  190. <div id="logo"><h1>;; Verses ;;<br>
  191. </div>
  192. <!--Menu-->
  193. <div class="circlemenu">
  194. <ul>
  195. <li><a href="/"><span>Home</span></a></li>
  196. <li><a href="/ask"><span>Ask</span></a></li>
  197. <li><a href="/"><span>Link 1</span></a></li>
  198. <li><a href="/"><span>Link 2</span></a></li>
  199. <li><a href="/"><span>Link 3</span></a></li>
  200. <li><a href="/"><span>Link 4</span></a></li>
  201. <li><a href="http://honhdesigns.tumblr.com"><span>Credit</span></a></li>
  202. </ul>
  203. </div>
  204. <!--Name your Verse - Start here for each verse-->
  205. <p>
  206. <div id="logo"><h2>Verse Title</h2></div>
  207. <!--Star of Accordion-->
  208. <section class="ac-container">
  209. <!--Start of Character-->
  210. <!--Make sure that when added new verses, change the input id from ac-1 to ac-#ofverse. I.e, change from ac-1 to ac-2-->
  211. <div>
  212. <input id="ac-1" name="accordion-1" type="checkbox" />
  213. <label for="ac-1">Character</label>
  214. <article class="ac-small">
  215. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque maximus nisl ac tincidunt dapibus. Nunc nec libero erat. Duis commodo egestas lacus, eu pulvinar tellus gravida et. Nam ut mauris mi. Donec finibus velit egestas nisi porta, ut elementum velit efficitur. Nullam ultricies egestas odio. Curabitur blandit tempus porttitor. Nam sed dui vel metus vulputate suscipit. Duis tellus erat, fringilla ac ex a, facilisis consequat diam. Integer sed tellus non justo consequat accumsan ac sit amet sapien. Phasellus massa eros, convallis vel leo sed, interdum commodo tellus.</p>
  216. </article>
  217. </div>
  218. <!--End of Character-->
  219. <!--Start of Character-->
  220. <!--Make sure that when added new verses, change the input id from ac-1 to ac-#ofverse. I.e, change from ac-1 to ac-2-->
  221. <div>
  222. <input id="ac-2" name="accordion-1" type="checkbox" />
  223. <label for="ac-2">Character</label>
  224. <article class="ac-small">
  225. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque maximus nisl ac tincidunt dapibus. Nunc nec libero erat. Duis commodo egestas lacus, eu pulvinar tellus gravida et. Nam ut mauris mi. Donec finibus velit egestas nisi porta, ut elementum velit efficitur. Nullam ultricies egestas odio. Curabitur blandit tempus porttitor. Nam sed dui vel metus vulputate suscipit. Duis tellus erat, fringilla ac ex a, facilisis consequat diam. Integer sed tellus non justo consequat accumsan ac sit amet sapien. Phasellus massa eros, convallis vel leo sed, interdum commodo tellus.</p>
  226. </article>
  227. </div>
  228. <!--End of Character-->
  229. </div>
  230. </section>
  231. <!--End of Verse-->
  232. <!--Name your Verse - Start here for each verse-->
  233. <p>
  234. <div id="logo"><h2>Verse Title</h2></div>
  235. <!--Star of Accordion-->
  236. <section class="ac-container">
  237. <!--Start of Character-->
  238. <!--Make sure that when added new verses, change the input id from ac-1 to ac-#ofverse. I.e, change from ac-1 to ac-2-->
  239. <div>
  240. <input id="ac-3" name="accordion-1" type="checkbox" />
  241. <label for="ac-3">Character</label>
  242. <article class="ac-small">
  243. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque maximus nisl ac tincidunt dapibus. Nunc nec libero erat. Duis commodo egestas lacus, eu pulvinar tellus gravida et. Nam ut mauris mi. Donec finibus velit egestas nisi porta, ut elementum velit efficitur. Nullam ultricies egestas odio. Curabitur blandit tempus porttitor. Nam sed dui vel metus vulputate suscipit. Duis tellus erat, fringilla ac ex a, facilisis consequat diam. Integer sed tellus non justo consequat accumsan ac sit amet sapien. Phasellus massa eros, convallis vel leo sed, interdum commodo tellus.</p>
  244. </article>
  245. </div>
  246. <!--End of Character-->
  247. <!--Start of Character-->
  248. <!--Make sure that when added new verses, change the input id from ac-1 to ac-#ofverse. I.e, change from ac-1 to ac-2-->
  249. <div>
  250. <input id="ac-4" name="accordion-1" type="checkbox" />
  251. <label for="ac-4">Character</label>
  252. <article class="ac-small">
  253. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque maximus nisl ac tincidunt dapibus. Nunc nec libero erat. Duis commodo egestas lacus, eu pulvinar tellus gravida et. Nam ut mauris mi. Donec finibus velit egestas nisi porta, ut elementum velit efficitur. Nullam ultricies egestas odio. Curabitur blandit tempus porttitor. Nam sed dui vel metus vulputate suscipit. Duis tellus erat, fringilla ac ex a, facilisis consequat diam. Integer sed tellus non justo consequat accumsan ac sit amet sapien. Phasellus massa eros, convallis vel leo sed, interdum commodo tellus.</p>
  254. </article>
  255. </div>
  256. <!--End of Character-->
  257. </div>
  258. </section>
  259. <!--End of Verse-->
  260. </body>

comments powered by Disqus