Advertisement
angeldp

Ejer06EP_CSS

Apr 12th, 2018
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.87 KB | None | 0 0
  1. section div {
  2.     width: 9em;
  3.     margin: 1ex auto;
  4.     background-color: #F0F0F0;
  5.     text-align: center;
  6.     padding:2em;}
  7. section dd {
  8.     margin: 0;
  9.     color: #66cca8;}
  10. section dt { text-transform: uppercase;}
  11.  
  12. /* ==========================================================================
  13.    Media Queries
  14.    ========================================================================== */
  15. @media only screen and (min-width: 480px) {
  16.  
  17.    section div {
  18.         width:35%;
  19.         float:left;
  20.         margin:7.5%;
  21.         padding: 1em 0 1.5em;   }
  22.    section dt {
  23.         font-size:125%;
  24.         margin-bottom: 1ex;   }
  25.    section div:nth-of-type(3) { clear: left;   }
  26. }
  27.  
  28. @media only screen and (min-width: 768px) {
  29.  
  30.     section div {
  31.         width:23%;
  32.         height:148px;
  33.         margin: 0 1%;  }
  34.     section div:nth-of-type(3) {   clear: none;  }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement