Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
3,703
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.92 KB | None | 0 0
  1. /* Общее оформление */
  2. html,
  3. body {
  4.   margin: 0;
  5.   padding: 0;
  6. }
  7.  
  8. body {
  9.   width: 550px;
  10.   font-size: 14px;
  11.   font-family: "Tahoma", "Arial", sans-serif;
  12.   color: black;
  13. }
  14.  
  15. .gallery {
  16.   display: flex;
  17.   flex-wrap: wrap;
  18.  
  19.   width: 300px;
  20.   padding: 10px;
  21. }
  22.  
  23. div .picture {
  24.   width: 100px !important;
  25.   height: 100px !important;
  26.   margin: 10px;
  27.   padding: 10px;
  28.   border: 5px solid burlywood;
  29.  
  30.   text-align: center;
  31.  
  32.   background-repeat: no-repeat;
  33.   background-position: 50% 80%;
  34.   background-size: 64px 64px;
  35.   background-color: white;
  36.  
  37.   border-radius: 10px;
  38. }
  39.  
  40. /* Оформление картинок */
  41. div .cat-foodlove {
  42.   background-image: url("cat-foodlove.svg");
  43. }
  44.  
  45. #scary.cat-slippers {
  46.   background-image: url("cat-slippers.svg");
  47. }
  48.  
  49. div .cat-cage {
  50.   background-image: url("cat-cage.svg");
  51. }
  52.  
  53. .gallery .cat-fat {
  54.   background-image: url("cat-fat.svg");
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement