Guest User

style.css

a guest
Mar 24th, 2014
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.93 KB | None | 0 0
  1. body {
  2.     background-color: #4C4C4C;
  3.     margin-top: 60px;
  4. }
  5.  
  6. nav {
  7.     left: 0px;
  8.     top: 0px;
  9.     height: 40px;
  10.     width: 100%;
  11.     padding: 5px;
  12.     position: fixed;
  13.     background-color: #383838;
  14.     color: white;
  15.     border-bottom: 2px solid #22EE5B;
  16.     text-align: center;
  17.     font-size: 25px;
  18. }
  19.  
  20. nav img {
  21.     vertical-align: middle;
  22. }
  23.  
  24. nav a {
  25.     text-decoration:none;
  26.     color: white;
  27. }
  28.  
  29. nav a:hover {
  30.     position: relative;
  31.     text-decoration: underline;
  32.     bottom: 1px;
  33. }
  34.  
  35. nav .first {
  36.  
  37.     width: 100px;
  38.  
  39.     left: 0px;
  40.     top: 0px;
  41.     height: 50px;
  42.     position: fixed;
  43.     background-color: #242424;
  44.     color: white;
  45.     text-align: center;
  46.     font-size: 25px;
  47. }
  48.  
  49. nav .second {
  50.  
  51.     width: 100px;
  52.  
  53.     left: 0px;
  54.     top: 50px;
  55.     height: 100%;
  56.     position: fixed;
  57.     background-color: #383838;
  58.     color: white;
  59.     text-align: center;
  60.     font-size: 25px;
  61.     border-right: 2px solid #22EE5B;
  62. }
  63.  
  64. section {
  65.     left: 102px;
  66.     top: 52px;
  67.     height: 100%;
  68.     width: 100%;
  69. }
Advertisement
Add Comment
Please, Sign In to add comment