Advertisement
blackimpala

Código CSS

Oct 4th, 2023
737
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | Software | 0 0
  1. /*====================== About Us =====================*/
  2. .about-us{
  3.   background-image: url(../images/about_us.jpg);
  4.   background-repeat: no-repeat;
  5.   background-position: bottom center;
  6.   display: grid;
  7.   grid-template-rows: repeat(2, 1fr);
  8. }
  9.  
  10. @media only screen and (min-width:768px){
  11.   .about-us{
  12.     grid-template-columns: repeat(3, 1fr);
  13.   }
  14. }
  15. .content-about-us{
  16.   background-color: var(--white-platinium);
  17.   padding: 4rem;
  18. }
  19.  
  20. @media only screen and (min-width:768px){
  21.   .content-about-us{
  22.     grid-column: 2 / 4;
  23.     grid-row: 1 / -1;
  24.   }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement