Advertisement
EliseyD

CSS котики

Nov 26th, 2024
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.57 KB | None | 0 0
  1. body {
  2.     font-family: Arial, sans-serif;
  3.     margin: 0;
  4.     padding: 0;
  5.     display: flex;
  6.     justify-content: center;
  7.     align-items: center;
  8.     min-height: 100px;
  9.     background-color: #f9f9f9;
  10.   }
  11.  
  12. .container {
  13.     display: grid;
  14.     justify-items: center;
  15.     align-items: start;
  16.     height: 300px;
  17.     font-weight: bold;
  18.   }
  19.  
  20. .block1 {
  21.     border: 1px dashed black;
  22.     padding: 100px;
  23.     margin: 10px 0;
  24.   }
  25.   .text1 {
  26.     position: absolute;
  27.     top: 0;
  28.     left: 50%;
  29.     transform: translateX(-50%);
  30.     margin: 20;
  31.     text-align: center;
  32.     font-size: 16px;
  33.   }
  34.   .block2 {
  35.     height: 100px;
  36.     width: 400px;
  37.     border: 1px dashed black;
  38.     background-image: url('/Users/eliseydubrovin/Downloads/HW4/icons_practice_module_3/cat_box_256.png');
  39.     background-repeat: repeat-x;
  40.     background-size: contain;
  41.  
  42.   }
  43.   .block3 {
  44.     border: 1px dashed black;
  45.     padding: 10px;
  46.     margin: 10px 0;
  47.     text-align: center;
  48.     width: 400px;
  49.   }
  50.   .text4 {
  51.     font-size: 35px;
  52.     font-weight: bold;
  53.     margin: 0;
  54.   }
  55.   .block4 {
  56.     display: flex;
  57.     justify-content: space-between;
  58.     align-items: center;
  59.     border: 1px dashed black;
  60.     padding: 10px;
  61.     width: 400px;
  62.     height: 100px;
  63.   }
  64.   .img1 {
  65.     display: block;
  66.   margin-left: auto;
  67.   margin-right: auto;
  68.   width: 100px;
  69.   }
  70.   .img2 {
  71.     width: 100px;
  72.     display: flex;
  73.   justify-content: center;
  74.   align-items: center;
  75.   }
  76.   .img3 {
  77.     width: 400px;
  78.   }
  79.   .img4 {
  80.     max-height: 80px;
  81.   max-width: 80px;
  82.  
  83.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement