Advertisement
Guest User

Untitled

a guest
Oct 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.71 KB | None | 0 0
  1. body {
  2.     background: lightblue url("tlo.jpg") no-repeat fixed center;
  3.         background-size: 100% 100%;
  4.           -moz-background-size: 100% 100%;
  5. }
  6. ul {
  7.     list-style-type: none;
  8.     margin: 0;
  9.     padding: 0;
  10.     overflow: hidden;
  11.     background-color: #333;
  12. }
  13.  
  14. li {
  15.     float: left;
  16. }
  17.  
  18. li a {
  19.     display: block;
  20.     color: white;
  21.     text-align: center;
  22.     padding: 14px 16px;
  23.     text-decoration: none;
  24. }
  25.  
  26. /* Change the link color to #111 (black) on hover */
  27. li a:hover {
  28.     background-color: #111;
  29. }
  30. .active {
  31.     background-color: #4CAF50;
  32. }
  33. .footer {
  34.     position: fixed;
  35.     left: 0;
  36.     bottom: 0;
  37.     width: 100%;
  38.     background-color: black;
  39.     color: white;
  40.     text-align: center;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement