style.css 684 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. body {
  2. background: url(background1.jpg) no-repeat center center fixed;
  3. -webkit-background-size: cover;
  4. -moz-background-size: cover;
  5. -o-background-size: cover;
  6. background-size: cover;
  7. /*background-size: 100% 100%;*/
  8. font-family: sans-serif;
  9. margin: auto;
  10. max-width: 1280px;
  11. color: white;
  12. }
  13. .navbar {
  14. background-color: #313236;
  15. border-radius: 2px;
  16. max-width: 100%;
  17. }
  18. .navbar a {
  19. color: #aaa;
  20. display: inline-block;
  21. font-size: 15px;
  22. padding: 10px;
  23. text-decoration: none;
  24. }
  25. .navbar a:hover {
  26. color: #0ef20e;
  27. }
  28. p {
  29. margin: 5px 15px 15px 15px;
  30. }
  31. h1 {
  32. margin-left: 15px;
  33. }
  34. a {
  35. color: #0ef20e;
  36. }
  37. img {
  38. max-width: 100%;
  39. height: auto;
  40. }