repth

theme d

Jan 22nd, 2022
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 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>themed</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=Caveat&display=swap" rel="stylesheet">
  11.  
  12. <style>
  13.  
  14. body{
  15. background-color: #fff;
  16. background-image: url('');
  17. font-family: 'Caveat', cursive;
  18. }
  19.  
  20. #all{
  21. background-color: #D7D3CB;
  22. margin: 0 auto;
  23. width: 425px;
  24. padding: 5px 10px 5px 10px;
  25. }
  26.  
  27. #header{
  28. margin: 5px 0px -5px 0px;
  29. font-weight: normal;
  30. font-size: 36px;
  31. text-align: center;
  32. color: #b0aca2;
  33. }
  34.  
  35. .container{
  36. background-color: #fff;
  37. box-shadow: 3px 3px 2px #827e75;
  38. border-width: 10px 10px 0px 10px;
  39. border-style: solid;
  40. border-color: #fff;
  41. width: 395px;
  42. margin: 15px auto;
  43. }
  44.  
  45. .picture{
  46. width: 395px;
  47. }
  48.  
  49. .caption{
  50. padding: 2px 0px 10px 0px;
  51. margin: 0px;
  52. font-size: 18px;
  53. color: #52504a;
  54. }
  55.  
  56. ::-webkit-scrollbar{
  57. width: 8px;
  58. }
  59.  
  60. ::-webkit-scrollbar-track{
  61. background-color: transparent;
  62. }
  63.  
  64. ::-webkit-scrollbar-thumb{
  65. background-color: #D7D3CB;
  66. }
  67.  
  68. #credit{
  69. font-size: 14px;
  70. position: fixed;
  71. bottom: 0;
  72. right: 0;
  73. }
  74.  
  75. a{
  76. color: #b0aca2;
  77. text-decoration: none;
  78. }
  79.  
  80. a:visited{
  81. color: #b0aca2;
  82. }
  83.  
  84. a:hover{
  85. font-style: italic;
  86. font-weight: bold;
  87. }
  88.  
  89. a:active{
  90. font-style: italic;
  91. font-weight: bold;
  92. }
  93.  
  94. </style>
  95.  
  96. </head>
  97.  
  98. <body>
  99.  
  100. <div id="all">
  101.  
  102. <h1 id="header">Photo Log 2022</h1>
  103.  
  104. <!-- each container div = one polaroid. replace the image URLs with your own and add more divs accordingly ^_^ -->
  105.  
  106. <div class="container">
  107. <img src="https://i.imgur.com/htjvVce.jpg" class="picture">
  108. <p class="caption">caption here</p>
  109. </div>
  110.  
  111. <div class="container">
  112. <img src="https://i.imgur.com/0BQ2lfb.jpg" class="picture">
  113. <p class="caption">caption here</p>
  114. </div>
  115.  
  116. <div class="container">
  117. <img src="https://i.imgur.com/29JVDTM.jpg" class="picture">
  118. <p class="caption">caption here</p>
  119. </div>
  120.  
  121. <div class="container">
  122. <img src="https://i.imgur.com/7wX80NQ.jpg" class="picture">
  123. <p class="caption">caption here</p>
  124. </div>
  125.  
  126. <div class="container">
  127. <img src="https://i.imgur.com/tR0a4x0.jpg" class="picture">
  128. <p class="caption">caption here</p>
  129. </div>
  130.  
  131. </div>
  132.  
  133. <div id="credit"><a href="https://repth.neocities.org/index.html">©repth</a></div>
  134.  
  135. </body>
  136.  
  137. </html>
Advertisement
Add Comment
Please, Sign In to add comment