Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>hello</title>
  4. <style type="text/css">
  5. #fun2{
  6. margin-top: 8%;
  7. overflow: hidden;
  8. }
  9. .space-back{
  10. background: url(img/space-back.jpg) no-repeat;
  11. background-position: center;
  12. background-size: cover;
  13. height: 100vh;
  14. position: absolute;
  15. width:100%;
  16. }
  17. .flying-man{
  18. position: absolute;
  19. background: url(img/flying-man.png) no-repeat;
  20. background-position:bottom left;
  21. background-size: 70%;
  22. margin-top: 50px;
  23. width: 100%;
  24. height: 100vh;
  25. /*background-color: rgba(2,2,2,0.5);*/
  26. }
  27. section{
  28. min-height: 100vh;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <section id="fun2">
  34. <div class="space">
  35. <div class="space-back"></div>
  36. <div class="flying-man"></div>
  37. </div>
  38. </section>
  39. <section id="speakers2">
  40. </section>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement