Advertisement
pacho_the_python

home_css

Feb 1st, 2023
1,301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.35 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css2?family=Courgette&family=Mulish&display=swap');
  2.  
  3. body {
  4.     margin: 0;
  5.     font-family: Courgette, cursive;
  6.     background-color: #ece8e8;
  7. }
  8.  
  9. header {
  10.     margin-top: 35px;
  11.     margin-bottom: 10px;
  12.     padding: 24px;
  13.     font-size: 22px;
  14.     font-weight: bold;
  15. }
  16.  
  17. header .header{
  18.     font-size: 48px;
  19.     letter-spacing: 6px;
  20.     text-align: center;
  21.     font-weight: 400;
  22. }
  23.  
  24. header .design {
  25.     margin-left: 280px;
  26.     color: #cf1212;
  27.     text-align: center;
  28. }
  29.  
  30. .grape {
  31.     max-width: 1150px;
  32.     margin: auto;
  33. }
  34.  
  35. .card {
  36.     display: inline-block;
  37.     width: 350px;
  38.     border-radius: 16px;
  39.     overflow: hidden;
  40.     background-color: white;
  41.     margin-left: 20px;
  42. }
  43.  
  44. .image {
  45.     width: 350px;
  46.     height: 200px;
  47.    
  48. }
  49.  
  50. .image .image__img {
  51.     width: 100%;
  52.     height: 190px;
  53.     object-fit: cover;
  54. }
  55.  
  56. .card .card__content {
  57.     margin: 0 18px;
  58. }
  59.  
  60. .card .card__content h2 {
  61.     padding: 10px;
  62.     border-bottom: 1px solid red;
  63.     text-align: center;
  64.     margin-bottom: 10px;
  65. }
  66.  
  67. .description {
  68.     width: 320px;
  69.     height: 106px;
  70. }
  71.  
  72. .card .card__content .first {
  73.     text-align: center;
  74.     margin-bottom: 34px;
  75. }
  76.  
  77. .card .card__content .second {
  78.     text-align: center;
  79.     margin-bottom: 10px;
  80. }
  81.  
  82. i {
  83.     color: red;
  84.     margin-left: 10px;
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement