Advertisement
repth

Theme 16

Sep 24th, 2021
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.78 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 16</title>
  7.  
  8. <style>
  9.  
  10. body{
  11. background-color: #c6bfa2;
  12. }
  13.  
  14. #all{
  15. position: absolute;
  16. right: 20%;
  17. }
  18.  
  19. #container{
  20. width: 495px;
  21. position: relative;
  22. display: flex;
  23. justify-content: center;
  24. align-items: center;
  25. }
  26.  
  27. #header{
  28. position: relative;
  29. z-index: 3;
  30. width: 495px;
  31. height: 493px;
  32. background-image: url('https://i.imgur.com/ZiPV1RT.png');
  33. background-size: 100% 100%;
  34. }
  35.  
  36. #header h1{
  37. text-transform: uppercase;
  38. font-weight: normal;
  39. font-size: 20px;
  40. font-family: serif;
  41. letter-spacing: 2px;
  42. color: #948061;
  43. text-shadow: 0px 0px 8px #fff;
  44. position: absolute;
  45. right: 60px;
  46. top: 35px;
  47. }
  48.  
  49. #box{
  50. background-color: #fff;
  51. font-family: serif;
  52. width: 380px;
  53. position: absolute;
  54. top: 400px;
  55. padding: 78px 10px 10px 10px; /* you can change the 78px to adjust where your content starts */
  56. text-align: justify;
  57. }
  58.  
  59. #box h2{
  60. margin: 0px;
  61. text-transform: uppercase;
  62. font-weight: normal;
  63. letter-spacing: 2px;
  64. color: #9c8b72;
  65. font-size: 14px;
  66. text-align: right;
  67. }
  68.  
  69. #box p{
  70. margin: 0px;
  71. letter-spacing: 1px;
  72. font-size: 12px;
  73. color: #635641;
  74. }
  75.  
  76. #nav{
  77. position: relative;
  78. z-index: 5;
  79. }
  80.  
  81. #nav ul, li{
  82. display: inline;
  83. list-style-type: none;
  84. padding: 0px;
  85. text-transform: uppercase;
  86. font-size: 10px;
  87. letter-spacing: 1px;
  88. }
  89.  
  90. a{
  91. text-decoration: none;
  92. color: #997ea8;
  93. }
  94.  
  95. a:visited{
  96. color: #997ea8;
  97. }
  98.  
  99. a:hover{
  100. color: #6f4f80;
  101. }
  102.  
  103. ::-webkit-scrollbar{
  104. width: 8px;
  105. }
  106.  
  107. ::-webkit-scrollbar-track{
  108. background-color: #c6bfa2;
  109. }
  110.  
  111. ::-webkit-scrollbar-thumb{
  112. background-color: #a09a81;
  113. }
  114.  
  115. #credit{
  116. font-size: 12px;
  117. position: fixed;
  118. bottom: 0;
  119. right: 0;
  120. }
  121.  
  122. #credit a{
  123. color: #fff;
  124. }
  125.  
  126. #credit a:hover{
  127. color: #6f4f80;
  128. }
  129.  
  130. </style>
  131.  
  132. </head>
  133.  
  134. <body>
  135.  
  136. <div id="all">
  137.  
  138. <div id="container">
  139.  
  140. <div id="header">
  141. <h1>title here</h1>
  142. </div>
  143.  
  144. <div id="box">
  145.  
  146. <div id="nav">
  147. <ul>
  148. <li><a href="">home</a> |</li>
  149. <li><a href="">about</a> |</li>
  150. <li><a href="">gallery</a> |</li>
  151. <li><a href="">blog</a> |</li>
  152. <li><a href="">misc</a></li>
  153. </ul>
  154. </div>
  155.  
  156. <!-- REPLACE CONTENT BELOW WITH YOUR OWN -->
  157.  
  158. <h2>title here</h2>
  159. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam nec magna placerat, eleifend augue eu, pharetra augue. Duis feugiat purus id nulla dictum, eget malesuada eros vestibulum. Vestibulum ullamcorper pharetra felis ac laoreet. Donec vehicula varius justo, et tristique augue commodo at. Nullam feugiat dolor at libero suscipit iaculis. Phasellus fermentum velit at lacus euismod pellentesque.</p>
  160.  
  161. <!-- END OF CONTENT -->
  162.  
  163. </div>
  164.  
  165. </div>
  166.  
  167. </div>
  168.  
  169. <div id="credit"><a href="https://repth.neocities.org/index.html">@Repth</a></div>
  170.  
  171. </body>
  172.  
  173. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement