Guest User

CSS - задача "Разпродажба"

a guest
Oct 7th, 2025
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.66 KB | Source Code | 0 0
  1. * {
  2.     box-sizing: border-box;
  3. }
  4.  
  5. main {
  6.     background-color: rgb(137, 184, 184);
  7.     width: 1500px;
  8.     height: 1000px;
  9.     margin: auto;
  10. }
  11.  
  12. img {
  13.     height: 300px;
  14. }
  15.  
  16. h1 {
  17.     text-align: center;
  18.     font-size: 60px;
  19.     padding: 50px;
  20.     color: darkred;
  21. }
  22.  
  23. .card {
  24.     height: 500px;
  25.     width: 40%;
  26.     background-color: white;
  27.     border-radius: 50px;
  28.     text-align: center;
  29. }
  30.  
  31. .cards {
  32.     display: flex;
  33.     justify-content: space-around;
  34.  
  35. }
  36.  
  37. h3 {
  38.     color: darkred;
  39.     font-size: 40px;
  40.     text-align: center;
  41. }
  42.  
  43. p {
  44.     background-color: red;
  45.     color: yellow;
  46.     font-size: 50px;
  47.     text-shadow: 1px 1px black;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment