HendrixRPH

Orphan Grey Page Theme

Oct 2nd, 2015
6,765
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!-- Orphan Grey theme by hendrixrph. Feel free to mess around with the colors or whatever else, just don't remove credit or redistribute as your own. Thanks! -->
  6.  
  7.  
  8. <title>tab text</title>
  9. <link rel="shortcut icon" href="{Favicon}">
  10. <link href='http://fonts.googleapis.com/css?family=Oswald:300,400' rel='stylesheet' type='text/css'>
  11. <link href='http://fonts.googleapis.com/css?family=Roboto:400,300,700' rel='stylesheet' type='text/css'>
  12.  
  13. <style>
  14.  
  15. * {
  16. box-sizing:border-box;
  17. margin:0;
  18. padding:0;
  19. }
  20.  
  21. body {
  22. background:#f1f1f1;
  23. }
  24.  
  25. .wrapper {
  26. width:940px;
  27. margin:10px auto;
  28. }
  29. .entry {
  30. width:450px;
  31. height:232px;
  32. background:#fff;
  33. border:1px solid #e7e7e7;
  34. float:left;
  35. margin:10px;
  36. padding:15px;
  37. overflow:hidden;
  38. }
  39.  
  40. .entry img {
  41. height:200px;
  42.  
  43. }
  44.  
  45. .entry:nth-child(2n) img {
  46. float:left;
  47. }
  48.  
  49. .entry:nth-child(2n+1) img {
  50. float:right;
  51. }
  52.  
  53. .info {
  54. width:250px;
  55. font-size:12px;
  56. font-family:'Roboto', Arial, sans-serif;
  57. font-weight:300;
  58. line-height:1.35em;
  59. padding-top:5px;
  60. color:#515151;
  61. }
  62.  
  63. .entry:nth-child(2n) .info {
  64. float:right;
  65. }
  66.  
  67. .entry:nth-child(2n+1) .info {
  68. float:left;
  69. text-align:right;
  70. }
  71.  
  72. .info h2 {
  73. font-family:'Oswald', Arial, sans-serif;
  74. font-weight:300;
  75. letter-spacing:2px;
  76. font-size:20px;
  77. border-bottom:1px solid #e7e7e7;
  78. padding-bottom:5px;
  79. margin-bottom:5px;
  80. line-height:1em;
  81. color:#222;
  82. }
  83.  
  84. .info a {
  85. text-decoration:none;
  86. letter-spacing:1px;
  87. color:#aaa;
  88. transition:0.5s all;
  89. }
  90.  
  91. .info a:hover {
  92. color:#888;
  93. }
  94.  
  95. .header {
  96. background:#fff;
  97. border:1px solid #e7e7e7;
  98. width:600px;
  99. margin:10px auto;
  100. }
  101.  
  102. .header h1 {
  103. font-family:'Oswald', Arial, sans-serif;
  104. font-weight:300;
  105. letter-spacing:2px;
  106. text-align:center;
  107. margin:5px;
  108. color:#222;
  109. }
  110.  
  111. .header .links {
  112. list-style-type:none;
  113. text-align:center;
  114. font-family:'Roboto', Arial, sans-serif;
  115. margin-top:-5px;
  116. margin-bottom:7px;
  117. }
  118.  
  119. .links li {
  120. display:inline-block;
  121. width:70px;
  122. }
  123.  
  124. .links li a {
  125. color:#515151;
  126. font-weight:300;
  127. font-size:12px;
  128. text-decoration:none;
  129. }
  130.  
  131. </style>
  132.  
  133. </head>
  134. <body>
  135.  
  136. <div class="header">
  137. <h1>Title</h1>
  138. <ul class="links">
  139. <li><a href="http://www.tumblr.com">dash</a></li>
  140. <li><a href="http://www.tumblr.com">home</a></li>
  141. <li><a href="http://hendrixrph.tumblr.com">credit</a></li>
  142. </ul>
  143. </div>
  144.  
  145. <div class="wrapper">
  146.  
  147. <!-- BEGIN COPY/PASTE -->
  148. <div class="entry">
  149. <img src=""> <!-- Image is 150x200 px -->
  150. <div class="info">
  151. <!-- Content goes here -->
  152. <h2>name</h2>
  153. <p>description</p>
  154. </div>
  155. </div>
  156. <!-- END COPY/PASTE -->
  157.  
  158.  
  159. <!-- BEGIN COPY/PASTE -->
  160. <div class="entry">
  161. <img src=""> <!-- Image is 150x200 px -->
  162. <div class="info">
  163. <!-- Content goes here -->
  164. <h2>name</h2>
  165. <p>description</p>
  166. </div>
  167. </div>
  168. <!-- END COPY/PASTE -->
  169.  
  170.  
  171.  
  172. <!-- Do not paste beyond this point -->
  173. </div>
  174.  
  175. </body>
  176. </html>
Advertisement
Add Comment
Please, Sign In to add comment