Advertisement
olympianthemes

FILMS TABLE 2013

Jul 23rd, 2013
941
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <!---------------
  4.  
  5. FILMS TABLE 2013 by CREMATA
  6.  
  7. Rules and Regulations:
  8. #1: Please DO NOT commit thievery and steal this theme/page. I've worked hard on in so I'd appreciate if you didn't.
  9.  
  10. #2: DO NOT redistribute this theme/page,
  11.  
  12. #3: You can customize to your liking, just make sure that your theme/page is readable and credible for your viewers.
  13.  
  14. CREDITS: Majority of the code (including the transitions) goes to Tympanus.net! They are so awesome for giving out free coding resources for web designers!
  15.  
  16. ---------------->
  17.  
  18. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  19. <head>
  20. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  21.  
  22. <title>{Title}</title>
  23.  
  24. <meta charset="utf-8">
  25.  
  26. <meta name="description" content="{MetaDescription}" />
  27.  
  28. <link rel="shortcut icon" href="{Favicon}" />
  29. <link rel="alternate" type="application/rss+xml" href="{RSS}"/>
  30.  
  31. <link href='http://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
  32.  
  33. <link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
  34.  
  35. <link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
  36.  
  37. <meta charset="UTF-8" />
  38. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  39. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  40. <title>Loading Effects for Grid Items | Link 2</title>
  41. <meta name="description" content="Loading Effects for Grid Items with CSS Animations" />
  42. <meta name="keywords" content="css animation, loading effect, google plus, grid items, masonry" />
  43. <meta name="author" content="Codrops" />
  44. <link rel="shortcut icon" href="../favicon.ico">
  45. <link rel="stylesheet" type="text/css" href="css/default.css" />
  46. <link rel="stylesheet" type="text/css" href="css/component.css" />
  47. <script src="http://static.tumblr.com/kamm2qy/sOjmqe6pq/modernizr.custom.js"></script>
  48. <script src="http://static.tumblr.com/kamm2qy/9Eomqe6ow/masonry.pkgd.min.js"></script>
  49. <script src="http://static.tumblr.com/kamm2qy/rfBmqe6o7/imagesloaded.js"></script>
  50. <script src="http://static.tumblr.com/kamm2qy/1nVmqe6ns/classie.js"></script>
  51. <script src="http://static.tumblr.com/kamm2qy/T9qmqe6mj/animonscroll.js"></script>
  52. <script>
  53. new AnimOnScroll( document.getElementById( 'grid' ), {
  54. minDuration : 0.4,
  55. maxDuration : 0.7,
  56. viewportFactor : 0.2
  57. } );
  58. </script>
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67. </head>
  68. <style type="text/css">
  69.  
  70. /* General Link Style */
  71. @import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
  72.  
  73. @font-face {
  74. font-family: 'codropsicons';
  75. src:url('../fonts/codropsicons/codropsicons.eot');
  76. src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
  77. url('../fonts/codropsicons/codropsicons.woff') format('woff'),
  78. url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
  79. url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
  80. font-weight: normal;
  81. font-style: normal;
  82. }
  83.  
  84. ::-webkit-scrollbar-thumb:vertical {
  85. height:10px;
  86. background-color: #EEE; }
  87.  
  88. ::-webkit-scrollbar-thumb:horizontal {
  89. height:30px;
  90. background-color: #EEE; }
  91.  
  92. ::-webkit-scrollbar {
  93. height: 10px;
  94. width: 7px;
  95. border-radius: 7px;
  96. background-color: transparent; }
  97.  
  98. *, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
  99. body, html { font-size: 100%; padding: 0; margin: 0;}
  100.  
  101. /* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
  102. .clearfix:before, .clearfix:after { content: " "; display: table; }
  103. .clearfix:after { clear: both; }
  104.  
  105. body {
  106. font-family: 'Lato', Calibri, Arial, sans-serif;
  107. color: #6b7381;
  108. background: #f2f2f2; <!-- BACKGROUND COLOR -->
  109. }
  110.  
  111. a {
  112. color: #aaa; <!-- LINKS COLOR -->
  113. text-decoration: none;
  114. }
  115.  
  116. a:hover,
  117. a:active {
  118. color: #333; <!-- LINKS HOVER -->
  119. }
  120.  
  121. .container > header {
  122. margin: 0 auto;
  123. padding: 2em;
  124. }
  125.  
  126. .container > header {
  127. text-align: center;
  128. background: #202020; <!-- HEADER BACKGROUND -->
  129. }
  130.  
  131. .container > header h1 {
  132. font-size: 2.625em;
  133. line-height: 1.3;
  134. margin: 0;
  135. font-family: Montserrat;
  136. font-weight: 300;
  137. color: #0195ab; <!-- TITLE COLOR -->
  138. }
  139.  
  140. .container > header span {
  141. display: block;
  142. font-size: 60%;
  143. opacity: 0.8;
  144. font-family: lato;
  145. padding: 0 0 0.6em 0.1em;
  146. }
  147.  
  148. .grid {
  149. max-width: 69em;
  150. list-style: none;
  151. margin: 30px auto;
  152. padding: 0;
  153. margin-top: 100px;
  154. }
  155.  
  156. .grid li {
  157. display: block;
  158. float: left;
  159. padding: 7px;
  160. width: 33%;
  161. opacity: 0;
  162. }
  163.  
  164. .grid li.shown,
  165. .no-js .grid li,
  166. .no-cssanimations .grid li {
  167. opacity: 1;
  168. }
  169.  
  170. .grid li a,
  171. .grid li img {
  172. outline: none;
  173. border: none;
  174. display: block;
  175. width: 350px;
  176. height: 350px;
  177.  
  178. }
  179.  
  180. .grid.effect-3 li.animate {
  181. -webkit-transform: scale(0.6);
  182. -moz-transform: scale(0.6);
  183. transform: scale(0.6);
  184. -webkit-animation: scaleUp 0.65s ease-in-out forwards;
  185. -moz-animation: scaleUp 0.65s ease-in-out forwards;
  186. animation: scaleUp 0.65s ease-in-out forwards;
  187. }
  188.  
  189. @-webkit-keyframes scaleUp {
  190. to { -webkit-transform: scale(1); opacity: 1; }
  191. }
  192.  
  193. @-moz-keyframes scaleUp {
  194. to { -moz-transform: scale(1); opacity: 1; }
  195. }
  196.  
  197. @keyframes scaleUp {
  198. to { transform: scale(1); opacity: 1; }
  199. }
  200.  
  201. /* START INFO CODE */
  202.  
  203. .box {
  204. position: absolute;
  205. width: 350px;
  206. height: 350px;
  207. overflow: auto;
  208. background-color: #202020;
  209. opacity: 0;
  210. display: table;
  211. -webkit-transition: all 0.2s ease-in-out;
  212. -moz-transition: all 0.2s ease-in-out;
  213. -o-transition: all 0.2s ease-in-out;
  214. -ms-transition: all 0.2s ease-in-out;
  215. transition: all 0.2s ease-in-out;
  216. }
  217.  
  218. .box:hover {
  219. opacity:0.7;
  220. height: 350px;
  221. }
  222.  
  223. .box:hover .desc {
  224. opacity: 1;
  225. }
  226.  
  227.  
  228.  
  229.  
  230. .title {
  231. vertical-align: middle;
  232. display: table;
  233. text-align:center;
  234. font-family: Montserrat;
  235. font-size: 16px;
  236. color: #FFF;
  237. text-transform: uppercase;
  238. font-style: underline;
  239. width: 330px;
  240. padding: 5px 10px;
  241. padding-top: 20px;
  242. max-height: 65px;
  243. margin: auto;
  244. border-bottom: 2px solid #AAA;
  245.  
  246. }
  247.  
  248. .desc {
  249. display: table;
  250. width: 310px;
  251. padding: 0px 20px;
  252. display: block;
  253. color: #EEEEEE;
  254. font-family: cambria;
  255. font-size: 10px;
  256. text-align: center;
  257. vertical-align: middle;
  258. margin: auto;
  259. height: 200px;
  260. overflow: auto;
  261. text-align: justify;
  262. font-style: italic;
  263. -webkit-transition: all 0.2s ease-in-out;
  264. -moz-transition: all 0.2s ease-in-out;
  265. -o-transition: all 0.2s ease-in-out;
  266. -ms-transition: all 0.2s ease-in-out;
  267. transition: all 0.2s ease-in-out;
  268. }
  269.  
  270. .rating {
  271. margin-top: -50px;
  272. display: block;
  273. margin: auto;
  274. height: 10px;
  275. margin-bottom: 10px;
  276. color: #FFF;
  277. text-align: center;
  278. margin-bottom: 25px;
  279. font-family: cambria;
  280. font-size: 12px;
  281. font-style: italic;
  282. }
  283.  
  284. #header {
  285. width: 100%;
  286. position: fixed;
  287. padding: 40px;
  288. background-color: #202020;
  289. display: inline-block;
  290. position: absolute;
  291. }
  292.  
  293. .links a {
  294. margin: 10px;
  295. font-family: Montserrat;
  296. font-size: 14px;
  297. text-transform: uppercase;
  298. }
  299.  
  300.  
  301.  
  302.  
  303.  
  304. </style>
  305. <body>
  306. <div class="container">
  307. <header>
  308. <h1>Films Table 2013 <span>combined with Grid Animation</span></h1>
  309. <div class="links">
  310. <a href="/">Back</a>
  311. <a href="http://tumblr.com/dashboard">Home</a>
  312. <a href="http://cremata.tumblr.com">Credit</a>
  313. </div>
  314. </header>
  315.  
  316. <ul class="grid effect-3" id="grid">
  317.  
  318. <!-- START BOX -->
  319. <li>
  320. <div class="box">
  321. <div class="title">Insidious (2010)</div><br>
  322. <div class="rating">date watched: january 3rd<br>
  323. <!-- STARS & HALF -->&#x2606;&#x2606;&#x2606;&#x2606;&#xbd;
  324. </div>
  325. <div class="desc">
  326. Saw franchise veterans James Wan and Leigh Whannell team with Paranormal Activity writer/director Oren Peli to give the familiar haunted house story an exciting new twist with this tale of a family that moves into an old house and begins to suspect they are under siege from otherworldly forces when their young son inexplicably falls into a deep coma. As devoted parents Josh (Patrick Wilson) and Renai (Rose Byrne) struggle in vain to uncover the root cause of their son's condition, the stress of the situation gradually begins to take its toll on their once-strong relationship. Later, when darkness falls and specters appear to reach out for them from the shadows, the frightened parents realize they're dealing with powers beyond human comprehension. Josh (Patrick Wilson) and Renai (Rose Byrne) struggle in vain to uncover the root cause of their son's condition, the stress of the situation gradually begins to take its toll on their once-strong relationship. Later, when darkness falls and specters appear to reach out for them from the shadows, the frightened parents realize they're dealing with powers beyond human comprehension.
  327. </div>
  328. </div>
  329. <!-- MOVIE IMG --><img src="http://static.tumblr.com/kamm2qy/duHmqectx/insidious_01.jpg">
  330. </li>
  331.  
  332. <!-- END BOX -->
  333.  
  334. <!-- START BOX -->
  335. <li>
  336. <div class="box">
  337. <div class="title">Pacific Rim (2013)</div><br>
  338. <div class="rating">date watched: january 8th<br>
  339. <!-- STARS & HALF -->&#x2606;&#x2606;&#x2606;
  340. </div>
  341. <div class="desc">
  342. When legions of monstrous creatures, known as Kaiju, started rising from the sea, a war began that would take millions of lives and consume humanity's resources for years on end. To combat the giant Kaiju, a special type of weapon was devised: massive robots, called Jaegers, which are controlled simultaneously by two pilots whose minds are locked in a neural bridge. But even the Jaegers are proving nearly defenseless in the face of the relentless Kaiju. On the verge of defeat, the forces defending mankind have no choice but to turn to two unlikely heroes - a washed up former pilot (Charlie Hunnam) and an untested trainee (Rinko Kikuchi) - who are teamed to drive a legendary but seemingly obsolete Jaeger from the past. Together, they stand as mankind's last hope against the mounting apocalypse.
  343. </div>
  344. </div>
  345. <!-- MOVIE IMG --><img src="http://static.tumblr.com/kamm2qy/a9Fmqecv4/pacific-rim-2013-movie-scene-pictures-hd-1024x576.jpg">
  346. </li>
  347.  
  348. <!-- END BOX -->
  349.  
  350. <!-- START BOX -->
  351. <li>
  352. <div class="box">
  353. <div class="title">The Hunger Games (2012)</div><br>
  354. <div class="rating">date watched: january 13th<br>
  355. <!-- STARS & HALF -->&#x2606;&#x2606;&#x2606;&#x2606;&#xbd;
  356. </div>
  357. <div class="desc">
  358. In a dystopian future, the totalitarian nation of Panem is divided between 12 districts and the Capitol. Each year two young representatives from each district are selected by lottery to participate in The Hunger Games. Part entertainment, part brutal retribution for a past rebellion, the televised games are broadcast throughout Panem. The 24 participants are forced to eliminate their competitors while the citizens of Panem are required to watch. When 16-year-old Katniss's young sister, Prim, is selected as District 12's female representative, Katniss volunteers to take her place. She and her male counterpart Peeta, are pitted against bigger, stronger representatives, some of whom have trained for this their whole lives.
  359. </div>
  360. </div>
  361. <!-- MOVIE IMG --><img src="http://static.tumblr.com/kamm2qy/sj8mqecwd/hungergames1.jpg">
  362. </li>
  363.  
  364. <!-- END BOX -->
  365.  
  366. <!-- START BOX -->
  367. <li>
  368. <div class="box">
  369. <div class="title">Alice In Wonderland (2010)</div><br>
  370. <div class="rating">date watched: january 15th<br>
  371. <!-- STARS & HALF -->&#x2606;&#x2606;&#x2606;&#x2606;&#xbd;
  372. </div>
  373. <div class="desc">
  374. Alice, an unpretentious and individual 19-year-old, is betrothed to a dunce of an English nobleman. At her engagement party, she escapes the crowd to consider whether to go through with the marriage and falls down a hole in the garden after spotting an unusual rabbit. Arriving in a strange and surreal place called "Underland," she finds herself in a world that resembles the nightmares she had as a child, filled with talking animals, villainous queens and knights, and frumious bandersnatches. Alice realizes that she is there for a reason--to conquer the horrific Jabberwocky and restore the rightful queen to her throne.
  375. </div>
  376. </div>
  377. <!-- MOVIE IMG --><img src="http://static.tumblr.com/kamm2qy/mV8mqecxd/flowers-scene-alice-in-wonderland-2010.jpg">
  378. </li>
  379.  
  380. <!-- END BOX -->
  381.  
  382. <!-- START BOX -->
  383. <li>
  384. <div class="box">
  385. <div class="title">MOVIE TITLE HERE</div><br>
  386. <div class="rating">DATE WATCHED HERE<br>
  387. <!-- STARS & HALF -->&#x2606;&#x2606;&#x2606;&#x2606;&#xbd; // RATING HERE
  388. </div>
  389. <div class="desc">
  390. DESCRIPTION HERE
  391. </div>
  392. </div>
  393. <!-- MOVIE IMG --><img src="IMAGEURL-350X350">
  394. </li>
  395.  
  396. <!-- END BOX -->
  397.  
  398. <!-- START BOX -->
  399. <li>
  400. <div class="box">
  401. <div class="title">MOVIE TITLE HERE</div><br>
  402. <div class="rating">DATE WATCHED HERE<br>
  403. <!-- STARS & HALF -->&#x2606;&#x2606;&#x2606;&#x2606;&#xbd; // RATING HERE
  404. </div>
  405. <div class="desc">
  406. DESCRIPTION HERE
  407. </div>
  408. </div>
  409. <!-- MOVIE IMG --><img src="IMAGEURL-350X350">
  410. </li>
  411.  
  412. <!-- END BOX -->
  413.  
  414.  
  415.  
  416.  
  417. <!---- PASTE ADDITIONAL BOXES ON THIS SPACE STARTING FROM "START BOX" TO "END BOX" ---->
  418.  
  419.  
  420.  
  421.  
  422. </ul>
  423.  
  424. <script src="js/masonry.pkgd.min.js"></script>
  425. <script src="js/imagesloaded.js"></script>
  426. <script src="js/classie.js"></script>
  427. <script src="js/AnimOnScroll.js"></script>
  428. <script>
  429. new AnimOnScroll( document.getElementById( 'grid' ), {
  430. minDuration : 0.4,
  431. maxDuration : 0.7,
  432. viewportFactor : 0.2
  433. } );
  434. </script>
  435. </body>
  436. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement