Advertisement
Guest User

Untitled

a guest
May 5th, 2015
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.52 KB | None | 0 0
  1. * {
  2.     font-family: 'PT Sans', sans-serif;
  3.     color: #8BA8BF;
  4. }
  5.  
  6. body {
  7.     background-color: #0F1B28;
  8. }
  9.  
  10. .navigation {
  11.     list-style-type: none;
  12.     margin: 5px 0px;
  13.     padding: 20px 0px;
  14.     width: 100%;
  15.     background-color: #04060A;
  16. }
  17.  
  18. .navigation li {
  19.     display: inline-block;
  20.     padding: 0px 25px;
  21. }
  22.  
  23. .navigation li a {
  24.     color: #8BA8BF;
  25.     position: relative;
  26.     text-decoration: none;
  27. }
  28.  
  29. .whitespace {
  30.     padding: 2px;
  31.     width: 100%;
  32.     margin: 0px;
  33.     background-color: white;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement