repth

Theme 43

Jul 2nd, 2022 (edited)
432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.57 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</title>
  7.  
  8. <link rel="preconnect" href="https://fonts.googleapis.com">
  9. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  10. <link href="https://fonts.googleapis.com/css2?family=Questrial&display=swap" rel="stylesheet">
  11.  
  12. <style>
  13.  
  14. *{
  15. box-sizing: border-box;
  16. margin: 0;
  17. padding: 0;
  18. }
  19.  
  20. body{
  21. background-color: #fff;
  22. color: #111;
  23. font-family: 'Questrial', sans-serif;
  24. }
  25.  
  26. .headerwrapper{
  27. display: flex;
  28. flex-direction: column;
  29. margin-bottom: 1rem;
  30. }
  31.  
  32. .header{
  33. width: 100%;
  34. display: flex;
  35. justify-content: center;
  36. align-items: center;
  37. height: 200px;
  38. background-image: url('https://i.imgur.com/aVk0nIs.png');
  39. background-repeat: no-repeat;
  40. background-position: center center;
  41. }
  42.  
  43. .title{
  44. color: #fff;
  45. letter-spacing: 0.2rem;
  46. text-shadow: 0 0 10px #111;
  47. font-family: 'Questrial', sans-serif;
  48. }
  49.  
  50. .nav{
  51. background-color: #111;
  52. width: 100%;
  53. text-align: center;
  54. padding: 0.5rem 0 0.5rem 0;
  55. }
  56.  
  57. .nav ul{
  58. display: flex;
  59. justify-content: space-around;
  60. }
  61.  
  62. .nav li{
  63. display: inline;
  64. }
  65.  
  66. .mainwrapper{
  67. display: flex;
  68. flex-direction: column;
  69. gap: 1rem;
  70. padding: 0 1rem 1rem 1rem;
  71. margin: 0 auto;
  72. max-width: 700px;
  73. }
  74.  
  75. .box{
  76. background-color: #eee;
  77. }
  78.  
  79. .subheaders{
  80. color: #fff;
  81. font-weight: normal;
  82. font-size: 18px;
  83. background-color: #111;
  84. }
  85.  
  86. .content{
  87. padding: 1rem;
  88. display: flex;
  89. flex-direction: column;
  90. gap: 1rem;
  91. }
  92.  
  93. a{
  94. text-decoration: underline;
  95. color: #000;
  96. }
  97.  
  98. a:visited{
  99. color: #000;
  100. }
  101.  
  102. #credit a{
  103. text-decoration: none;
  104. background: linear-gradient(90deg, rgba(250,31,193,1) 0%, rgba(29,85,255,1) 25%, rgba(13,246,252,1) 53%, rgba(0,255,102,1) 77%, rgba(251,255,56,1) 100%);
  105. background-size: 100%;
  106. -webkit-background-clip: text;
  107. -moz-background-clip: text;
  108. -webkit-text-fill-color: transparent;
  109. -moz-text-fill-color: transparent;
  110. }
  111.  
  112. #credit a:visited{
  113. text-decoration: none;
  114. background: linear-gradient(90deg, rgba(250,31,193,1) 0%, rgba(29,85,255,1) 25%, rgba(13,246,252,1) 53%, rgba(0,255,102,1) 77%, rgba(251,255,56,1) 100%);
  115. background-size: 100%;
  116. -webkit-background-clip: text;
  117. -moz-background-clip: text;
  118. -webkit-text-fill-color: transparent;
  119. -moz-text-fill-color: transparent;
  120. }
  121.  
  122. a:hover{
  123. font-style: italic;
  124. }
  125.  
  126. a:active{
  127. font-style: italic;
  128. font-weight: bold;
  129. }
  130.  
  131. .nav a{
  132. color: white;
  133. text-decoration: none;
  134. }
  135.  
  136. .nav a:visited{
  137. text-decoration: none;
  138. color: white;
  139. }
  140.  
  141. #credit{
  142. position: fixed;
  143. bottom: 0;
  144. right: 0;
  145. font-size: 12px;
  146. }
  147.  
  148. ::-webkit-scrollbar{
  149. width: 6px;
  150. }
  151.  
  152. ::-webkit-scrollbar-track{
  153. background: linear-gradient(180deg, rgba(250,31,193,1) 0%, rgba(29,85,255,1) 25%, rgba(13,246,252,1) 53%, rgba(0,255,102,1) 77%, rgba(251,255,56,1) 100%);
  154. }
  155.  
  156. ::-webkit-scrollbar-thumb{
  157. background-color: #111;
  158. }
  159.  
  160. </style>
  161.  
  162. </head>
  163.  
  164. <body>
  165.  
  166. <div class="headerwrapper">
  167.  
  168. <div class="header">
  169. <h1 class="title">Title Here</h1>
  170. </div>
  171.  
  172. <div class="nav">
  173. <ul>
  174. <li><a href="">Home</a></li>
  175. <li><a href="">About</a></li>
  176. <li><a href="">Gallery</a></li>
  177. <li><a href="">Blog</a></li>
  178. <li><a href="">Resources</a></li>
  179. <li><a href="">Misc</a></li>
  180. </ul>
  181. </div>
  182.  
  183. </div>
  184.  
  185. <div class="mainwrapper">
  186.  
  187. <!-- BOX 1 -->
  188. <div class="box">
  189. <h3 class="subheaders">Header Here</h3>
  190. <div class="content">
  191. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus nec ante at ante semper tempus nec vel nisl. Sed aliquet velit porttitor ullamcorper interdum. Integer ac lacus et odio volutpat sagittis non et elit. Nunc rutrum viverra justo, eu eleifend elit. Vestibulum molestie, diam vel ornare placerat, lectus ante imperdiet nisi, et efficitur velit elit tempus felis. Suspendisse nibh tellus, volutpat ac elit vel, dignissim viverra leo. Pellentesque eu <a href="">molestie diam</a>.</p>
  192. </div>
  193. </div>
  194.  
  195. <!-- BOX 2 -->
  196. <div class="box">
  197. <h3 class="subheaders">Header Here</h3>
  198. <div class="content">
  199. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus nec ante at ante semper tempus nec vel nisl. Sed aliquet velit porttitor ullamcorper interdum. Integer ac lacus et odio volutpat sagittis non et elit. Nunc rutrum viverra justo, eu eleifend elit. Vestibulum molestie, diam vel ornare placerat, lectus ante imperdiet nisi, et efficitur velit elit tempus felis. Suspendisse nibh tellus, volutpat ac elit vel, dignissim viverra leo. Pellentesque eu molestie diam.</p>
  200. <p>Vivamus quis hendrerit turpis. Aenean quis pharetra nisl. Nunc facilisis tortor vel sapien sagittis, id fringilla nulla porta. Phasellus consectetur sapien et commodo hendrerit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Nam laoreet ipsum at tortor ullamcorper bibendum. Quisque eleifend leo aliquet, pulvinar elit vitae, congue dolor. Morbi sodales dui egestas, egestas dui quis, gravida nisi.</p>
  201. </div>
  202. </div>
  203.  
  204. <!-- BOX 3 -->
  205. <div class="box">
  206. <h3 class="subheaders">Header Here</h3>
  207. <div class="content">
  208. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus nec ante at ante semper tempus nec vel nisl. Sed aliquet velit porttitor ullamcorper interdum. Integer ac lacus et odio volutpat sagittis non et elit. Nunc rutrum viverra justo, eu eleifend elit. Vestibulum molestie, diam vel ornare placerat, lectus ante imperdiet nisi, et efficitur velit elit tempus felis. Suspendisse nibh tellus, volutpat ac elit vel, dignissim viverra leo. Pellentesque eu molestie diam.</p>
  209. </div>
  210. </div>
  211.  
  212. </div>
  213.  
  214. <p id="credit"><a href="https://repth.neocities.org/index.html">©repth</a></p>
  215.  
  216. </body>
  217.  
  218. </html>
Add Comment
Please, Sign In to add comment