Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. body {
  2. margin: 0px;
  3. font-family: 'Lato', sans-serif;
  4. }
  5.  
  6. .main {
  7. height: 700px;
  8. background-image: url(/image/background.jpg);
  9. background-position: center center;
  10. background-repeat: no-repeat;
  11. background-size: cover;
  12. }
  13.  
  14. @media screen and (min-width:1000px) {
  15. #container {
  16. height: 700px;
  17. width: 1000px;
  18. margin: 0 auto;
  19. }
  20. }
  21.  
  22. .header {
  23. margin-top: 0px;
  24. width: 100%;
  25. }
  26.  
  27. .logo {
  28. float: left;
  29. margin-top: 10px;
  30. margin-left: 10px;
  31. }
  32.  
  33. nav {
  34. float: right;
  35. margin-top: 26px;
  36. margin-right: 10px;
  37. }
  38.  
  39. .navbar {
  40. color: #fff;
  41. font-size: 20px;
  42. margin-left: 25px;
  43. text-decoration: none;
  44. }
  45.  
  46. .navbar:hover {
  47. text-decoration: underline;
  48. }
  49.  
  50. span {
  51. width: 100%;
  52. }
  53.  
  54. h1 {
  55. font-size: 80px;
  56. color: #fff;
  57. text-align: center;
  58. clear: both;
  59. padding-top: 70px;
  60. }
  61.  
  62. h2 {
  63. font-size: 36px;
  64. color: #fff;
  65. text-align: center;
  66. clear: both;
  67. margin-top: -60px;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement