Advertisement
Iv555

Untitled

Feb 19th, 2023
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1.  
  2. body{
  3. font-family: 'Montserrat', sans-serif;
  4. background-color: #f6e0b5;
  5. }
  6.  
  7. div.all{
  8. display: grid;
  9. grid-template-columns: 70% 30%;
  10. gap:5%;
  11. padding: 30px 50px;
  12. }
  13.  
  14. div.images{
  15. display: grid;
  16. grid-template-columns: 50% 50%;
  17. grid-template-rows: 50% 50%;
  18. gap: 25px;
  19. }
  20.  
  21. div.card{
  22. display: grid;
  23. grid-template-rows: 85% 15%;
  24. align-items: center;
  25. width: 500px;
  26. height: 280px;
  27. border: 1px solid black;
  28. border-radius: 15px;
  29. overflow: hidden;
  30. background-color: #66545e;
  31. box-shadow: 10px 10px 8px #888888;
  32. }
  33.  
  34. div.card img{
  35. width: 100%;
  36. height: 100%;
  37. object-fit: cover;
  38.  
  39. }
  40.  
  41. div.card p{
  42. color: #eaeff1;
  43. font-weight: bold;
  44. padding-left: 5px;
  45. }
  46.  
  47. div.text{
  48. color: #5f4e5b;
  49. font-weight: bold;
  50. font-size: 26px;
  51. }
  52.  
  53. div.text p{
  54. margin-bottom: 20px;
  55. }
  56.  
  57. div.text li{
  58. margin-bottom: 10px;
  59. }
  60.  
  61. div.text i{
  62. margin-right: 3px;
  63. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement