Advertisement
Pattter

Organization

Oct 23rd, 2020 (edited)
602
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!--
  6.  
  7. Theme by Mewpantoh
  8. Feel free to edit for your own use
  9. But obviously don't republish or use as a base.
  10.  
  11. -->
  12.  
  13. <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Cantarell" />
  14. <link rel="shortcut icon" href="{Favicon}" />
  15. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  16. <title>{Title}</title>
  17. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  18.  
  19. <meta name="color:background" content="#e0ffff">
  20. <meta name="color:sidebar" content="#ffffff">
  21. <meta name="color:sidebar accent" content="#dfffff">
  22. <meta name="color:posts" content="#ffffff">
  23. <meta name="color:posts accent" content="#dfffff">
  24. <meta name="color:borders" content="#80c3c3" />
  25. <meta name="color:text" content="#2d7272" />
  26. <meta name="color:link" content="#d0698e" />
  27. <meta name="color:line break" content="#80c3c3" />
  28. <meta name="color:scroll bar" content="#ffffff" />
  29.  
  30.  
  31. <meta name="image:background" content=""/>
  32. <meta name="image:sidebar" content=""/>
  33.  
  34. <meta name="text:link1" content="url" />
  35. <meta name="text:name1" content="link" />
  36. <meta name="text:link2" content="url" />
  37. <meta name="text:name2" content="link" />
  38. <meta name="text:Icon Size" content="200" />
  39. <meta name="if:Icon round" content="0"/>
  40. <meta name="if:Static bg" content="1"/>
  41. <meta name="if:Sidebar bg" content="1"/>
  42. <meta name="if:Full screen BG" content="0" />
  43.  
  44.  
  45.  
  46. </head>
  47.  
  48.  
  49. <style type="text/css">
  50. ::-webkit-scrollbar {
  51. width: 4px;
  52. height: 0px;
  53. }
  54. ::-webkit-scrollbar-button {
  55. width: 0px;
  56. height: 0px;
  57.  
  58. }
  59. ::-webkit-scrollbar-thumb {
  60. background:{color:scroll bar};
  61. border-radius: 100px;
  62. }
  63. ::-webkit-scrollbar-thumb:hover {
  64. background: {color:link};
  65. }
  66. ::-webkit-scrollbar-thumb:active {
  67. background: {color:link};
  68. }
  69. ::-webkit-scrollbar-track {
  70. background: {color:background};
  71. border-radius: 50px;
  72. }
  73. ::-webkit-scrollbar-corner {
  74. background: transparent;
  75. }
  76. </style>
  77. <style type="text/css">
  78.  
  79. body {
  80. color:{color:text};
  81. background-color:{color:background};
  82. font-family: 'Lucida Console';
  83. font-size:14px;
  84. line-height:20px;
  85. word-break:break-word;
  86. {block:ifStaticbg}
  87. background-attachment:fixed;
  88. {/block:ifStaticbg}
  89. background-image:url('{image:Background}');
  90. {block:iffullscreenBG}
  91. background-size:100%;
  92. background-size: cover;
  93. {/block:iffullscreenBG}
  94. }
  95.  
  96. a:link {
  97. color:{color:link};
  98. text-decoration: none;
  99. -moz-transition-duration: 0.5s;
  100. -o-transition-duration: 0.5s;
  101. -webkit-transition-duration: 0.5s;
  102. transition-duration: 0.5s;
  103. }
  104. a:visited{
  105. color:{color:link};
  106. text-decoration: none;
  107. -moz-transition-duration: 0.5s;
  108. -o-transition-duration: 0.5s;
  109. -webkit-transition-duration: 0.5s;
  110. transition-duration: 0.5s;
  111. }
  112. }
  113.  
  114. a:hover {
  115. color:{color:link hover};
  116. -moz-transition-duration: 0.5s;
  117. -o-transition-duration: 0.5s;
  118. -webkit-transition-duration: 0.5s;
  119. transition-duration: 0.5s;
  120. }
  121.  
  122. hr{
  123. height:2px;
  124. border-color:{color:line break};
  125. }
  126. small{font-size:auto}
  127.  
  128. big{font-size:auto}
  129.  
  130. b, strong{color:{color:text}}
  131.  
  132. h1 {font-size:18px;color:{color:text};}
  133. h2 {font-size:14px;color:{color:text};}
  134.  
  135. i, em {color:{color:text}}
  136.  
  137. p{margin-top:6px; margin-bottom:6px}
  138.  
  139. blockquote {padding:0px; padding-left:10px; margin:8px; border-left:2px solid {color:text}}
  140.  
  141. img a{border:none; width:100%;}
  142.  
  143. #entries {
  144. margin-left:30vw;
  145. margin-right:auto;
  146. margin-bottom:50px;
  147. }
  148.  
  149. .grid-container {
  150. margin-top:50px;
  151. display: grid;
  152. grid-template-columns: 440px 200px;
  153. grid-template-rows: auto auto;
  154. gap: 0px 0px;
  155. grid-template-areas: "Post Notes" "Post Empty";
  156. }
  157. .post { grid-area: Post;
  158. height:100%;
  159. z-index:1;
  160. border-radius:5px;
  161. width:auto;
  162. border:4px ridge {color:borders};
  163. padding:10px;
  164. background-color:{color:posts};
  165. box-shadow:3px 3px 0px rgba(0,0,0,0.5);
  166. }
  167. .post img {
  168. max-width:100%;
  169. }
  170. .notese { grid-area: Notes;
  171. z-index:0;
  172. margin-top:20px;
  173. border-radius:0px 5px 5px 0px;
  174. height:auto;
  175. border:4px ridge {color:borders};
  176. border-left:0px hidden;
  177. padding: 10px;
  178. background-color:{color:posts accent};
  179. box-shadow:3px 3px 0px rgba(0,0,0,0.5);
  180. }
  181. .empty{
  182. grid-area: Empty;
  183. height:100%;
  184. }
  185. #ss {
  186. position:fixed;
  187. margin-top:-55px;
  188. left:0px;
  189. width:240px;
  190. height:100%;
  191. }
  192. #sscase{
  193. font-size:16px;
  194. padding:0px;
  195. width: auto;
  196. height:100%;
  197. {block:ifSidebarbg}
  198. border:4px ridge {color:borders};
  199. border-left:0px;
  200. background-color:{color:sidebar};
  201. box-shadow:3px 3px 0px rgba(0,0,0,0.5);
  202. {/block:ifSidebarbg}
  203. }
  204. #sidebar{
  205. position:inline;
  206. width:210px;
  207. padding:7px;
  208. margin-top:150px;
  209. }
  210. .link{
  211. background:{color:sidebar accent};
  212. border-radius:5px;
  213. border:4px ridge {color:borders};
  214. padding:10px;
  215. width:150px;
  216. margin:5px;
  217. }
  218.  
  219. .audio{background-color:black; display:block}
  220.  
  221.  
  222. .user_1 .label {color:{color:text}; font-weight:bold}
  223. .user_2 .label {color:{color:text}; font-weight:italic}
  224. .user_3 .label {color:{color:text}; font-weight:text}
  225.  
  226.  
  227. ul.chat, .chat ol, .chat li {list-style:none; margin:0px; padding:0px}
  228.  
  229. .notes img{width:0px; position:relative; top:1px}
  230. ol.notes, .notes li{width:100%; list-style:none; padding:0px}
  231.  
  232.  
  233. #pagination{
  234. font-size:20px;
  235. }
  236.  
  237. </style>
  238.  
  239.  
  240. <body>
  241.  
  242.  
  243. <div id="ss">
  244. <div id="sscase">
  245. <div id="sidebar">
  246. <center>
  247. <a href="/"><img src="{image:sidebar}" style="width:{text:icon size}px;position:inline; max-width:200px;
  248. padding:5px;{block:ifIconround}border-radius:200px;{/block:ifIconround}"></a>
  249. </center>
  250. <center>
  251. {description}<p>
  252. <br>
  253.  
  254. <div class="link">
  255. <a href="/">home</a>
  256. <hr>
  257. <a href="/ask">ask</a>
  258. <hr>
  259. <a href="/{text:link1}">{text:name1}</a>
  260. <hr>
  261. <a href="/{text:link2}">{text:name2}</a>
  262. </div>
  263. <br>
  264.  
  265. <br>
  266. <div id="pagination">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">🢀</a>{/block:PreviousPage} {block:NextPage}<a href="{NextPage}">🢂</a><br />{/block:NextPage}{/block:Pagination}</div>
  267. </div></div></div>
  268. </center>
  269. <div id="entries">
  270. {block:posts}
  271. <div class="grid-container">
  272. <div class="post">
  273. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
  274.  
  275.  
  276. {block:Quote}<h2>“{Quote}” — {Source}</h2><br>{/block:Quote}
  277.  
  278. {block:Link}<a href="{URL}"><h1>{Name}</h1></a>
  279. {block:Description}<p>{Description}</p>{/block:Description}{/block:Link}
  280.  
  281. {block:Photo}<center><img src="{PhotoURL-400}"/></center>
  282. {block:Caption}{Caption}{/block:Caption}{/block:Photo}
  283.  
  284. {block:Photoset}<center>{Photoset-400}</center>
  285. {block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  286.  
  287. {block:Chat}<ul class="chat">{block:Lines}<li class="user_{UserNumber}">{block:Label}<span class="label">{Label}</span>{/block:Label}&nbsp;{Line}</li>{/block:Lines}</ul>{/block:Chat}
  288.  
  289. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  290.  
  291. {block:Answer}<b>{Asker} asked:</b> {Question}<br><br><b>Answer:</b>{Answer}{/block:Answer}
  292.  
  293.  
  294. {block:Audio}{AudioPlayerWhite}<br>
  295. {block:Caption}{Caption}{/block:Caption} {/block:Audio}
  296. {block:PermalinkPage}{block:PostNotes}Notes:<hr>{PostNotes}{/block:PostNotes}{/block:PermalinkPage}
  297. <center>
  298. </div>
  299.  
  300. {block:IndexPage}
  301. <div class="notese">
  302. {block:NoteCount} {NoteCount} notes<hr>{/block:NoteCount}
  303. {block:Date} <a href="{Permalink}">{TimeAgo}{/block:Date}</a><hr>
  304. <a href="{ReblogParentURL}"><a href="{ReblogURL}" target="_blank" > Reblog?</a><hr><a href="{ReblogParentURL}">
  305. {block:RebloggedFrom}<a href="{ReblogParentURL}">From {ReblogParentName} </a><br> <a href="{ReblogRootURL}">Made by {ReblogRootName} </a><hr>{/block:RebloggedFrom}
  306. {block:HasTags}# {block:Tags} <a href="{TagURL}">{tag}</a>, {/block:Tags} {/block:HasTags}</div>{/block:IndexPage}
  307.  
  308. {block:Date}
  309. {block:PermalinkPage}
  310. <div class="notese">
  311. {block:NoteCount} {NoteCount} notes<hr>{/block:NoteCount}
  312. {block:Date} <a href="{Permalink}">{TimeAgo}{/block:Date}</a><hr>
  313. <a href="{ReblogParentURL}"><a href="{ReblogURL}" target="_blank" > Reblog?</a><hr><a href="{ReblogParentURL}">
  314. {block:RebloggedFrom}<a href="{ReblogParentURL}">From {ReblogParentName} </a><br> <a href="{ReblogRootURL}">Made by {ReblogRootName} </a><hr>{/block:RebloggedFrom}
  315. {block:HasTags}# {block:Tags} <a href="{TagURL}">{tag}</a>, {/block:Tags} {/block:HasTags}</div>{/block:PermalinkPage}{/block:Date}</div>
  316. {/block:Posts}
  317.  
  318. </div>
  319. </div>
  320.  
  321.  
  322. </body>
  323. </html>
  324.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement