parispier

Page03: Network Theme

May 7th, 2013
1,973
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.58 KB | None | 0 0
  1. <!---- theme made by nialljhoren ---->
  2. <!---- do not use as base code, remove credit, or claim as your own --->
  3.  
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  6. <head><title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9.  
  10. <style type="text/css">
  11.  
  12. ::-webkit-scrollbar-thumb:vertical {background-color:#7a7979; height:100px;}
  13.  
  14. ::-webkit-scrollbar-thumb:horizontal {background-color:#7a7979}; height:10px !important;}
  15.  
  16. ::-webkit-scrollbar {height:9px; width:5px; background-color: #fff;}
  17.  
  18. img.desaturate { filter: grayscale(85%);
  19. -webkit-filter: grayscale(85%);
  20. -moz-filter: grayscale(85%);
  21. -ms-filter: grayscale(85%);
  22. -o-filter: grayscale(85%);
  23. }
  24.  
  25. body {
  26. background-color:#ffffff;
  27. font-size:12px;
  28. font-family:cambria;
  29. }
  30.  
  31. a {
  32. text-decoration:none;
  33. outline:none;
  34. -moz-outline-style:none;
  35. color:#6b6868; /*--link color--*/
  36. -webkit-transition: all 0.7s ease;
  37. -moz-transition: all 0.7s ease;
  38. -o-transition: all 0.7s ease;
  39. }
  40.  
  41. a:hover {
  42. color:#C4B3BA; /*--link hover color--*/
  43. -webkit-transition: all 0.7s ease;
  44. -moz-transition: all 0.7s ease;
  45. -o-transition: all 0.7s ease;
  46. }
  47.  
  48. /*--position of the boxes--*/
  49. #container {
  50. position:relative;
  51. width:900px;
  52. margin-top:-100px;
  53. margin-left:100px;
  54. text-align:center;
  55. }
  56.  
  57. /*--whole box--*/
  58. #people {
  59. margin-left:150px;
  60. margin-top:150px;
  61. display:inline-block;
  62. }
  63.  
  64. #icons img{
  65. position:absolute;
  66. margin-top:50px;
  67. padding:5px;
  68. border:1px solid #e6e6e6;
  69. height:125px;
  70. width:125px;
  71. }
  72.  
  73. #url {
  74. position:absolute;
  75. margin-left:1px;
  76. margin-top:140px;
  77. width:125px;
  78. text-transform:uppercase;
  79. text-align:center;
  80. font-family:calibri;
  81. background-color:#fff;
  82. color:#a3a3a3; /*--url color--*/
  83. padding:2px 5px 13px 5px;
  84. opacity:.75;
  85. -webkit-transition: all 0.9s ease-in;
  86. -moz-transition: all 0.9s ease-in;
  87. -o-transition: all 0.9s ease-in;
  88. -webkit-transition: all 0.6s ease-out;
  89. -moz-transition: all 0.6s ease-out;
  90. -o-transition: all 0.6s ease-out;
  91. }
  92.  
  93. #people:hover #url {
  94. opacity:0;
  95. -webkit-transition: all 0.6s ease-in-out;
  96. -moz-transition: all 0.6s ease-in-out;
  97. -o-transition: all 0.6s ease-in-out;
  98. }
  99.  
  100. #names {
  101. position:absolute;
  102. margin-left:3px;
  103. margin-top:150px;
  104. width:125px;
  105. text-transform:lowercase;
  106. text-align:center;
  107. font-family:cambria;
  108. font-size:10px;
  109. letter-spacing:1px;
  110. color:#949292; /*--name color--*/
  111. padding:3px;
  112. opacity:1;
  113. -webkit-transition: all 0.6s ease-out;
  114. -moz-transition: all 0.6s ease-out;
  115. -o-transition: all 0.6s ease-out;
  116. -webkit-transition: all 0.9s ease-in;
  117. -moz-transition: all 0.9s ease-in;
  118. -o-transition: all 0.9s ease-in;
  119. }
  120.  
  121. #people:hover #names {
  122. opacity:0;
  123. -webkit-transition: all 0.6s ease-in-out;
  124. -moz-transition: all 0.6s ease-in-out;
  125. -o-transition: all 0.6s ease-in-out;
  126. }
  127.  
  128. #desc {
  129. z-index:99999;
  130. position:absolute;
  131. margin-top:51px;
  132. margin-left:1px;
  133. background-color:#fff;
  134. color:#a3a3a3; /*--description text color--*/
  135. text-align:center;
  136. height:95px;
  137. width:125px;
  138. padding:5px;
  139. opacity:0;
  140. -webkit-transition: all 0.6s ease-in-out;
  141. -moz-transition: all 0.6s ease-in-out;
  142. -o-transition: all 0.6s ease-in-out;
  143. }
  144.  
  145. #people:hover #desc {
  146. opacity:0.9;
  147. height:120px;
  148. border-bottom: 5px solid #e2e3e4; /*--description bottom border color--*/
  149. -webkit-transition: all 0.6s ease-in-out;
  150. -moz-transition: all 0.6s ease-in-out;
  151. -o-transition: all 0.6s ease-in-out;
  152. }
  153.  
  154. #nameindesc {
  155. font-family:cambria;
  156. font-size:20px;
  157. text-align:center;
  158. }
  159.  
  160. /*--sidebar--*/
  161. #sbar {
  162. position:fixed;
  163. width:250px;
  164. height:200%;
  165. margin-left:40px;
  166. letter-spacing:2px;
  167. margin-top:50px;
  168. background-color:#404041; /*--sidebar background color--*/
  169. }
  170.  
  171. #sidebarimage img {
  172. margin-top:300px;
  173. margin-left:60px;
  174. position:fixed;
  175. width:120px;
  176. height:125px;
  177. padding:3px;
  178. border:1px solid #BDB9BA; /*--sidebar image border color--*/
  179. }
  180.  
  181. #title {
  182. font-size:15px; /*--title font size--*/
  183. position:fixed;
  184. text-align:center;
  185. text-transform:lowercase;
  186. font-family:consolas;
  187. width:250px;
  188. margin-top:280px;
  189. color:#e2e3e4; /*--title color--*/
  190. }
  191.  
  192. #groupdesc {
  193. font-size:11px;
  194. font-family:times new roman;
  195. font-style:italic;
  196. width:170px;
  197. text-align:center;
  198. letter-spacing:1px;
  199. margin-top:440px;
  200. margin-left:38px;
  201. line-height:110%;
  202. color:#c9c9c9;
  203. }
  204.  
  205. /*--credit - DO NOT REMOVE--*/
  206. #heyo {
  207. position:fixed;
  208. text-align:center;
  209. bottom:10px;
  210. right:10px;
  211. font-size:7px;
  212. text-transform:uppercase;
  213. display:block;
  214. background-color:#fff;
  215. }
  216.  
  217. #heyo a{
  218. color:#b3b2b1;
  219. border: 1px solid #e4e3e2;
  220. padding: 3px 5px 3px 5px;
  221. background-color:#fff;
  222. border-radius:50px;
  223. -moz-transition-duration:0.5s;
  224. -webkit-transition-duration:0.5s;
  225. -o-transition-duration:0.5s;
  226. }
  227.  
  228. #heyo a:hover{
  229. color:#fff;
  230. background-color:#969194;
  231. border: 1px solid #7a7979;
  232. color:#fff;
  233. padding: 3px 5px 3px 5px;
  234. -moz-transition-duration:0.5s;
  235. -webkit-transition-duration:0.5s;
  236. -o-transition-duration:0.5s;
  237. }
  238.  
  239. </style>
  240. </head>
  241.  
  242. <body>
  243.  
  244. <div id="sbar">
  245. <div id="title">{title}</div>
  246. <div id="sidebarimage"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  247. <div id="groupdesc">the description of your group goes here. you don't have to have one if you don't want to.</div>
  248. </div>
  249.  
  250. <div id="container">
  251.  
  252.  
  253. <!--person 1-->
  254. <div id="people">
  255. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  256. <div id="url">url</div>
  257. <div id="names">name</div>
  258. <div id="desc">
  259. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  260. description
  261. </div></div>
  262.  
  263. <!--person 2-->
  264. <div id="people">
  265. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  266. <div id="url">url</div>
  267. <div id="names">name</div>
  268. <div id="desc">
  269. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  270. description
  271. </div></div>
  272.  
  273. <!--person 3-->
  274. <div id="people">
  275. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  276. <div id="url">url</div>
  277. <div id="names">name</div>
  278. <div id="desc">
  279. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  280. description
  281. </div></div>
  282.  
  283. <!--person 4-->
  284. <div id="people">
  285. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  286. <div id="url">url</div>
  287. <div id="names">name</div>
  288. <div id="desc">
  289. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  290. description
  291. </div></div>
  292.  
  293. <!--person 5-->
  294. <div id="people">
  295. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  296. <div id="url">url</div>
  297. <div id="names">name</div>
  298. <div id="desc">
  299. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  300. description
  301. </div></div>
  302.  
  303. <!--person 6-->
  304. <div id="people">
  305. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  306. <div id="url">url</div>
  307. <div id="names">name</div>
  308. <div id="desc">
  309. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  310. description
  311. </div></div>
  312.  
  313. <!--person 7-->
  314. <div id="people">
  315. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  316. <div id="url">url</div>
  317. <div id="names">name</div>
  318. <div id="desc">
  319. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  320. description
  321. </div></div>
  322.  
  323. <!--person 8-->
  324. <div id="people">
  325. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  326. <div id="url">url</div>
  327. <div id="names">name</div>
  328. <div id="desc">
  329. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  330. description
  331. </div></div>
  332.  
  333. <!--person 9-->
  334. <div id="people">
  335. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  336. <div id="url">url</div>
  337. <div id="names">name</div>
  338. <div id="desc">
  339. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  340. description
  341. </div></div>
  342.  
  343. <!--person 10-->
  344. <div id="people">
  345. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  346. <div id="url">url</div>
  347. <div id="names">name</div>
  348. <div id="desc">
  349. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  350. description
  351. </div></div>
  352.  
  353. <!--person 11-->
  354. <div id="people">
  355. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  356. <div id="url">url</div>
  357. <div id="names">name</div>
  358. <div id="desc">
  359. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  360. description
  361. </div></div>
  362.  
  363. <!--person 12-->
  364. <div id="people">
  365. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  366. <div id="url">url</div>
  367. <div id="names">name</div>
  368. <div id="desc">
  369. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  370. description
  371. </div></div>
  372.  
  373. <!--person 13-->
  374. <div id="people">
  375. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  376. <div id="url">url</div>
  377. <div id="names">name</div>
  378. <div id="desc">
  379. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  380. description
  381. </div></div>
  382.  
  383. <!--person 14-->
  384. <div id="people">
  385. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  386. <div id="url">url</div>
  387. <div id="names">name</div>
  388. <div id="desc">
  389. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  390. description
  391. </div></div>
  392.  
  393. <!--person 15-->
  394. <div id="people">
  395. <div id="icons"><img src="http://media.tumblr.com/tumblr_mab627cckV1qhfgy1.gif" class=desaturate></div>
  396. <div id="url">url</div>
  397. <div id="names">name</div>
  398. <div id="desc">
  399. <div id="nameindesc"><a href=http://.tumblr.com>name;</a></div>
  400. description
  401. </div></div>
  402.  
  403. <!---copy and paste each "box code" to add more--->
  404.  
  405. <div id="heyo"><a href="http://nialljhoren.tumblr.com">N</a></div>
  406.  
  407.  
  408. </div>
  409.  
  410. </html>
Advertisement
Add Comment
Please, Sign In to add comment