Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.78 KB | None | 0 0
  1. .header
  2. {
  3.     margin-top: 40px;
  4.     height: 100%;
  5.  
  6.     hr
  7.     {
  8.         background-color: $colLink;
  9.         margin: 0;
  10.         border-width: 0px;
  11.         height: 1px;
  12.     }
  13.  
  14.     .wrapper
  15.     {
  16.         display: block;
  17.         height: 100%;
  18.  
  19.         .logo
  20.         {
  21.             font-size: 28pt;
  22.             margin: 0 auto;
  23.             max-width: 320px;
  24.             width: 33.333%;
  25.             display: inline-block;
  26.         }
  27.  
  28.         .menu
  29.         {
  30.             float: right;
  31.             right: 0;
  32.             max-width: 480px;
  33.             width: 66.667%;
  34.             margin: 0;
  35.             padding: 0;
  36.  
  37.             li
  38.             {
  39.                 list-style-type: none;
  40.                 padding: 0;
  41.                 float: left;
  42.                 min-width: 0;
  43.             }
  44.  
  45.             a:link, a:visited
  46.             {
  47.                 margin: 12px 0;
  48.                 color: $colBlack;
  49.                 width: 100px;
  50.                 display: block;
  51.                 text-align: center;
  52.                 text-decoration: none;
  53.             }
  54.  
  55.             a:hover, a:active
  56.             {
  57.                 color: $colLink
  58.             }
  59.         }
  60.     }
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement