Advertisement
Guest User

Section of Code - CSS

a guest
Feb 28th, 2015
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.91 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3.     padding: 0;
  4.     overflow: hidden;
  5. }
  6. body {
  7.     background-image:url(bg.jpg);
  8. }
  9. .FreedomCodes {
  10.     width: 100%;
  11.     height: 100px;
  12.     font-family: Rock Elegance;
  13.     font-size: 50px;
  14.     color: blue;
  15. }
  16. /*.imageArea{
  17. width:125px;
  18. height:125px;
  19. background-image:url(logo4.png);
  20. background-repeat:no-repeat;
  21. }*/
  22.  
  23. .container {
  24.     width: 1000px;
  25.     margin: 0 auto;
  26. }
  27. #Nav {
  28.     background-color: transparent;
  29.     width: 20%;
  30.     height: 900px;
  31.     float: left;
  32.     padding-right: 10px;
  33.     box-sizing: border-box;
  34. }
  35. .buttons li:hover{
  36.     background-color:gray;
  37. }
  38. #b1 li {
  39.     border: 2px solid blue;
  40.     border-radius: 5px;
  41.     background-color: transparent;
  42.     list-style: none;
  43.     left: 70px;
  44.     top: 90px;
  45.     font-size: 30px;
  46.     font-family: Rock Elegance;
  47.     color: green;
  48. }
  49. #b1 li:hover {
  50.     background-color:gray;
  51. }
  52. #textBody {
  53.     color: black;
  54.     font-family: Arial;
  55.     font-size: 20px;
  56.     width: 80%;
  57.     box-sizing: border-box;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement