Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.41 KB | None | 0 0
  1. header, footer {
  2.   background-color: #ffa500;
  3.   text-align: center;
  4.   min-width: 500px;
  5. }
  6.  
  7. main {
  8.   display: grid;
  9.   align-content: center;
  10.   align-items: stretch;
  11.   justify-items: center;
  12.   justify-content: center;
  13.   grid-template-columns: 250px 250px 250px;
  14.   grid-template-rows: repeat(4, 450px);
  15.   grid-gap: 20px;
  16.   margin-top: 44px;
  17.   grid-auto-flow: row;
  18. }
  19.  
  20. h2 {
  21.   font-family: Poppins;
  22.   font-size: 18px;
  23.   font-weight: 600;
  24.   letter-spacing: 0.3px;
  25.   text-align: left;
  26.   color: #ffa500;
  27.   padding: 10px 0px 10px 10px;
  28. }
  29.  
  30. img {
  31.   width: 100%;
  32.   height: auto;
  33. }
  34.  
  35. .recipe {
  36.   width: 200px;
  37.   box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5);
  38. }
  39.  
  40. .a {
  41.  
  42. }
  43.  
  44. .c {
  45.  
  46.  
  47. }
  48.  
  49. .time {
  50.   padding-left: 10px;
  51.   padding-top: 10px;
  52.   width: 20px;
  53.   height: auto;
  54. }
  55.  
  56. .mins {
  57.   display: inline-block;
  58.   font-family: Poppins;
  59.   font-size: 14px;
  60.   font-weight: 500;
  61.   letter-spacing: 0.3px;
  62.   text-align: left;
  63.   color: #4a4a4a;
  64.   position: relative;
  65.   bottom: 5px;
  66. }
  67.  
  68. .description {
  69.   font-family: Work Sans;
  70.   font-size: 14px;
  71.   font-weight: 300;
  72.   line-height: 1.29;
  73.   letter-spacing: 0.1px;
  74.   text-align: left;
  75.   color: #4a4a4a;
  76.   padding: 10px 0px 10px 10px;
  77.   border-top: 1px solid #4a4a4a;
  78. }
  79.  
  80. .logo {
  81.   width: 115px;
  82.   height: 21.1px;
  83.   object-fit: contain;
  84.   padding: 20px;
  85. }
  86.  
  87. .container {
  88.   min-width: 500px;
  89.   margin: auto;
  90. }
  91.  
  92. footer {
  93.   margin-top: 44px;
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement