repth

Theme 15

Sep 24th, 2021 (edited)
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 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 15</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=Abril+Fatface&display=swap" rel="stylesheet">
  11.  
  12. <style>
  13.  
  14. body{
  15. background-color: #cdd1d2;
  16. }
  17.  
  18. #container{
  19. background-color: #fff;
  20. padding: 3px 8px 8px 8px;
  21. border-radius: 15px;
  22. width: 560px;
  23. height: 418px;
  24. }
  25.  
  26. #image{
  27. position: absolute;
  28. right: 100px;
  29. bottom: 10px;
  30. }
  31.  
  32. #image2{
  33. position: absolute;
  34. right: 130px;
  35. top: 0px;
  36. }
  37.  
  38. #header{
  39. width: 343px;
  40. padding: 0px;
  41. text-align: center;
  42. color: #cdd1d2;
  43. text-transform: uppercase;
  44. letter-spacing: 2px;
  45. font-family: 'Abril Fatface', monospace;
  46. }
  47.  
  48. #header h1{
  49. margin: 0px;
  50. }
  51.  
  52. #bubble{
  53. position: relative;
  54. width: 325px;
  55. height: 346px;
  56. background-color: #fff;
  57. border: 4px solid #b4baba;
  58. border-radius: 20px;
  59. text-align: justify;
  60. padding: 10px 5px 10px 10px;
  61. color: #7a7b7b;
  62. }
  63.  
  64. #bubble:before{
  65. content: "";
  66. width: 0px;
  67. height: 0px;
  68. position: absolute;
  69. border-left: 10px solid #b4baba;
  70. border-right: 10px solid transparent;
  71. border-top: 10px solid #b4baba;
  72. border-bottom: 10px solid transparent;
  73. right: -20px;
  74. bottom: 50px;
  75. }
  76.  
  77. #bubble:after{
  78. content: "";
  79. width: 0px;
  80. height: 0px;
  81. position: absolute;
  82. border-left: 7px solid #fff;
  83. border-right: 7px solid transparent;
  84. border-top: 7px solid #fff;
  85. border-bottom: 7px solid transparent;
  86. right: -10px;
  87. bottom: 52px;
  88. }
  89.  
  90. #content{
  91. overflow: scroll;
  92. overflow-x: hidden;
  93. height: 347px;
  94. padding: 0px 8px 5px 0px;
  95. }
  96.  
  97. #bubble h2{
  98. margin: 0px;
  99. text-transform: uppercase;
  100. font-family: 'Georgia', monospace;
  101. letter-spacing: 3px;
  102. font-size: 12px;
  103. color: #989a9a;
  104. }
  105.  
  106. #bubble p{
  107. font-size: 13px;
  108. font-family: 'Arial', sans-serif;
  109. margin: 0px;
  110. letter-spacing: 1px;
  111. }
  112.  
  113. #all{
  114. position: absolute;
  115. top: 9%;
  116. right: 18%;
  117. width: 657px;
  118. height: 430px;
  119. }
  120.  
  121. #nav{
  122. position: absolute;
  123. right: 0px;
  124. top: 35px;
  125. }
  126.  
  127. #nav ul,li{
  128. list-style-type: none;
  129. padding-left: 0px;
  130. margin: 0px;
  131. }
  132.  
  133. #nav a{
  134. font-family: 'Arial', sans-serif;
  135. letter-spacing: 4px;
  136. padding: 3px;
  137. font-size: 10px;
  138. text-transform: uppercase;
  139. background-color: #fff;
  140. display: block;
  141. margin-bottom: 5px;
  142. width: 75px;
  143. text-align: center;
  144. text-decoration: none;
  145. color: #989a9a;
  146. border-radius: 0px 15px 15px 0px;
  147. }
  148.  
  149. #nav a:visited{
  150. }
  151.  
  152. #nav a:hover{
  153. color: #fde64f;
  154. }
  155.  
  156. a{
  157. text-decoration: none;
  158. color: #cdd1d2;
  159. }
  160.  
  161. a:visited{
  162. }
  163.  
  164. a:hover{
  165. color: #fde64f;
  166. }
  167.  
  168. ::-webkit-scrollbar{
  169. width: 5px;
  170. }
  171.  
  172. ::-webkit-scrollbar-track{
  173. border-radius: 5px;
  174. }
  175.  
  176. ::-webkit-scrollbar-thumb{
  177. border-radius: 15px;
  178. background-color: #cdd1d2;
  179. }
  180.  
  181. #credit{
  182. font-size: 13px;
  183. position: fixed;
  184. font-family: 'Tahoma', sans-serif;
  185. bottom: 0;
  186. right: 0;
  187. }
  188.  
  189. #credit a{
  190. color: #fff;
  191. }
  192.  
  193. </style>
  194.  
  195. </head>
  196.  
  197. <body>
  198.  
  199. <div id="all">
  200.  
  201. <div id="nav">
  202. <ul>
  203. <li><a href="">home</a></li>
  204. <li><a href="">profile</a></li>
  205. <li><a href="">gallery</a></li>
  206. <li><a href="">blog</a></li>
  207. <li><a href="">other</a></li>
  208. <li><a href="">misc</a></li>
  209. </ul>
  210. </div>
  211.  
  212. <div id="container">
  213.  
  214. <div id="image2"><img src="https://i.imgur.com/f3Y4g28.png" style="width:120px;"><img></div>
  215.  
  216. <div id="image"><img src="https://i.imgur.com/6AhZE2f.png" style="width:180px;"><img></div>
  217.  
  218. <div id="header"><h1>Title Here</h1></div>
  219.  
  220. <div id="bubble">
  221.  
  222. <div id="content">
  223.  
  224. <!-- REPLACE CONTENT BELOW WITH YOUR OWN -->
  225.  
  226. <h2>title</h2>
  227.  
  228. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas dictum quis lacus at pulvinar. Donec ac lacinia felis. Maecenas interdum id est vel mollis. Quisque molestie facilisis lorem sit amet dictum. Praesent nec ante ut ante vehicula cursus sed nec purus. Morbi ac lacus eu risus finibus auctor. Sed varius nulla non semper tincidunt.</p>
  229.  
  230. <p><s>Maecenas</s> <i>est</i> <a href="">ipsum</a></p>
  231.  
  232. <!-- END CONTENT -->
  233.  
  234. </div>
  235.  
  236. </div>
  237.  
  238. </div>
  239.  
  240. </div>
  241.  
  242. <div id="credit"><a href="https://repth.neocities.org/index.html">@Repth</a></div>
  243.  
  244. </body>
  245.  
  246. </html>
  247.  
  248.  
Add Comment
Please, Sign In to add comment