Advertisement
Guest User

Random

a guest
Apr 26th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.10 KB | None | 0 0
  1. @font-face {
  2.     font-family: SourceSansPro-Semibold;
  3.     src: url(fonts/SourceSansPro-Semibold.otf);
  4. }
  5.  
  6. body {
  7.     background: #fff;
  8. }
  9.  
  10. .container {
  11.     background-color: #f5f5f5;
  12.     position: relative;
  13.     top: -16px;
  14.     height: 1965px;
  15.     width: 1066px;
  16.     margin-left: auto;
  17.     margin-right: auto;
  18. }
  19.  
  20. nav {
  21.     background-color: #de3939;
  22.     width: 1066px;
  23.     height: 130px;
  24.     margin-left: auto;
  25.     margin-right: auto;
  26. }
  27.  
  28. nav .active{
  29.     background-color: #c93333;
  30.     height: 130px;
  31.     width: 100px;
  32.     text-align: center;
  33.     box-shadow: inset 0px 5px 0px 0px #ba3333;
  34. }
  35.  
  36. nav a .active {
  37.     text-align: center;
  38.     display: inline-block;
  39.     vertical-align: middle;
  40.     line-height: normal;  
  41. }
  42.  
  43. nav li .active{
  44. }
  45.  
  46. nav li {
  47.     display: inline;
  48. }
  49.  
  50. nav a {
  51.     line-height: 130px;
  52.     display: block;
  53.     text-decoration: none;
  54.     font-family: 'Shift', SourceSansPro-Semibold;
  55.     text-transform: uppercase;
  56.     color: #fff;
  57.     font-size: 18.75px;
  58.     margin-right: 100px;
  59. }
  60.  
  61. .logo {
  62.     background-image: url(img/logo.png);
  63.     width: 200px;
  64.     height: 120px;
  65.     margin-left: auto;
  66.     margin-right: auto;
  67.     position: absolute;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement