mididump

floating img list page html

Feb 3rd, 2025 (edited)
50
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>links page with floating image</title>
  7.     <style>
  8.         body {
  9.             background-color:
  10.             color: #4A4A4A;
  11.             font-family: ms gothic;
  12.             margin: 0;
  13.             padding: 20px;
  14.             overflow: hidden;
  15.         }
  16.         .header {
  17.             text-align: center;
  18.             padding: 20px;
  19.             background-color: #FFD1DC;
  20.             border-bottom: 2px solid #FFB3BA;
  21.         }
  22.         .header h1 {
  23.             font-size: 3em;
  24.             color: #FF69B4;
  25.         }
  26.         .wishlist-container {
  27.             max-width: 800px;
  28.             margin: 20px auto;
  29.             padding: 20px;
  30.             background-color: #FFF0F5;
  31.             border: 2px solid #FFB3BA;
  32.             border-radius: 10px;
  33.             max-height: 500px;
  34.             overflow: hidden;
  35.         }
  36.         .wishlist ul {
  37.             list-style-type: none;
  38.             padding: 0;
  39.             max-height: 500px;
  40.             overflow-y: scroll;
  41.         }
  42.         .wishlist li {
  43.             font-size: 1.5em;
  44.             margin: 10px 0;
  45.             padding: 10px;
  46.             background-color: #FFDEE9;
  47.             border: 1px solid #FFB3BA;
  48.             border-radius: 5px;
  49.         }
  50.         .wishlist li a {
  51.             color: #FF69B4;
  52.         }
  53.         .floating-image {
  54.             position: fixed;
  55.             bottom: 20px;
  56.             right: 20px;
  57.             width: 150px;
  58.             height: 150px;
  59.             border: 2px solid #FF69B4;
  60.             border-radius: 10px;
  61.             animation: float 5s infinite ease-in-out;
  62.         }
  63.         @keyframes float {
  64.             0%, 100% {
  65.                 transform: translateY(0);
  66.             }
  67.             50% {
  68.                 transform: translateY(-20px);
  69.             }
  70.         }
  71.     </style>
  72. </head>
  73. <body>
  74.     <div class="header">
  75.         <h1>Wishlist</h1>
  76.     </div>
  77.     <div class="wishlist-container">
  78.         <div class="wishlist">
  79.             <ul>
  80.                 <li>item 1</li>
  81.                 <li>item 2</li>
  82.             </ul>
  83.         </div>
  84.     </div>
  85.     <img src="addimagehere.png" alt="Floating Image" class="floating-image">
  86. </body>
  87. </html>
  88.  
  89.  
  90.  
Advertisement
Comments
  • mididump
    180 days
    # text 0.09 KB | 0 0
    1. feel free to use, customize, whatever!!!!!!!!! just check out my webpage or my tumblr @diderots
Add Comment
Please, Sign In to add comment