Advertisement
lemansky

Untitled

Nov 5th, 2021
1,039
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.75 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>Document</title>
  7.     <style>
  8.         .items{
  9.             list-style-type: none;
  10.             margin:0px;
  11.             padding:0px;
  12.             display:flex;
  13.             flex-direction: row;
  14.         }
  15.         .item{
  16.             width:160px;
  17.             height:365px;
  18.         }
  19.         .item:nth-of-type(1){
  20.             background:#a2d6d9;
  21.         }
  22.         .item:nth-of-type(2){
  23.             background:#f48871;
  24.         }
  25.         .item:nth-of-type(3){
  26.             background:#b9d694;
  27.         }
  28.         .item:nth-of-type(4){
  29.             background:#fae17c;
  30.         }
  31.         .item:nth-of-type(5){
  32.             background:#f6b56b;
  33.         }
  34.         .item > h5{
  35.             text-shadow:0px -1px 0px rgba(255,255,255, 0.1);
  36.         }
  37.     </style>
  38. </head>
  39. <body>
  40.     <ul class="items">
  41.        
  42.     </ul>
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement