Advertisement
angeldp

ejer6EP_GRID

Apr 13th, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. section{
  2.   width:80%;
  3.   margin:0 auto;
  4. }
  5. section>dl{
  6.   display:grid;
  7.   grid-template-columns:1fr;
  8.   grid-auto-rows:180px;
  9.   grid-gap:10px;
  10. }
  11. section div {
  12.   background-color: #F0F0F0;
  13.   text-align: center;
  14.     padding:2em;}
  15. section dd {
  16.     margin: 0;
  17.     color: #66cca8;}
  18. section dt { text-transform: uppercase;}
  19.  
  20. /* ==========================================================================
  21.    Media Queries
  22.    ========================================================================== */
  23. @media only screen and (min-width: 480px) {
  24.   section>dl{
  25.   grid-template-columns:repeat(2,1fr);
  26. }
  27.    section div {
  28.         padding: 1em;  }
  29.    section dt {
  30.         margin-bottom: 1ex;   }
  31. }
  32.  
  33. @media only screen and (min-width: 768px) {
  34.  
  35. section>dl{
  36.   grid-template-columns:repeat(4,20%);
  37.  
  38. }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement