Advertisement
Guest User

Untitled

a guest
Aug 18th, 2015
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.32 KB | None | 0 0
  1. @media screen and (min-width: 440px) {
  2.  
  3.     /*****************************
  4.             PAGE CONTACT
  5.     *****************************/
  6.  
  7.     #primary {
  8.         width: 50%;
  9.         float: left;
  10.     }
  11.  
  12.     #secondary {
  13.         width: 40%;
  14.         float: right;
  15.     }
  16.  
  17.  
  18.     /*****************************
  19.             PAGE PORTFOLIO
  20.     *****************************/
  21.  
  22.     #gallery li {
  23.         width: 28.333%;
  24.     }
  25.  
  26.     #gallery li:nth-child(4n){
  27.         clear: left;
  28.     }
  29.  
  30.  
  31.  
  32.     /*****************************
  33.              PAGE ABOUT
  34.     *****************************/
  35.  
  36.     .profile-photo {
  37.         float: left;
  38.         margin: 0 5% 50% 0;
  39.     }
  40.  
  41. }
  42.  
  43. @media screen and (min-width: 660px) {
  44.  
  45.     /******************************
  46.               HEADER
  47.      *****************************/
  48.     nav {
  49.         background: none;
  50.         float: right;
  51.         font-size: 1.125em;
  52.         margin-right: 5%;
  53.         text-align: right;
  54.         width: 45%;
  55.     }
  56.  
  57.     #logo {
  58.         float: left;
  59.         margin-left: 5%;
  60.         text-align: left;
  61.         width: 45%;
  62.     }
  63.  
  64.     h1 {
  65.         font-size: 2.5em;
  66.     }
  67.  
  68.     h2 {
  69.         font-size: 0.825em;
  70.         margin-bottom: 20px;
  71.     }
  72.  
  73.     header {
  74.         border-bottom: 5px solid dodgerblue;
  75.         margin-bottom: 60px;
  76.     }
  77.  
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement