repth

Theme 14

Sep 21st, 2021 (edited)
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.81 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Theme 14</title>
  7.  
  8. <style>
  9.  
  10. body{
  11. background-color: #f0e6df;
  12. color: #5f5e5c;
  13. }
  14.  
  15. #container{
  16. background-color: #fff;
  17. width: 700px;
  18. margin: 7% auto auto auto;
  19. padding: 10px;
  20. overflow: hidden;
  21. }
  22.  
  23. #header{
  24. position: relative;
  25. border: 1px solid #a79184;
  26. height: 170px;
  27. text-transform: uppercase;
  28. font-size: 12px;
  29. font-family: 'Georgia', serif;
  30. letter-spacing: 2px;
  31. text-shadow: 0px 0px 10px #fff;
  32. color: #a79184;
  33. margin-bottom: 10px;
  34. background-image: url('https://i.imgur.com/wrS20wW.png');
  35. }
  36.  
  37. #header h1{
  38. margin: 0px;
  39. position: absolute;
  40. right: 15px;
  41. bottom: 55px;
  42. font-weight: normal;
  43. }
  44.  
  45. #header h2{
  46. margin: 0px;
  47. position: absolute;
  48. right: 15px;
  49. bottom: 40px;
  50. font-weight: normal;
  51. font-size: 11px;
  52. }
  53.  
  54. #side{
  55. border: 1px solid #7a9d98;
  56. width: 185px;
  57. margin-right: 10px;
  58. float: left;
  59. overflow: hidden;
  60. }
  61.  
  62. #sideheader{
  63. text-align: right;
  64. text-transform: uppercase;
  65. font-size: 12px;
  66. font-family: 'Georgia', serif;
  67. padding: 5px;
  68. letter-spacing: 2px;
  69. color: #a79184;
  70. }
  71.  
  72. #sideheader h2{
  73. margin: 0px;
  74. font-weight: normal;
  75. border-bottom: 2px solid #d6dbda;
  76. }
  77.  
  78. #profilecontent{
  79. padding: 0px 5px 5px 5px;
  80. font-family: 'Tahoma', sans-serif;
  81. font-size: 12px;
  82. }
  83.  
  84. #profilecontent p{
  85. margin: 0px;
  86. }
  87.  
  88. #nav{
  89. display: flex;
  90. justify-content: center;
  91. align-items: center;
  92. margin: 10px 0px 5px 0px;
  93. font-family: serif;
  94. }
  95.  
  96. #nav ul, li{
  97. list-style-type: none;
  98. padding-left: 0px;
  99. margin: 0px;
  100. font-size: 13px;
  101. }
  102.  
  103. a{
  104. text-decoration: none;
  105. color: #7a9d98;
  106. }
  107.  
  108. a:visited{
  109. }
  110.  
  111. a:hover{
  112. text-decoration: underline;
  113. }
  114.  
  115. #nav a{
  116. text-transform: uppercase;
  117. background-color: #7a9d98;
  118. padding: 1px 0px 1px 0px;
  119. display: block;
  120. margin-bottom: 2px;
  121. width: 175px;
  122. text-align: center;
  123. text-decoration: none;
  124. color: #fff;
  125. }
  126.  
  127. #nav a:visited{
  128. }
  129.  
  130. #nav a:hover{
  131. color: #c8d8d6;
  132. }
  133.  
  134. #main{
  135. border: 1px solid #7a9d98;
  136. float: right;
  137. width: 501px;
  138. }
  139.  
  140. .mainheader{
  141. text-align: right;
  142. text-transform: uppercase;
  143. font-size: 12px;
  144. font-family: 'Georgia', serif;
  145. padding: 5px;
  146. letter-spacing: 2px;
  147. padding: 5px;
  148. color: #a79184;
  149. }
  150.  
  151. .mainheader h2{
  152. font-weight: normal;
  153. margin: 0px;
  154. border-bottom: 2px solid #dbcdc5;
  155. }
  156.  
  157. .maincontent{
  158. padding: 0px 5px 5px 5px;
  159. font-family: 'Tahoma', sans-serif;
  160. font-size: 12px;
  161. text-align: justify;
  162. }
  163.  
  164. .maincontent p{
  165. margin: 0px;
  166. }
  167.  
  168. ::-webkit-scrollbar{
  169. width: 8px;
  170. }
  171.  
  172. ::-webkit-scrollbar-track{
  173. background-color: #f0e6df;
  174. }
  175.  
  176. ::-webkit-scrollbar-thumb{
  177. background-color: #7a9d98;
  178. }
  179.  
  180. #credit{
  181. font-size: 12px;
  182. position: fixed;
  183. bottom: 0;
  184. right: 0;
  185. }
  186.  
  187. </style>
  188.  
  189. <body>
  190.  
  191. <div id="container">
  192.  
  193. <div id="header"><h1>header here</h1>
  194. <h2>sub header here</h2>
  195. </div>
  196.  
  197. <div id="side">
  198.  
  199. <div id="sideheader"><h2>profile</h2></div>
  200.  
  201. <div id="profilecontent">
  202. <p><b>name:</b> name</p>
  203. <p><b>interests:</b> interests</p>
  204. <p><b>hobbies:</b> hobbies</p>
  205. <p><b>likes:</b> likes</p>
  206. <p><b>dislikes:</b> dislikes</p>
  207. </div>
  208.  
  209. <div id="nav">
  210. <ul>
  211. <li><a href="URL HERE">home</a></li>
  212. <li><a href="URL HERE">about</a></li>
  213. <li><a href="URL HERE">gallery</a></li>
  214. <li><a href="URL HERE">blog</a></li>
  215. <li><a href="URL HERE">other</a></li>
  216. <li><a href="URL HERE">misc</a></li>
  217. <li><a href="URL HERE">misc</a></li>
  218. </ul>
  219. </div>
  220.  
  221. </div>
  222.  
  223. <div id="main">
  224.  
  225. <div class="mainheader"><h2>title here</h2></div>
  226.  
  227. <div class="maincontent">
  228.  
  229. <!-- REPLACE CONTENT BELOW WITH YOUR OWN -->
  230.  
  231. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse ut velit quis tellus viverra vestibulum. Nulla gravida, lorem at congue posuere, elit nisi cursus ipsum, sed consectetur elit purus id erat. Integer imperdiet, metus vehicula pharetra volutpat, est neque pellentesque turpis, a tempor mauris velit finibus nulla. Vestibulum fringilla facilisis odio, pulvinar ornare mauris malesuada id.</p>
  232. <br>
  233. <p><b>Suspendisse</b> <i>odio</i> <a href="">magna</a></p>
  234.  
  235. </div>
  236.  
  237. <div id="othercontent">
  238. <div class="mainheader"><h2>title here</h2></div>
  239.  
  240. <div class="maincontent">
  241.  
  242. <p>Donec at pharetra magna. Proin sit amet ligula quis nisl euismod euismod. Nunc feugiat, massa nec condimentum mollis, mi nibh pretium dolor, sed maximus velit odio sed dolor. Proin ac orci eget eros aliquam bibendum sit amet ac orci. Nulla felis ante, aliquam eget fermentum eu, condimentum sit amet arcu. Duis pretium massa turpis, vel iaculis eros placerat sit amet. Cras interdum erat sit amet orci lobortis gravida. Vivamus fringilla nibh quis justo convallis, id vestibulum purus pretium. Donec erat quam, ultricies sed hendrerit.</p>
  243.  
  244. <!-- END CONTENT -->
  245.  
  246. </div>
  247.  
  248. </div>
  249.  
  250. </div>
  251.  
  252. </div>
  253.  
  254. <div id="credit"><a href="https://repth.neocities.org/index.html">@Repth</a></div>
  255.  
  256. </body>
  257.  
  258. </html>
Advertisement
Add Comment
Please, Sign In to add comment